Uses of Class
org.snpeff.binseq.BinarySequence
-
Packages that use BinarySequence Package Description org.snpeff.binseq org.snpeff.binseq.comparator org.snpeff.binseq.indexer org.snpeff.fileIterator org.snpeff.overlap -
-
Uses of BinarySequence in org.snpeff.binseq
Subclasses of BinarySequence in org.snpeff.binseq Modifier and Type Class Description classDnaAndQualitySequenceBinary packed DNA sequence and base calling quality Notes: - This is designed for short sequences (such as "short reads") - Every base is encoded in 8 bits: - Six bits for the base quality [0 , ..classDnaAndQualitySequenceWithIdDnaAndQualitySequence with an IDclassDnaNSequenceBinary packed DNA sequence that allows also 'N' bases: {A, C, G, T, N}classDnaSequenceBinary packed DNA sequence Notes: - This is designed for short sequences (such as "short reads") - Every base is encoded in 2 bits {a, c, g, t} <=> {0, 1, 2, 3} - All bits are stored in an array of 'words' (integers) - Most significant bits are the first bases in the sequence (makes comparison easier)classDnaSequenceIdBinary packed DNA sequence with an ID (long)classDnaSequencePePair end DNA sequence (binary packed) It consists of 2 DNA sequences separated by a gap.Methods in org.snpeff.binseq that return BinarySequence Modifier and Type Method Description BinarySequenceBinarySequence. clone()BinarySequenceBinarySequence. overlap(BinarySequence sequence, int start)Creates a new sequence by overlapping 'this' and 'sequence' E.g.BinarySequenceDnaSequence. overlap(BinarySequence sequence, int start)Creates a new sequence by overlapping 'this' and 'sequence' E.g.abstract BinarySequenceBinarySequence. read(java.io.DataInputStream dataInStream)Read a sequence from a data streamBinarySequenceDnaNSequence. read(java.io.DataInputStream dataInStream)Read data in binary formatBinarySequenceDnaSequence. read(java.io.DataInputStream dataInStream)Read data in binary formatBinarySequenceDnaSequenceId. read(java.io.DataInputStream dataInStream)Read data in binary formatabstract BinarySequenceBinarySequence. reverseWc()Reverse Watson-Cricks complementBinarySequenceDnaNSequence. reverseWc()BinarySequenceDnaSequence. reverseWc()BinarySequenceDnaSequencePe. reverseWc()Methods in org.snpeff.binseq with parameters of type BinarySequence Modifier and Type Method Description intDnaAndQualitySequence. compareTo(BinarySequence o)intDnaSequence. compareTo(BinarySequence o)intDnaSequencePe. compareTo(BinarySequence o)BinarySequenceBinarySequence. overlap(BinarySequence sequence, int start)Creates a new sequence by overlapping 'this' and 'sequence' E.g.DnaAndQualitySequenceDnaAndQualitySequence. overlap(BinarySequence sequence, int start)Creates a new sequence by overlapping 'this' and 'sequence' E.g.BinarySequenceDnaSequence. overlap(BinarySequence sequence, int start)Creates a new sequence by overlapping 'this' and 'sequence' E.g. -
Uses of BinarySequence in org.snpeff.binseq.comparator
Classes in org.snpeff.binseq.comparator with type parameters of type BinarySequence Modifier and Type Class Description classSubsequenceComparator<T extends BinarySequence>Compare two subsequences (actually it compares two sequences from different starting points) -
Uses of BinarySequence in org.snpeff.binseq.indexer
Classes in org.snpeff.binseq.indexer with type parameters of type BinarySequence Modifier and Type Interface Description interfaceOverlapFilter<T extends BinarySequence>Indicate whether an overlap between two sequences should be considered or notclassOverlapRessult<T extends BinarySequence>An object used to store overlap parametersclassSequenceIndexer<T extends BinarySequence>A collection of sequences that are indexed using some algorithm Note: The ID is just the position in the array.classSuffixIndexerNmer<T extends BinarySequence>Index all suffixes of all the sequences (it indexes using Nmers).Fields in org.snpeff.binseq.indexer declared as BinarySequence Modifier and Type Field Description TOverlapRessult. bestSequence -
Uses of BinarySequence in org.snpeff.fileIterator
Classes in org.snpeff.fileIterator with type parameters of type BinarySequence Modifier and Type Class Description classBinSeqFileIterator<T extends BinarySequence>Reads all sequences from a file Warning: You should always call "close()" at the end of the iteration. -
Uses of BinarySequence in org.snpeff.overlap
Classes in org.snpeff.overlap with type parameters of type BinarySequence Modifier and Type Class Description classOverlap<S extends BinarySequence>Calculates the best overlap between two sequences Note: An overlap is a simple 'alignment' which can only contain gaps at the beginning or at the end of the sequences.
-