Uses of Interface
org.biojava.bio.seq.db.SequenceDB
-
Packages that use SequenceDB Package Description org.biojava.bio.dp HMM and Dynamic Programming Algorithms.org.biojava.bio.program.gff GFF manipulation.org.biojava.bio.program.phred Parser for Phred outputorg.biojava.bio.program.ssaha SSAHA sequence searching API.org.biojava.bio.program.unigene Objects for representing Unigene clusters.org.biojava.bio.search Interfaces and classes for representing sequence similarity search results.org.biojava.bio.seq.db Collections of biological sequence data.org.biojava.bio.seq.distributed Sequences and SequenceDBs which are composed from data taken from a number of data sources.org.biojava.bio.seq.impl Standard in-memory implementations ofSequenceandFeature.org.biojava.bio.seq.io Classes and interfaces for processing and producing flat-file representations of sequences.org.biojavax.bio.db Interactions between biojavax objects and a DB.org.biojavax.bio.db.ncbi Interfaces to NCBI data. -
-
Uses of SequenceDB in org.biojava.bio.dp
Methods in org.biojava.bio.dp with parameters of type SequenceDB Modifier and Type Method Description voidAbstractTrainer. train(SequenceDB db, double nullModelWeight, StoppingCriteria stopper)Trains the sequences in db until stopper says to finnish.voidTrainingAlgorithm. train(SequenceDB db, double nullWeight, StoppingCriteria stopper)Trains the sequences in db untill stopper says to finnish. -
Uses of SequenceDB in org.biojava.bio.program.gff
Methods in org.biojava.bio.program.gff that return SequenceDB Modifier and Type Method Description static SequenceDBGFFTools. annotateSequences(SequenceDB seqs, GFFEntrySet ents)Annotates all sequences in a sequence DB with features from a GFF entry set.Methods in org.biojava.bio.program.gff with parameters of type SequenceDB Modifier and Type Method Description static SequenceDBGFFTools. annotateSequences(SequenceDB seqs, GFFEntrySet ents)Annotates all sequences in a sequence DB with features from a GFF entry set.static GFFEntrySetGFFTools. gffFromSeqDB(SequenceDB seqDB)Creates a GFFEntrySet containing one entry for each feature on each sequence of a SequenceDB.voidSequencesAsGFF. processDB(SequenceDB seqDB, GFFDocumentHandler handler)Process all Sequences within a SequenceDB, informing handler of any suitable features. -
Uses of SequenceDB in org.biojava.bio.program.phred
Methods in org.biojava.bio.program.phred with parameters of type SequenceDB Modifier and Type Method Description static voidPhredTools. writePhredQuality(OutputStream qual, OutputStream seq, SequenceDB db)Writes Phred quality data in a Fasta type format. -
Uses of SequenceDB in org.biojava.bio.program.ssaha
Methods in org.biojava.bio.program.ssaha with parameters of type SequenceDB Modifier and Type Method Description DataStoreCompactedDataStoreFactory. buildDataStore(File storeFile, SequenceDB seqDB, Packing packing, int wordLength, int threshold)DataStoreDataStoreFactory. buildDataStore(File storeFile, SequenceDB seqDB, Packing packing, int wordLength, int threshold)Build a new DataStore.DataStoreMappedDataStoreFactory. buildDataStore(File storeFile, SequenceDB seqDB, Packing packing, int wordLength, int threshold)DataStoreNIODataStoreFactory. buildDataStore(File storeFile, SequenceDB seqDB, Packing packing, int wordLength, int threshold)Constructors in org.biojava.bio.program.ssaha with parameters of type SequenceDB Constructor Description SequenceDBStreamer(SequenceDB seqDB) -
Uses of SequenceDB in org.biojava.bio.program.unigene
Methods in org.biojava.bio.program.unigene that return SequenceDB Modifier and Type Method Description SequenceDBUnigeneCluster. getAll()All sequences that map to this cluster. -
Uses of SequenceDB in org.biojava.bio.search
Methods in org.biojava.bio.search that return SequenceDB Modifier and Type Method Description SequenceDBSeqSimilaritySearchResult. getSequenceDB()Returns the sequence database against which the search was performed.SequenceDBSequenceDBSearchResult. getSequenceDB()Deprecated.SequenceDBSimpleSeqSimilaritySearchResult. getSequenceDB()Methods in org.biojava.bio.search with parameters of type SequenceDB Modifier and Type Method Description SeqSimilaritySearchResultSeqSimilaritySearcher. search(SymbolList querySeq, SequenceDB db, Map searchParameters)Using this sequence similarity searcher, search with the given sequence against the given sequence database.Constructors in org.biojava.bio.search with parameters of type SequenceDB Constructor Description SequenceDBSearchResult(Sequence querySequence, SequenceDB sequenceDB, Map searchParameters, List hits, Annotation annotation)Deprecated.Creates a newSequenceDBSearchResult.SimpleSeqSimilaritySearchResult(Sequence querySequence, SequenceDB sequenceDB, Map searchParameters, List hits, Annotation annotation)Creates a newSimpleSeqSimilaritySearchResult. -
Uses of SequenceDB in org.biojava.bio.seq.db
Classes in org.biojava.bio.seq.db that implement SequenceDB Modifier and Type Class Description classAbstractSequenceDBAn abstract implementation of SequenceDB that provides the sequenceIterator method.classAnnotatedSequenceDBSequenceDB implementation which lazily applies a SequenceAnnotator to sequences retrieved from a SequenceDB.classCachingSequenceDBSequenceDB implementation that caches the results of another SequenceDB.classDummySequenceDBDummySequenceDBis an implementation which contains only aDummySequence.classHashSequenceDBAn implementation of SequenceDB that uses an underlying HashMap to store the sequence objects.classIndexedSequenceDBThis class implements SequenceDB on top of a set of sequence files and sequence offsets within these files.classSequenceDBWrapperAn abstract implementation of SequenceDB that wraps up another database.classSubSequenceDBclassViewingSequenceDBSequenceDB implementation that returns new SequenceView instances wrapping the sequences in an underlying database.Methods in org.biojava.bio.seq.db that return SequenceDB Modifier and Type Method Description SequenceDBAnnotatedSequenceDB. getParent()Get the original sequenceDB from this annotated sequenceDB.SequenceDBSequenceDBWrapper. getParent()Return the parent SequenceDB.SequenceDBGenbankSequenceDB. getSequences(Set list)Retrieve sequences from a GenbankSequenceDBGenbankSequenceDB. getSequences(Set list, SequenceDB database)Retrieve sequences from a GenbankMethods in org.biojava.bio.seq.db with parameters of type SequenceDB Modifier and Type Method Description SequenceDBGenbankSequenceDB. getSequences(Set list, SequenceDB database)Retrieve sequences from a GenbankConstructors in org.biojava.bio.seq.db with parameters of type SequenceDB Constructor Description AnnotatedSequenceDB(SequenceDB parent, SequenceAnnotator a)CachingSequenceDB(SequenceDB parent)Create a new CachingSequenceDB that caches the sequences in parent.SequenceDBWrapper(SequenceDB parent)SubSequenceDB(SequenceDB parent, Set ids)ViewingSequenceDB(SequenceDB parent)Create a new ViewingSequenceDB that views the sequences in parent. -
Uses of SequenceDB in org.biojava.bio.seq.distributed
Classes in org.biojava.bio.seq.distributed that implement SequenceDB Modifier and Type Class Description classDistributedSequenceDBSequence database from the meta-DAS system.Constructors in org.biojava.bio.seq.distributed with parameters of type SequenceDB Constructor Description SequenceDBDataSource(SequenceDB seqDB) -
Uses of SequenceDB in org.biojava.bio.seq.impl
Methods in org.biojava.bio.seq.impl that return SequenceDB Modifier and Type Method Description SequenceDBSimpleRemoteFeature.DBResolver. getSeqDB()Constructors in org.biojava.bio.seq.impl with parameters of type SequenceDB Constructor Description DBResolver(SequenceDB seqDB) -
Uses of SequenceDB in org.biojava.bio.seq.io
Methods in org.biojava.bio.seq.io that return SequenceDB Modifier and Type Method Description static SequenceDBSeqIOTools. readFasta(InputStream seqFile, Alphabet alpha)Deprecated.Create a sequence database from a fasta file provided as an input stream.Methods in org.biojava.bio.seq.io with parameters of type SequenceDB Modifier and Type Method Description static voidSeqIOTools. writeFasta(OutputStream os, SequenceDB db)Deprecated.Write a sequenceDB to an output stream in fasta format. -
Uses of SequenceDB in org.biojavax.bio.db
Subinterfaces of SequenceDB in org.biojavax.bio.db Modifier and Type Interface Description interfaceRichSequenceDBA database of RichSequences with accessible keys and iterators over all sequences.Classes in org.biojavax.bio.db that implement SequenceDB Modifier and Type Class Description classAbstractRichSequenceDBAn abstract implementation of RichSequenceDB that provides the getRichSequenceIterator method.classHashRichSequenceDBAn implementation of RichSequenceDB that uses an underlying HashMap to store the RichSequence objects. -
Uses of SequenceDB in org.biojavax.bio.db.ncbi
Classes in org.biojavax.bio.db.ncbi that implement SequenceDB Modifier and Type Class Description classGenbankRichSequenceDBThis class contains functions accessing DNA sequences in Genbank format.classGenpeptRichSequenceDBThis class contains functions accessing Peptide sequences in Genpept format.
-