Uses of Class
org.biojava.nbio.core.sequence.DNASequence
-
Packages that use DNASequence Package Description org.biojava.nbio.core.sequence org.biojava.nbio.core.sequence.io org.biojava.nbio.genome org.biojava.nbio.genome.io.fastq FASTQ and variants sequence format I/O.org.biojava.nbio.genome.parsers.geneid org.biojava.nbio.genome.parsers.gff org.biojava.nbio.genome.util -
-
Uses of DNASequence in org.biojava.nbio.core.sequence
Subclasses of DNASequence in org.biojava.nbio.core.sequence Modifier and Type Class Description classCDSSequenceRepresents a exon or coding sequence in a gene.classChromosomeSequenceA ChromosomeSequence is a DNASequence but keeps track of geneSequencesclassExonSequenceA gene contains a collection of Exon sequencesclassGeneSequenceclassIntronSequenceclassStartCodonSequenceUsed to map the start codon feature on a geneclassStopCodonSequenceUsed to map the stop codon sequence on a geneclassTranscriptSequenceThis is the sequence if you want to go from a gene sequence to a protein sequence.Fields in org.biojava.nbio.core.sequence declared as DNASequence Modifier and Type Field Description DNASequenceStartCodonSequence. parentGeneSequenceDNASequenceStopCodonSequence. parentGeneSequenceMethods in org.biojava.nbio.core.sequence that return DNASequence Modifier and Type Method Description DNASequenceTranscriptSequence. getDNACodingSequence()Get the stitched together CDS sequences then maps to the cDNADNASequenceGeneSequence. getSequence5PrimeTo3Prime()Try to give method clarity where you want a DNASequence coding in the 5' to 3' direction Returns the DNASequence representative of the 5' and 3' reading based on strand -
Uses of DNASequence in org.biojava.nbio.core.sequence.io
Methods in org.biojava.nbio.core.sequence.io that return types with arguments of type DNASequence Modifier and Type Method Description static LinkedHashMap<String,DNASequence>FastaReaderHelper. readFastaDNASequence(File file)static LinkedHashMap<String,DNASequence>FastaReaderHelper. readFastaDNASequence(File file, boolean lazySequenceLoad)Selecting lazySequenceLoad=true will parse the FASTA file and figure out the accessionid and offsets and return sequence objects that can in the future read the sequence from the disk.static LinkedHashMap<String,DNASequence>FastaReaderHelper. readFastaDNASequence(InputStream inStream)Read a fasta DNA sequencestatic LinkedHashMap<String,DNASequence>GenbankReaderHelper. readGenbankDNASequence(File file)static LinkedHashMap<String,DNASequence>GenbankReaderHelper. readGenbankDNASequence(File file, boolean lazySequenceLoad)Selecting lazySequenceLoad=true will parse the Genbank file and figure out the accessionid and offsets and return sequence objects that can in the future read the sequence from the disk.static LinkedHashMap<String,DNASequence>GenbankReaderHelper. readGenbankDNASequence(InputStream inStream)Read a Genbank DNA sequenceMethod parameters in org.biojava.nbio.core.sequence.io with type arguments of type DNASequence Modifier and Type Method Description static voidFastaWriterHelper. writeNucleotideSequence(File file, Collection<DNASequence> dnaSequences)Write a collection of NucleotideSequences to a filestatic voidFastaWriterHelper. writeNucleotideSequence(OutputStream outputStream, Collection<DNASequence> dnaSequences)Write a collection of NucleotideSequences to a filestatic voidGenbankWriterHelper. writeNucleotideSequence(File file, Collection<DNASequence> dnaSequences)Write a collection of NucleotideSequences to a filestatic voidGenbankWriterHelper. writeNucleotideSequence(OutputStream outputStream, Collection<DNASequence> dnaSequences)Write a collection of NucleotideSequences to a filestatic voidGenbankWriterHelper. writeNucleotideSequence(OutputStream outputStream, Collection<DNASequence> dnaSequences, String seqType)Write a collection of NucleotideSequences to a file -
Uses of DNASequence in org.biojava.nbio.genome
Method parameters in org.biojava.nbio.genome with type arguments of type DNASequence Modifier and Type Method Description static LinkedHashMap<String,ChromosomeSequence>GeneFeatureHelper. getChromosomeSequenceFromDNASequence(LinkedHashMap<String,DNASequence> dnaSequenceList) -
Uses of DNASequence in org.biojava.nbio.genome.io.fastq
Methods in org.biojava.nbio.genome.io.fastq that return DNASequence Modifier and Type Method Description static DNASequenceFastqTools. createDNASequence(Fastq fastq)Create and return a newDNASequencefrom the specified FASTQ formatted sequence.static DNASequenceFastqTools. createDNASequenceWithErrorProbabilities(Fastq fastq)Create and return a newDNASequencewith error probabilities from the specified FASTQ formatted sequence.static DNASequenceFastqTools. createDNASequenceWithQualityScores(Fastq fastq)Create and return a newDNASequencewith quality scores from the specified FASTQ formatted sequence.static DNASequenceFastqTools. createDNASequenceWithQualityScoresAndErrorProbabilities(Fastq fastq)Create and return a newDNASequencewith quality scores and error probabilities from the specified FASTQ formatted sequence. -
Uses of DNASequence in org.biojava.nbio.genome.parsers.geneid
Methods in org.biojava.nbio.genome.parsers.geneid that return types with arguments of type DNASequence Modifier and Type Method Description LinkedHashMap<String,DNASequence>GeneIDXMLReader. getDNACodingSequences() -
Uses of DNASequence in org.biojava.nbio.genome.parsers.gff
Methods in org.biojava.nbio.genome.parsers.gff with parameters of type DNASequence Modifier and Type Method Description StringFeatureList. splice(DNASequence sequence)Concatenate successive portions of the specified sequence using the feature locations in the list.Method parameters in org.biojava.nbio.genome.parsers.gff with type arguments of type DNASequence Modifier and Type Method Description static doubleGCStats. getGCStats(Collection<DNASequence> sequences) -
Uses of DNASequence in org.biojava.nbio.genome.util
Methods in org.biojava.nbio.genome.util that return DNASequence Modifier and Type Method Description static DNASequenceChromosomeMappingTools. getTranscriptDNASequence(TwoBitFacade twoBitFacade, String chromosome, List<Integer> exonStarts, List<Integer> exonEnds, int cdsStart, int cdsEnd, Character orientation)Extracts the DNA sequence transcribed from the input genetic coordinates.static DNASequenceChromosomeMappingTools. getTranscriptDNASequence(TwoBitFacade twoBitFacade, GeneChromosomePosition gcp)Extracts the DNA sequence transcribed from the input genetic coordinates.Methods in org.biojava.nbio.genome.util with parameters of type DNASequence Modifier and Type Method Description static ProteinSequenceProteinMappingTools. convertDNAtoProteinSequence(DNASequence dnaSequence)Converts the DNA sequence to protein sequence.
-