convertOneToFull static method

String? convertOneToFull(
  1. String oneLetterNotation
)

(en) Convert one-letter notation to full name.

(ja) 1文字表記のアミノ酸名からフルネームに変換します。

Implementation

static String? convertOneToFull(String oneLetterNotation) {
  return FAminoAcid.oneToFull[oneLetterNotation];
}