Uses of Interface
org.biojava.nbio.core.alignment.template.AlignedSequence
-
Packages that use AlignedSequence Package Description org.biojava.nbio.core.alignment org.biojava.nbio.core.alignment.template -
-
Uses of AlignedSequence in org.biojava.nbio.core.alignment
Classes in org.biojava.nbio.core.alignment that implement AlignedSequence Modifier and Type Class Description classSimpleAlignedSequence<S extends Sequence<C>,C extends Compound>Implements a data structure for aSequencewithin an alignment.Methods in org.biojava.nbio.core.alignment that return AlignedSequence Modifier and Type Method Description AlignedSequence<S,C>SimpleProfile. getAlignedSequence(int listIndex)AlignedSequence<S,C>SimpleProfile. getAlignedSequence(S sequence)AlignedSequence<S,C>SimpleSequencePair. getQuery()AlignedSequence<S,C>SimpleSequencePair. getTarget()Methods in org.biojava.nbio.core.alignment that return types with arguments of type AlignedSequence Modifier and Type Method Description List<AlignedSequence<S,C>>SimpleProfile. getAlignedSequences()List<AlignedSequence<S,C>>SimpleProfile. getAlignedSequences(int... listIndices)List<AlignedSequence<S,C>>SimpleProfile. getAlignedSequences(S... sequences)Iterator<AlignedSequence<S,C>>SimpleProfile. iterator()Constructors in org.biojava.nbio.core.alignment with parameters of type AlignedSequence Constructor Description SimpleAlignedSequence(AlignedSequence<S,C> prev, List<AlignedSequence.Step> steps)Creates a newAlignedSequencefor the givenAlignedSequencein a global alignment.SimpleAlignedSequence(AlignedSequence<S,C> prev, List<AlignedSequence.Step> steps, int numBefore, int numAfter)Creates a newAlignedSequencefor the givenAlignedSequencein a local alignment.SimpleProfile(AlignedSequence<S,C> query, AlignedSequence<S,C> target)Creates a pair profile for the given already aligned sequences.SimpleSequencePair(AlignedSequence<S,C> query, AlignedSequence<S,C> target)Creates a pair profile for the given already aligned sequences.Constructor parameters in org.biojava.nbio.core.alignment with type arguments of type AlignedSequence Constructor Description SimpleProfile(Collection<AlignedSequence<S,C>> alignedSequences)Creates a profile for the already aligned sequences. -
Uses of AlignedSequence in org.biojava.nbio.core.alignment.template
Subinterfaces of AlignedSequence in org.biojava.nbio.core.alignment.template Modifier and Type Interface Description interfaceMutableAlignedSequence<S extends Sequence<C>,C extends Compound>Defines a mutable (editable) data structure for anAlignedSequence.Methods in org.biojava.nbio.core.alignment.template that return AlignedSequence Modifier and Type Method Description AlignedSequence<S,C>Profile. getAlignedSequence(int listIndex)ReturnsAlignedSequenceat given index.AlignedSequence<S,C>Profile. getAlignedSequence(S sequence)Searches for the givenSequencewithin this alignment profile.AlignedSequence<S,C>SequencePair. getQuery()Returns the firstAlignedSequenceof the pair.AlignedSequence<S,C>SequencePair. getTarget()Returns the secondAlignedSequenceof the pair.Methods in org.biojava.nbio.core.alignment.template that return types with arguments of type AlignedSequence Modifier and Type Method Description List<AlignedSequence<S,C>>Profile. getAlignedSequences()Returns aListcontaining the individualAlignedSequences of this alignment.List<AlignedSequence<S,C>>Profile. getAlignedSequences(int... listIndices)Returns aListcontaining some of the individualAlignedSequences of this alignment.List<AlignedSequence<S,C>>Profile. getAlignedSequences(S... sequences)Returns aListcontaining some of the individualAlignedSequences of this alignment.Methods in org.biojava.nbio.core.alignment.template with parameters of type AlignedSequence Modifier and Type Method Description voidMutableSequencePair. setPair(AlignedSequence<S,C> query, AlignedSequence<S,C> target)Sets bothAlignedSequences of the pair.voidMutableSequencePair. setQuery(AlignedSequence<S,C> query)Sets the firstAlignedSequenceof the pair.voidMutableSequencePair. setTarget(AlignedSequence<S,C> target)Sets the secondAlignedSequenceof the pair.Method parameters in org.biojava.nbio.core.alignment.template with type arguments of type AlignedSequence Modifier and Type Method Description voidMutableProfile. setSequences(List<AlignedSequence<S,C>> sequences)Sets entirely new set ofAlignedSequences.
-