Class ArrayListSequenceReader<C extends Compound>
- java.lang.Object
-
- org.biojava.nbio.core.sequence.storage.ArrayListSequenceReader<C>
-
- Type Parameters:
C-
- All Implemented Interfaces:
Iterable<C>,Accessioned,Sequence<C>,SequenceReader<C>
- Direct Known Subclasses:
ArrayListProxySequenceReader
public class ArrayListSequenceReader<C extends Compound> extends Object implements SequenceReader<C>
Stores a Sequence as a collection of compounds in an ArrayList
-
-
Constructor Summary
Constructors Constructor Description ArrayListSequenceReader()ArrayListSequenceReader(String sequence, CompoundSet<C> compoundSet)ArrayListSequenceReader(List<C> compounds, CompoundSet<C> compoundSet)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcountCompounds(C... compounds)Returns the number of times we found a compound in the Sequencebooleanequals(Object o)AccessionIDgetAccession()Returns the AccessionID this location is currently bound withList<C>getAsList()Returns the Sequence as a List of compoundsCgetCompoundAt(int position)Returns the Compound at the given biological indexCompoundSet<C>getCompoundSet()Gets the compound set used to back this SequenceintgetIndexOf(C compound)Scans through the Sequence looking for the first occurrence of the given compoundSequenceView<C>getInverse()Does the right thing to get the inverse of the current Sequence.intgetLastIndexOf(C compound)Scans through the Sequence looking for the last occurrence of the given compoundintgetLength()Returns the length of the SequenceStringgetSequenceAsString()Returns the String representation of the SequenceStringgetSequenceAsString(Integer begin, Integer end, Strand strand)SequenceView<C>getSubSequence(Integer bioBegin, Integer bioEnd)Returns a portion of the sequence from the different positions.inthashCode()Iterator<C>iterator()voidsetCompoundSet(CompoundSet<C> compoundSet)voidsetContents(String sequence)voidsetContents(List<C> list)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
ArrayListSequenceReader
public ArrayListSequenceReader()
-
ArrayListSequenceReader
public ArrayListSequenceReader(List<C> compounds, CompoundSet<C> compoundSet)
- Parameters:
compounds-compoundSet-
-
ArrayListSequenceReader
public ArrayListSequenceReader(String sequence, CompoundSet<C> compoundSet) throws CompoundNotFoundException
- Parameters:
sequence-compoundSet-- Throws:
CompoundNotFoundException
-
-
Method Detail
-
getSequenceAsString
public String getSequenceAsString()
Description copied from interface:SequenceReturns the String representation of the Sequence- Specified by:
getSequenceAsStringin interfaceSequence<C extends Compound>- Returns:
-
getSequenceAsString
public String getSequenceAsString(Integer begin, Integer end, Strand strand)
- Parameters:
begin-end-strand-- Returns:
-
getAsList
public List<C> getAsList()
Description copied from interface:SequenceReturns the Sequence as a List of compounds
-
getCompoundAt
public C getCompoundAt(int position)
Description copied from interface:SequenceReturns the Compound at the given biological index- Specified by:
getCompoundAtin interfaceSequence<C extends Compound>- Parameters:
position-- Returns:
-
getIndexOf
public int getIndexOf(C compound)
Description copied from interface:SequenceScans through the Sequence looking for the first occurrence of the given compound- Specified by:
getIndexOfin interfaceSequence<C extends Compound>- Parameters:
compound-- Returns:
-
getLastIndexOf
public int getLastIndexOf(C compound)
Description copied from interface:SequenceScans through the Sequence looking for the last occurrence of the given compound- Specified by:
getLastIndexOfin interfaceSequence<C extends Compound>- Parameters:
compound-- Returns:
-
getLength
public int getLength()
Description copied from interface:SequenceReturns the length of the Sequence
-
setCompoundSet
public void setCompoundSet(CompoundSet<C> compoundSet)
- Specified by:
setCompoundSetin interfaceSequenceReader<C extends Compound>- Parameters:
compoundSet-
-
getCompoundSet
public CompoundSet<C> getCompoundSet()
Description copied from interface:SequenceGets the compound set used to back this Sequence- Specified by:
getCompoundSetin interfaceSequence<C extends Compound>- Returns:
-
setContents
public void setContents(String sequence) throws CompoundNotFoundException
- Specified by:
setContentsin interfaceSequenceReader<C extends Compound>- Parameters:
sequence-- Throws:
CompoundNotFoundException
-
getSubSequence
public SequenceView<C> getSubSequence(Integer bioBegin, Integer bioEnd)
Description copied from interface:SequenceReturns a portion of the sequence from the different positions. This is indexed from 1- Specified by:
getSubSequencein interfaceSequence<C extends Compound>- Parameters:
bioBegin-bioEnd-- Returns:
-
getAccession
public AccessionID getAccession()
Description copied from interface:AccessionedReturns the AccessionID this location is currently bound with- Specified by:
getAccessionin interfaceAccessioned- Returns:
-
countCompounds
public int countCompounds(C... compounds)
Description copied from interface:SequenceReturns the number of times we found a compound in the Sequence- Specified by:
countCompoundsin interfaceSequence<C extends Compound>- Parameters:
compounds-- Returns:
-
getInverse
public SequenceView<C> getInverse()
Description copied from interface:SequenceDoes the right thing to get the inverse of the current Sequence. This means either reversing the Sequence and optionally complementing the Sequence.- Specified by:
getInversein interfaceSequence<C extends Compound>- Returns:
-
-