This commit is contained in:
Anthony 2018-01-25 15:08:41 -06:00
Родитель 649da1a5e5
Коммит 59f183a6c7
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -64,12 +64,12 @@ namespace Bio
private readonly Dictionary<byte, byte> aminoAcidValueMap = new Dictionary<byte, byte>();
/// <summary>
/// Symbol to three amino acid abbreviation.
/// Symbol to three-letter amino acid abbreviation.
/// </summary>
private readonly Dictionary<byte, string> abbreviationMap1to3 = new Dictionary<byte, string>();
/// <summary>
/// Symbol to three amino acid abbreviation.
/// Three-letter amino acid abbreviation to symbol.
/// </summary>
private readonly Dictionary<string, byte> abbreviationMap3to1 = new Dictionary<string, byte>();