Uses of Interface
org.biojava3.core.sequence.io.template.SequenceCreatorInterface

Packages that use SequenceCreatorInterface
org.biojava3.core.sequence.io   
org.biojava3.core.sequence.template   
org.biojava3.core.sequence.transcription   
 

Uses of SequenceCreatorInterface in org.biojava3.core.sequence.io
 

Classes in org.biojava3.core.sequence.io that implement SequenceCreatorInterface
 class DNASequenceCreator
          A helper class that allows different ways to read a string and create a DNA sequence.
 class FileProxyProteinSequenceCreator
          This class is a good example of using the SequenceCreatorInterface where during parsing of the stream the sequence and the offset index are passed to create a Protein sequence that will be loaded in lazily.
 class ProteinSequenceCreator
          Used to create a ProteinSequence from a String to allow for details about the location of the sequence etc.
 class RNASequenceCreator
          Used to create a RNA sequence
 

Constructors in org.biojava3.core.sequence.io with parameters of type SequenceCreatorInterface
FastaReader(File file, FastaHeaderParserInterface<S,C> headerParser, SequenceCreatorInterface<C> sequenceCreator)
          If you are going to use the FileProxyProteinSequenceCreator then you need to use this constructor because we need details about the location of the file.
FastaReader(InputStream is, FastaHeaderParserInterface<S,C> headerParser, SequenceCreatorInterface<C> sequenceCreator)
          If you are going to use FileProxyProteinSequenceCreator then do not use this constructor because we need details about local file offsets for quick reads.
 

Uses of SequenceCreatorInterface in org.biojava3.core.sequence.template
 

Methods in org.biojava3.core.sequence.template that return SequenceCreatorInterface
 SequenceCreatorInterface<T> AbstractCompoundTranslator.getCreator()
           
 

Constructors in org.biojava3.core.sequence.template with parameters of type SequenceCreatorInterface
AbstractCompoundTranslator(SequenceCreatorInterface<T> creator, CompoundSet<F> fromCompoundSet, CompoundSet<T> toCompoundSet)
           
 

Uses of SequenceCreatorInterface in org.biojava3.core.sequence.transcription
 

Methods in org.biojava3.core.sequence.transcription that return SequenceCreatorInterface
 SequenceCreatorInterface<AminoAcidCompound> TranscriptionEngine.getProteinSequenceCreator()
           
 SequenceCreatorInterface<NucleotideCompound> TranscriptionEngine.getRnaSequenceCreator()
           
 

Methods in org.biojava3.core.sequence.transcription with parameters of type SequenceCreatorInterface
 TranscriptionEngine.Builder TranscriptionEngine.Builder.proteinCreator(SequenceCreatorInterface<AminoAcidCompound> creator)
           
 TranscriptionEngine.Builder TranscriptionEngine.Builder.rnaCreator(SequenceCreatorInterface<NucleotideCompound> creator)
           
 

Constructors in org.biojava3.core.sequence.transcription with parameters of type SequenceCreatorInterface
DNAToRNATranslator(SequenceCreatorInterface<NucleotideCompound> rnaCreator, CompoundSet<NucleotideCompound> dna, CompoundSet<NucleotideCompound> rna, boolean shortCutTranslation)
           
RNAToAminoAcidTranslator(SequenceCreatorInterface<AminoAcidCompound> creator, CompoundSet<NucleotideCompound> nucleotides, CompoundSet<Table.Codon> codons, CompoundSet<AminoAcidCompound> aminoAcids, Table table, boolean trimStops, boolean initMetOnly, boolean translateNCodons)
           
 



Copyright © 2010 BioJava. All Rights Reserved.