Uses of Interface
org.biojava3.core.sequence.template.CompoundSet
Package
Description
-
Uses of CompoundSet in bacnet.datamodel.sequence
ModifierConstructorDescriptionChromosome
(String seqString, CompoundSet<NucleotideCompound> compoundSet) Chromosome
(SequenceReader<NucleotideCompound> proxyLoader, CompoundSet<NucleotideCompound> compoundSet) ChromosomeBacteriaSequence
(String seqString, CompoundSet<NucleotideCompound> compoundSet) ChromosomeBacteriaSequence
(SequenceReader<NucleotideCompound> proxyLoader, CompoundSet<NucleotideCompound> compoundSet) -
Uses of CompoundSet in bacnet.reader
Modifier and TypeMethodDescriptionFastaFileReader.process
(CompoundSet<?> compoundSet) The parsing is done in this method ******* There is a problem when the genes in the fasta file have the same Id, so I modify this method accordingly -
Uses of CompoundSet in org.biojava3.core.sequence
Modifier and TypeMethodDescriptionMultipleSequenceAlignment.getCompoundSet()
Get the Compounds defined in the first sequenceModifierConstructorDescriptionBasicSequence
(String sequence, CompoundSet<C> compoundSet) ChromosomeSequence
(String seqString, CompoundSet<NucleotideCompound> compoundSet) Allows the creation of a ChromosomeSequence using String for the sequence with a custom CompoundSetChromosomeSequence
(SequenceReader<NucleotideCompound> proxyLoader, CompoundSet<NucleotideCompound> compoundSet) Allows the creation of a ChromosomeSequence using a ProxyResequenceReader for the sequence with a custom CompoundSetDNASequence
(String seqString, CompoundSet<NucleotideCompound> compoundSet) Create a sequence from a string with user defined compound setDNASequence
(SequenceReader<NucleotideCompound> proxyLoader, CompoundSet<NucleotideCompound> compoundSet) Create a sequence from a ProxySequencereader and user defined compound setProteinSequence
(String seqString, CompoundSet<AminoAcidCompound> compoundSet) Create a protein from a string with a user defined set of amino acidsProteinSequence
(ProxySequenceReader<AminoAcidCompound> proxyLoader, CompoundSet<AminoAcidCompound> compoundSet) A protein sequence where the storage of the sequence is somewhere else with user defined set of amino acids.RNASequence
(String seqString, CompoundSet<NucleotideCompound> compoundSet) Create a RNA sequence from a string with a user defined RNA compound setRNASequence
(ProxySequenceReader<NucleotideCompound> proxyLoader, CompoundSet<NucleotideCompound> compoundSet) Create a RNA sequence from a proxy reader and user defined RNA compound set -
Uses of CompoundSet in org.biojava3.core.sequence.compound
Modifier and TypeClassDescriptionclass
class
class
Set of proteinogenic amino acids.class
class
ModifierConstructorDescriptionNucleotideCompound
(String base, CompoundSet<NucleotideCompound> compoundSet, String complementStr) NucleotideCompound
(String base, CompoundSet<NucleotideCompound> compoundSet, String complementStr, NucleotideCompound[] constituents) -
Uses of CompoundSet in org.biojava3.core.sequence.io
Modifier and TypeMethodDescriptionIUPACParser.IUPACTable.getCodonCompoundSet
(CompoundSet<NucleotideCompound> rnaCompounds, CompoundSet<AminoAcidCompound> aminoAcidCompounds) Returns the compound set of codonsModifier and TypeMethodDescriptionIUPACParser.IUPACTable.getCodonCompoundSet
(CompoundSet<NucleotideCompound> rnaCompounds, CompoundSet<AminoAcidCompound> aminoAcidCompounds) Returns the compound set of codonsIUPACParser.IUPACTable.getCodons
(CompoundSet<NucleotideCompound> nucelotides, CompoundSet<AminoAcidCompound> aminoAcids) Returns a list of codons where the source and target compounds are the same as those given by the parameters.ModifierConstructorDescriptionCasePreservingProteinSequenceCreator
(CompoundSet<AminoAcidCompound> compoundSet) DNASequenceCreator
(CompoundSet<NucleotideCompound> compoundSet) FileProxyDNASequenceCreator
(File fastaFile, CompoundSet<NucleotideCompound> compoundSet) Need File so that we can store full path name in SequenceFileProxyLoader for Random File access as a quick readFileProxyProteinSequenceCreator
(File fastaFile, CompoundSet<AminoAcidCompound> compoundSet) Need File so that we can store full path name in SequenceFileProxyLoader for Random File access as a quick readProteinSequenceCreator
(CompoundSet<AminoAcidCompound> compoundSet) RNASequenceCreator
(CompoundSet<NucleotideCompound> compoundSet) -
Uses of CompoundSet in org.biojava3.core.sequence.io.util
-
Uses of CompoundSet in org.biojava3.core.sequence.loader
Modifier and TypeMethodDescriptionSequenceFileProxyLoader.getCompoundSet()
StringProxySequenceReader.getCompoundSet()
UniprotProxySequenceReader.getCompoundSet()
Modifier and TypeMethodDescriptionvoid
SequenceFileProxyLoader.setCompoundSet
(CompoundSet<C> compoundSet) void
StringProxySequenceReader.setCompoundSet
(CompoundSet<C> compoundSet) void
UniprotProxySequenceReader.setCompoundSet
(CompoundSet<C> compoundSet) ModifierConstructorDescriptionSequenceFileProxyLoader
(File file, SequenceParserInterface sequenceParser, long sequenceStartIndex, int sequenceLength, CompoundSet<C> compoundSet) StringProxySequenceReader
(String sequence, CompoundSet<C> compoundSet) UniprotProxySequenceReader
(String accession, CompoundSet<C> compoundSet) The uniprot id is used to retrieve the uniprot XML which is then parsed as a DOM object so we know everything about the protein. -
Uses of CompoundSet in org.biojava3.core.sequence.storage
Modifier and TypeMethodDescriptionArrayListSequenceReader.getCompoundSet()
BitSequenceReader.BitArrayWorker.getCompoundSet()
Returns the compound set backing this storeBitSequenceReader.getCompoundSet()
Returns the compound set backing this storeJoiningSequenceReader.getCompoundSet()
SingleCompoundSequenceReader.getCompoundSet()
Returns the compound set given at constructionModifier and TypeMethodDescriptionSequenceAsStringHelper.getSequenceAsString
(List<C> parsedCompounds, CompoundSet<C> compoundSet, Integer bioBegin, Integer bioEnd, Strand strand) void
ArrayListSequenceReader.setCompoundSet
(CompoundSet<C> compoundSet) void
BitSequenceReader.setCompoundSet
(CompoundSet<C> compoundSet) Class is immutable & so this is unsupportedvoid
JoiningSequenceReader.setCompoundSet
(CompoundSet<C> compoundSet) void
SingleCompoundSequenceReader.setCompoundSet
(CompoundSet<C> compoundSet) UnsupportedModifierConstructorDescriptionArrayListSequenceReader
(String sequence, CompoundSet<C> compoundSet) ArrayListSequenceReader
(List<C> compounds, CompoundSet<C> compoundSet) BitArrayWorker
(String sequence, CompoundSet<C> compoundSet) BitArrayWorker
(CompoundSet<C> compoundSet, int length) BitArrayWorker
(CompoundSet<C> compoundSet, int[] sequence) FourBitArrayWorker
(String sequence, CompoundSet<C> compoundSet) FourBitArrayWorker
(CompoundSet<C> compoundSet, int length) FourBitArrayWorker
(CompoundSet<C> compoundSet, int[] sequence) FourBitSequenceReader
(String sequence, CompoundSet<C> compoundSet) FourBitSequenceReader
(String sequence, CompoundSet<C> compoundSet, AccessionID accession) JoiningSequenceReader
(CompoundSet<C> compoundSet, List<Sequence<C>> sequences) JoiningSequenceReader
(CompoundSet<C> compoundSet, Sequence<C>... sequences) SingleCompoundSequenceReader
(C compound, CompoundSet<C> compoundSet, int length) Build the object with a compound rather than a StringSingleCompoundSequenceReader
(String compound, CompoundSet<C> compoundSet, int length) Public constructor to be used with String based constructorTwoBitArrayWorker
(String sequence, CompoundSet<C> compoundSet) TwoBitArrayWorker
(CompoundSet<C> compoundSet, int length) TwoBitArrayWorker
(CompoundSet<C> compoundSet, int[] sequence) TwoBitSequenceReader
(String sequence, CompoundSet<C> compoundSet) TwoBitSequenceReader
(String sequence, CompoundSet<C> compoundSet, AccessionID accession) -
Uses of CompoundSet in org.biojava3.core.sequence.template
Modifier and TypeClassDescriptionclass
AbstractCompoundSet<C extends Compound>
class
AbstractNucleotideCompoundSet<C extends NucleotideCompound>
Modifier and TypeMethodDescriptionAbstractSequence.getCompoundSet()
LightweightProfile.getCompoundSet()
ReturnsCompoundSet
of allSequence
sSequence.getCompoundSet()
Gets the compound set used to back this SequenceSequenceProxyView.getCompoundSet()
AbstractCompoundTranslator.getFromCompoundSet()
AbstractCompoundTranslator.getToCompoundSet()
Modifier and TypeMethodDescriptionvoid
AbstractSequence.setCompoundSet
(CompoundSet<C> compoundSet) void
SequenceReader.setCompoundSet
(CompoundSet<C> compoundSet) ModifierConstructorDescriptionAbstractCompoundTranslator
(SequenceCreatorInterface<T> creator, CompoundSet<F> fromCompoundSet, CompoundSet<T> toCompoundSet) AbstractSequence
(String seqString, CompoundSet<C> compoundSet) Create a Sequence from a simple string where the values should be found in compoundSetAbstractSequence
(SequenceReader<C> proxyLoader, CompoundSet<C> compoundSet) A ProxySequenceReader allows abstraction of both the storage of the sequence data and the location of the sequence data. -
Uses of CompoundSet in org.biojava3.core.sequence.transcription
Modifier and TypeMethodDescriptionTranscriptionEngine.getAminoAcidCompounds()
Table.getCodonCompoundSet
(CompoundSet<NucleotideCompound> rnaCompounds, CompoundSet<AminoAcidCompound> aminoAcidCompounds) TranscriptionEngine.getDnaCompounds()
TranscriptionEngine.getRnaCompounds()
Modifier and TypeMethodDescriptionTranscriptionEngine.Builder.aminoAcidsCompounds
(CompoundSet<AminoAcidCompound> compounds) TranscriptionEngine.Builder.dnaCompounds
(CompoundSet<NucleotideCompound> compounds) Table.getCodonCompoundSet
(CompoundSet<NucleotideCompound> rnaCompounds, CompoundSet<AminoAcidCompound> aminoAcidCompounds) Table.getCodons
(CompoundSet<NucleotideCompound> nucelotides, CompoundSet<AminoAcidCompound> aminoAcids) TranscriptionEngine.Builder.rnaCompounds
(CompoundSet<NucleotideCompound> compounds) ModifierConstructorDescriptionDNAToRNATranslator
(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) -
Uses of CompoundSet in org.biojava3.core.sequence.views
Modifier and TypeMethodDescriptionvoid
RnaSequenceView.setCompoundSet
(CompoundSet<NucleotideCompound> compoundSet) ModifierConstructorDescriptionRnaSequenceView
(Sequence<NucleotideCompound> sourceDna, CompoundSet<NucleotideCompound> rnaCompounds)