Uses of Class
org.biojava.nbio.genome.io.fastq.Fastq
Packages that use Fastq
-
Uses of Fastq in org.biojava.nbio.genome.io.fastq
Methods in org.biojava.nbio.genome.io.fastq that return FastqModifier and TypeMethodDescriptionFastqBuilder.build()
Build and return a new FASTQ formatted sequence configured from the properties of this builder.static Fastq
FastqTools.convert
(Fastq fastq, FastqVariant variant) Convert the specified FASTQ formatted sequence to the specified FASTQ sequence format variant.protected Fastq
protected Fastq
protected Fastq
Fastq.convertTo
(FastqVariant variant) Create and return a new FASTQ formatted sequence from this converted to the specified FASTQ sequence format variant.Methods in org.biojava.nbio.genome.io.fastq that return types with arguments of type FastqModifier and TypeMethodDescriptionRead zero or more FASTQ formatted sequences from the specified file.FastqReader.read
(InputStream inputStream) Read zero or more FASTQ formatted sequences from the specified input stream.Read zero or more FASTQ formatted sequences from the specified url.Methods in org.biojava.nbio.genome.io.fastq with parameters of type FastqModifier and TypeMethodDescription<T extends Appendable>
TAppend the specified FASTQ formatted sequences to the specified appendable.static final FastqBuilder
Create and return a new FastqBuilder configured from the specified FASTQ formatted sequence.static Fastq
FastqTools.convert
(Fastq fastq, FastqVariant variant) Convert the specified FASTQ formatted sequence to the specified FASTQ sequence format variant.protected Fastq
protected Fastq
protected Fastq
static 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.FastqTools.createErrorProbabilities
(Fastq fastq) Create and return a newQuantityFeature
from the error probabilities of the specified FASTQ formatted sequence.FastqTools.createQualityScores
(Fastq fastq) Create and return a newQualityFeature
from the quality scores of the specified FASTQ formatted sequence.FastqTools.errorProbabilities
(Fastq fastq) Return the error probabilities from the specified FASTQ formatted sequence.static double[]
FastqTools.errorProbabilities
(Fastq fastq, double[] errorProbabilities) Copy the error probabilities from the specified FASTQ formatted sequence into the specified double array.void
Notify this listener of a FASTQ formatted sequence.FastqTools.qualityScores
(Fastq fastq) Return the quality scores from the specified FASTQ formatted sequence.static int[]
FastqTools.qualityScores
(Fastq fastq, int[] qualityScores) Copy the quality scores from the specified FASTQ formatted sequence into the specified int array.void
Write the specified FASTQ formatted sequences to the specified file.void
FastqWriter.write
(OutputStream outputStream, Fastq... fastq) Write the specified FASTQ formatted sequences to the specified output stream.Method parameters in org.biojava.nbio.genome.io.fastq with type arguments of type FastqModifier and TypeMethodDescription<T extends Appendable>
TAppend the specified FASTQ formatted sequences to the specified appendable.void
Write the specified FASTQ formatted sequences to the specified file.void
FastqWriter.write
(OutputStream outputStream, Iterable<Fastq> fastq) Write the specified FASTQ formatted sequences to the specified output stream.Constructors in org.biojava.nbio.genome.io.fastq with parameters of type FastqModifierConstructorDescriptionFastqBuilder
(Fastq fastq) Create a new FASTQ formatted sequence builder configured from the specified FASTQ formatted sequence.