convertOneToThree static method

String? convertOneToThree(
  1. String oneLetterNotation
)

(en) Convert one-letter notation to three-letter notation.

(ja) 1文字表記のアミノ酸名から3文字表記に変換します。

Implementation

static String? convertOneToThree(String oneLetterNotation) {
  return FAminoAcid.oneToThree[oneLetterNotation];
}