Package org.biojava.nbio.core.util
Class SequenceTools
java.lang.Object
org.biojava.nbio.core.util.SequenceTools
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
equalLengthSequences
(ProteinSequence[] sequences) A method to check whether an array of sequences contains at least two sequences having an equal length.Sequence
<?> getSequenceFromString
(String sequence) Attempts to parse String as a DNA sequence first.
If this fails it tries to parse as a ProteinSequence.static boolean
isNucleotideSequence
(String sequence) static int
percentNucleotideSequence
(String sequence) static String
permuteCyclic
(String string, int n) Cyclically permute the characters instring
forward byn
elements.static <T> void
permuteCyclic
(T[] array, T[] fill, int n) Cyclically permutearray
forward byn
elements.
-
Field Details
-
NUCLEOTIDE_LETTERS
- See Also:
-
-
Constructor Details
-
SequenceTools
public SequenceTools()
-
-
Method Details
-
permuteCyclic
Cyclically permute the characters instring
forward byn
elements.- Parameters:
string
- The string to permuten
- The number of characters to permute by; can be positive or negative; values greater than the length of the array are acceptable
-
permuteCyclic
Cyclically permutearray
forward byn
elements.- Parameters:
array
- The original result; will not be changedfill
- The permuted result will be filled into this arrayn
- The number of elements to permute by; can be positive or negative; values greater than the length of the array are acceptable
-
percentNucleotideSequence
-
isNucleotideSequence
-
getSequenceFromString
Attempts to parse String as a DNA sequence first.
If this fails it tries to parse as a ProteinSequence.
This method does not attempt to create an RNASequence.Also, a sequence such as 'ATCGTA' which is both a peptide sequence and a DNA sequence, will always be returned as a DNA sequence.
An empty string argument returns a ProteinSequence of length 0. A null argument throws a
NullPointerException
- Parameters:
sequence
-- Returns:
- Either a DNASequence or a ProteinSequence
- Throws:
CompoundNotFoundException
-
equalLengthSequences
A method to check whether an array of sequences contains at least two sequences having an equal length.- Parameters:
sequences
- the array ofProteinSequence
sequences- Returns:
- true if any two sequences are of an equal length
-