convertThreeToOne static method

String? convertThreeToOne(
  1. String threeLetterNotation
)

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

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

Implementation

static String? convertThreeToOne(String threeLetterNotation) {
  return FAminoAcid.threeToOne[threeLetterNotation];
}