Uses of Class
org.biojava.nbio.core.exceptions.CompoundNotFoundException
Packages that use CompoundNotFoundException
Package
Description
FASTQ and variants sequence format I/O.
Input and Output of Structures
-
Uses of CompoundNotFoundException in demo
Methods in demo that throw CompoundNotFoundException -
Uses of CompoundNotFoundException in org.biojava.nbio.core.sequence
Constructors in org.biojava.nbio.core.sequence that throw CompoundNotFoundExceptionModifierConstructorDescriptionBasicSequence(String sequence, CompoundSet<C> compoundSet) ChromosomeSequence(String seqString) String is king and assume DNAChromosomeSequence(String seqString, CompoundSet<NucleotideCompound> compoundSet) Allows the creation of a ChromosomeSequence using String for the sequence with a custom CompoundSetDNASequence(String seqString) String is king and create a sequence from DNA with default DNA compound setDNASequence(String seqString, CompoundSet<NucleotideCompound> compoundSet) Create a sequence from a string with user defined compound setProteinSequence(String seqString) Create a protein from a stringProteinSequence(String seqString, CompoundSet<AminoAcidCompound> compoundSet) Create a protein from a string with a user defined set of amino acidsRNASequence(String seqString) Create a RNA sequence from a StringRNASequence(String seqString, CompoundSet<NucleotideCompound> compoundSet) Create a RNA sequence from a string with a user defined RNA compound set -
Uses of CompoundNotFoundException in org.biojava.nbio.core.sequence.io
Methods in org.biojava.nbio.core.sequence.io that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionABITrace.getSequence()Returns the original programmatically determined (unedited) sequence as aAbstractSequence<NucleotideCompound>.CasePreservingProteinSequenceCreator.getSequence(String sequence, long index) DNASequenceCreator.getSequence(String sequence, long index) FileProxyDNASequenceCreator.getSequence(String sequence, long index) Even though we are passing in the sequence we really only care about the length of the sequence and the offset index in the fasta file.FileProxyProteinSequenceCreator.getSequence(String sequence, long index) Even though we are passing in the sequence we really only care about the length of the sequence and the offset index in the fasta file.FileProxyRNASequenceCreator.getSequence(String sequence, long index) Even though we are passing in the sequence we really only care about the length of the sequence and the offset index in the fasta file.ProteinSequenceCreator.getSequence(String sequence, long index) RNASequenceCreator.getSequence(String sequence, long index) int[]Returns one of the four traces - all of the y-coordinate values, each of which correspond to a single x-coordinate relative to the position in the array, so that if element 4 in the array is 972, then x is 4 and y is 972 for that point.GenbankReader.process()The parsing is done in this method.
This method will return all the available Genbank records in the File or InputStream, closes the underlying resource, and return the results inLinkedHashMap.
You don't need to callGenbankReader.close()after calling this method.GenbankReader.process(int max) This method tries to parse maximummaxrecords from the open File or InputStream, and leaves the underlying resource open.
Subsequent calls to the same method continue parsing the rest of the file.
This is particularly useful when dealing with very big data files, (e.g. -
Uses of CompoundNotFoundException in org.biojava.nbio.core.sequence.io.template
Methods in org.biojava.nbio.core.sequence.io.template that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionSequenceCreatorInterface.getSequence(String sequence, long index) -
Uses of CompoundNotFoundException in org.biojava.nbio.core.sequence.loader
Methods in org.biojava.nbio.core.sequence.loader that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionvoidSequenceFileProxyLoader.setContents(String sequence) voidStringProxySequenceReader.setContents(String sequence) voidStringProxySequenceReader.setContents(String sequence, List features) voidUniprotProxySequenceReader.setContents(String sequence) Once the sequence is retrieved set the contents and make sure everything this is valid Some uniprot records contain white space in the sequence.Constructors in org.biojava.nbio.core.sequence.loader that throw CompoundNotFoundExceptionModifierConstructorDescriptionGenbankProxySequenceReader(String genbankDirectoryCache, String accessionID, CompoundSet<C> compoundSet) SequenceFileProxyLoader(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.UniprotProxySequenceReader(Document document, CompoundSet<C> compoundSet) The xml is passed in as a DOM object so we know everything about the protein. -
Uses of CompoundNotFoundException in org.biojava.nbio.core.sequence.storage
Methods in org.biojava.nbio.core.sequence.storage that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionvoidArrayListSequenceReader.setContents(String sequence) voidBitSequenceReader.setContents(String sequence) Class is immutable, so this is unsupportedvoidJoiningSequenceReader.setContents(String sequence) voidSingleCompoundSequenceReader.setContents(String sequence) UnsupportedConstructors in org.biojava.nbio.core.sequence.storage that throw CompoundNotFoundExceptionModifierConstructorDescriptionArrayListSequenceReader(String sequence, CompoundSet<C> compoundSet) -
Uses of CompoundNotFoundException in org.biojava.nbio.core.sequence.template
Methods in org.biojava.nbio.core.sequence.template that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionprotected voidAbstractSequence.initSequenceStorage(String seqString) voidSequenceReader.setContents(String sequence) Constructors in org.biojava.nbio.core.sequence.template that throw CompoundNotFoundExceptionModifierConstructorDescriptionAbstractSequence(String seqString, CompoundSet<C> compoundSet) Create a Sequence from a simple string where the values should be found in compoundSet -
Uses of CompoundNotFoundException in org.biojava.nbio.core.sequence.views
Methods in org.biojava.nbio.core.sequence.views that throw CompoundNotFoundException -
Uses of CompoundNotFoundException in org.biojava.nbio.core.util
Methods in org.biojava.nbio.core.util that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionSequence<?> SequenceTools.getSequenceFromString(String sequence) Attempts to parse String as a DNA sequence first.
If this fails it tries to parse as a ProteinSequence. -
Uses of CompoundNotFoundException in org.biojava.nbio.genome.io.fastq
Methods in org.biojava.nbio.genome.io.fastq that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionstatic DNASequenceFastqTools.createDNASequence(Fastq fastq) Create and return a newDNASequencefrom the specified FASTQ formatted sequence.static DNASequenceFastqTools.createDNASequenceWithErrorProbabilities(Fastq fastq) Create and return a newDNASequencewith error probabilities from the specified FASTQ formatted sequence.static DNASequenceFastqTools.createDNASequenceWithQualityScores(Fastq fastq) Create and return a newDNASequencewith quality scores from the specified FASTQ formatted sequence.static DNASequenceFastqTools.createDNASequenceWithQualityScoresAndErrorProbabilities(Fastq fastq) Create and return a newDNASequencewith quality scores and error probabilities from the specified FASTQ formatted sequence. -
Uses of CompoundNotFoundException in org.biojava.nbio.genome.util
Methods in org.biojava.nbio.genome.util that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionstatic ProteinSequenceProteinMappingTools.convertDNAtoProteinSequence(String dnaSequence) Converts the DNA sequence to protein sequence.static ProteinSequenceProteinMappingTools.convertDNAtoProteinSequence(DNASequence dnaSequence) Converts the DNA sequence to protein sequence. -
Uses of CompoundNotFoundException in org.biojava.nbio.structure.align.multiple.util
Methods in org.biojava.nbio.structure.align.multiple.util that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionstatic org.forester.phylogeny.PhylogenyMultipleAlignmentTools.getHSDMTree(MultipleAlignment msta) Calculate a phylogenetic tree of the MultipleAlignment using dissimilarity scores (DS), based in SDM Substitution Matrix (ideal for distantly related proteins, structure-derived) and the Neighbor Joining algorithm from forester.static org.forester.phylogeny.PhylogenyMultipleAlignmentTools.getKimuraTree(MultipleAlignment msta) Calculate a phylogenetic tree of the MultipleAlignment using Kimura distances and the Neighbor Joining algorithm from forester.MultipleAlignmentTools.toProteinMSA(MultipleAlignment msta) Convert a MultipleAlignment into a MultipleSequenceAlignment of AminoAcid residues. -
Uses of CompoundNotFoundException in org.biojava.nbio.structure.cluster
Methods in org.biojava.nbio.structure.cluster that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionSubunit.getProteinSequence()Get the protein sequence of the Subunit.booleanSubunitCluster.mergeSequence(SubunitCluster other, SubunitClustererParameters params) Merges the other SubunitCluster into this one if their representatives sequences are similar (according to the criteria in params).booleanSubunitCluster.mergeSequence(SubunitCluster other, SubunitClustererParameters params, Alignments.PairwiseSequenceAlignerType alignerType, GapPenalty gapPenalty, SubstitutionMatrix<AminoAcidCompound> subsMatrix) Merges the other SubunitCluster into this one if their representatives sequences are similar (according to the criteria in params). -
Uses of CompoundNotFoundException in org.biojava.nbio.structure.io
Methods in org.biojava.nbio.structure.io that throw CompoundNotFoundExceptionModifier and TypeMethodDescriptionstatic AFPChainFastaAFPChainConverter.cpFastaToAfpChain(String first, String second, Structure structure, int cpSite) static AFPChainFastaAFPChainConverter.fastaStringToAfpChain(String sequence1, String sequence2, Structure structure1, Structure structure2) Returns an AFPChain corresponding to the alignment betweenstructure1andstructure2, which is given by the gapped protein sequencessequence1andsequence2.static AFPChainFastaAFPChainConverter.fastaToAfpChain(String sequence1, String sequence2, Structure structure1, Structure structure2) TODO Write comment