-
- Type Parameters:
S- each element of the alignmentProfileis of type SC- each element of anAlignedSequenceis aCompoundof type C
- All Superinterfaces:
Scorer
- All Known Subinterfaces:
MatrixAligner<S,C>,PairwiseSequenceAligner<S,C>,PartitionRefiner<S,C>,ProfileProfileAligner<S,C>,RescoreRefiner<S,C>
- All Known Implementing Classes:
AbstractMatrixAligner,AbstractPairwiseSequenceAligner,AbstractProfileProfileAligner,AnchoredPairwiseSequenceAligner,GuanUberbacher,NeedlemanWunsch,SimpleProfileProfileAligner,SmithWaterman,StandardRescoreRefiner
public interface Aligner<S extends Sequence<C>,C extends Compound> extends Scorer
- Author:
- Mark Chapman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetComputationTime()Returns the computation time needed for an alignment computed in nanoseconds.Profile<S,C>getProfile()Returns the alignmentProfileproduced by this alignment algorithm.-
Methods inherited from interface org.biojava.nbio.alignment.template.Scorer
getDistance, getDistance, getMaxScore, getMinScore, getScore, getSimilarity, getSimilarity
-
-
-
-
Method Detail
-
getComputationTime
long getComputationTime()
Returns the computation time needed for an alignment computed in nanoseconds.- Returns:
- the computation time in nanoseconds
-
getProfile
Profile<S,C> getProfile()
Returns the alignmentProfileproduced by this alignment algorithm.- Returns:
- the alignment profile
-
-