Package | Description |
---|---|
org.mathIT.genes |
Provides classes to simulate biological amino acid sequences
and to use the genetic code
|
Modifier and Type | Method and Description |
---|---|
static AminoAcid |
AminoAcid.decode(char symbol)
Returns the amino acid represented by the specified one-letter symbol.
|
static AminoAcid |
AminoAcid.decode(String name)
Returns the amino acid represented by the specified name.
|
AminoAcid |
Codon.encode()
Returns the amino acid which is related to this codon by the genetic code.
|
AminoAcid |
RNACodon.encode()
Returns the amino acid which is related to this codon by the genetic code.
|
AminoAcid |
Codon.getAminoAcid()
Returns the amino acid which is related to this codon by the genetic code.
|
AminoAcid |
RNACodon.getAminoAcid()
Returns the amino acid which is related to this codon by the genetic code.
|
static AminoAcid |
AminoAcid.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AminoAcid[] |
AminoAcid.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Codon |
Codon.decode(AminoAcid aminoAcid)
Returns the codon which is related to the specified amino acid by the genetic code.
|
static RNACodon |
RNACodon.decode(AminoAcid aminoAcid)
Returns the amino acid which is related to this codon by the genetic code.
|