Uses of Class
org.biojava.nbio.core.sequence.DNASequence
Packages that use DNASequence
Package
Description
FASTQ and variants sequence format I/O.
-
Uses of DNASequence in org.biojava.nbio.core.sequence
Subclasses of DNASequence in org.biojava.nbio.core.sequenceModifier and TypeClassDescriptionclass
Represents a exon or coding sequence in a gene.class
A ChromosomeSequence is a DNASequence but keeps track of geneSequencesclass
A gene contains a collection of Exon sequencesclass
class
class
Used to map the start codon feature on a geneclass
Used to map the stop codon sequence on a geneclass
This 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 DNASequenceModifier and TypeFieldDescriptionStartCodonSequence.parentGeneSequence
StopCodonSequence.parentGeneSequence
Methods in org.biojava.nbio.core.sequence that return DNASequenceModifier and TypeMethodDescriptionTranscriptSequence.getDNACodingSequence()
Get the stitched together CDS sequences then maps to the cDNAGeneSequence.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 DNASequenceModifier and TypeMethodDescriptionstatic Map
<String, DNASequence> FastaReaderHelper.readFastaDNASequence
(File file) static Map
<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 Map
<String, DNASequence> FastaReaderHelper.readFastaDNASequence
(InputStream inStream) Read a fasta DNA sequencestatic Map
<String, DNASequence> GenbankReaderHelper.readGenbankDNASequence
(File file) static Map
<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 Map
<String, DNASequence> GenbankReaderHelper.readGenbankDNASequence
(InputStream inStream) Read a Genbank DNA sequenceMethod parameters in org.biojava.nbio.core.sequence.io with type arguments of type DNASequenceModifier and TypeMethodDescriptionstatic void
FastaWriterHelper.writeNucleotideSequence
(File file, Collection<DNASequence> dnaSequences) Write a collection of NucleotideSequences to a filestatic void
FastaWriterHelper.writeNucleotideSequence
(OutputStream outputStream, Collection<DNASequence> dnaSequences) Write a collection of NucleotideSequences to a filestatic void
GenbankWriterHelper.writeNucleotideSequence
(File file, Collection<DNASequence> dnaSequences) Write a collection of NucleotideSequences to a filestatic void
GenbankWriterHelper.writeNucleotideSequence
(OutputStream outputStream, Collection<DNASequence> dnaSequences) Write a collection of NucleotideSequences to a filestatic void
GenbankWriterHelper.writeNucleotideSequence
(OutputStream outputStream, Collection<DNASequence> dnaSequences, String seqType) Write a collection of NucleotideSequences to a filestatic void
GenbankWriterHelper.writeNucleotideSequenceOriginal
(OutputStream outputStream, Collection<DNASequence> dnaSequences) Write a collection of NucleotideSequences to a file using the NucleotideSequences original header as the LOCUS line rather than generating it -
Uses of DNASequence in org.biojava.nbio.genome
Method parameters in org.biojava.nbio.genome with type arguments of type DNASequenceModifier and TypeMethodDescriptionstatic Map
<String, ChromosomeSequence> GeneFeatureHelper.getChromosomeSequenceFromDNASequence
(Map<String, DNASequence> dnaSequenceList) -
Uses of DNASequence in org.biojava.nbio.genome.io.fastq
Methods in org.biojava.nbio.genome.io.fastq that return DNASequenceModifier and TypeMethodDescriptionstatic DNASequence
FastqTools.createDNASequence
(Fastq fastq) Create and return a newDNASequence
from the specified FASTQ formatted sequence.static DNASequence
FastqTools.createDNASequenceWithErrorProbabilities
(Fastq fastq) Create and return a newDNASequence
with error probabilities from the specified FASTQ formatted sequence.static DNASequence
FastqTools.createDNASequenceWithQualityScores
(Fastq fastq) Create and return a newDNASequence
with quality scores from the specified FASTQ formatted sequence.static DNASequence
FastqTools.createDNASequenceWithQualityScoresAndErrorProbabilities
(Fastq fastq) Create and return a newDNASequence
with 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 -
Uses of DNASequence in org.biojava.nbio.genome.parsers.gff
Methods in org.biojava.nbio.genome.parsers.gff with parameters of type DNASequenceModifier and TypeMethodDescriptionFeatureList.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 DNASequenceModifier and TypeMethodDescriptionstatic double
GCStats.getGCStats
(Collection<DNASequence> sequences) -
Uses of DNASequence in org.biojava.nbio.genome.util
Methods in org.biojava.nbio.genome.util that return DNASequenceModifier and TypeMethodDescriptionstatic DNASequence
ChromosomeMappingTools.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 DNASequence
ChromosomeMappingTools.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 DNASequenceModifier and TypeMethodDescriptionstatic ProteinSequence
ProteinMappingTools.convertDNAtoProteinSequence
(DNASequence dnaSequence) Converts the DNA sequence to protein sequence.