-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
563 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/fluhus/biostuff | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/fluhus/gostuff v0.4.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
// Functions for amino acids. | ||
|
||
package sequtil | ||
|
||
import ( | ||
"fmt" | ||
) | ||
|
||
const ( | ||
// AminoAcids holds the single-letter amino acid symbols. | ||
// These are the valid inputs to AminoName. | ||
AminoAcids = "ABCDEFGHIKLMNPQRSTVWXYZ*" | ||
) | ||
|
||
// Translate translates the nucleotides in src to amino acids, appends the result to | ||
// dst and returns the new slice. Nucleotides should be in "aAcCgGtT". Length of src | ||
// should be a multiple of 3. | ||
func Translate(dst, src []byte) []byte { | ||
if len(src)%3 != 0 { | ||
panic(fmt.Sprintf("length of src should be a multiple of 3, got %v", | ||
len(src))) | ||
} | ||
var buf [3]byte | ||
for i := 0; i < len(src); i += 3 { | ||
copy(buf[:], src[i:i+3]) | ||
for j := range buf { | ||
if buf[j] >= 'a' { | ||
buf[j] -= 'a' - 'A' | ||
} | ||
} | ||
aa := codonToAmino[buf] | ||
if aa == 0 { | ||
panic(fmt.Sprintf("bad codon at position %v: %q", i, src[i:i+3])) | ||
} | ||
dst = append(dst, aa) | ||
} | ||
return dst | ||
} | ||
|
||
// TranslateReadingFrames returns the translation of the 3 reading frames of seq. | ||
// Nucleotides should be in "aAcCgGtT". seq can be of any length. | ||
func TranslateReadingFrames(seq []byte) [3][]byte { | ||
var result [3][]byte | ||
for i := 0; i < 3; i++ { | ||
sub := seq[i:] | ||
sub = sub[:len(sub)/3*3] | ||
result[i] = Translate(nil, sub) | ||
} | ||
return result | ||
} | ||
|
||
// AminoName returns the 3-letter code and the full name of the amino acid with the | ||
// given letter. Input may be uppercase or lowercase. | ||
func AminoName(aa byte) (string, string) { | ||
if aa >= 'a' && aa <= 'z' { | ||
aa -= 'a' - 'A' | ||
} | ||
names, ok := aminoToName[aa] | ||
if !ok { | ||
panic(fmt.Sprintf("bad amino acid code: '%c'", aa)) | ||
} | ||
return names[0], names[1] | ||
} | ||
|
||
var codonToAmino = map[[3]byte]byte{ | ||
{'A', 'A', 'A'}: 'K', | ||
{'A', 'A', 'C'}: 'N', | ||
{'A', 'A', 'G'}: 'K', | ||
{'A', 'A', 'T'}: 'N', | ||
{'A', 'C', 'A'}: 'T', | ||
{'A', 'C', 'C'}: 'T', | ||
{'A', 'C', 'G'}: 'T', | ||
{'A', 'C', 'T'}: 'T', | ||
{'A', 'G', 'A'}: 'R', | ||
{'A', 'G', 'C'}: 'S', | ||
{'A', 'G', 'G'}: 'R', | ||
{'A', 'G', 'T'}: 'S', | ||
{'A', 'T', 'A'}: 'I', | ||
{'A', 'T', 'C'}: 'I', | ||
{'A', 'T', 'G'}: 'M', | ||
{'A', 'T', 'T'}: 'I', | ||
{'C', 'A', 'A'}: 'Q', | ||
{'C', 'A', 'C'}: 'H', | ||
{'C', 'A', 'G'}: 'Q', | ||
{'C', 'A', 'T'}: 'H', | ||
{'C', 'C', 'A'}: 'P', | ||
{'C', 'C', 'C'}: 'P', | ||
{'C', 'C', 'G'}: 'P', | ||
{'C', 'C', 'T'}: 'P', | ||
{'C', 'G', 'A'}: 'R', | ||
{'C', 'G', 'C'}: 'R', | ||
{'C', 'G', 'G'}: 'R', | ||
{'C', 'G', 'T'}: 'R', | ||
{'C', 'T', 'A'}: 'L', | ||
{'C', 'T', 'C'}: 'L', | ||
{'C', 'T', 'G'}: 'L', | ||
{'C', 'T', 'T'}: 'L', | ||
{'G', 'A', 'A'}: 'E', | ||
{'G', 'A', 'C'}: 'D', | ||
{'G', 'A', 'G'}: 'E', | ||
{'G', 'A', 'T'}: 'D', | ||
{'G', 'C', 'A'}: 'A', | ||
{'G', 'C', 'C'}: 'A', | ||
{'G', 'C', 'G'}: 'A', | ||
{'G', 'C', 'T'}: 'A', | ||
{'G', 'G', 'A'}: 'G', | ||
{'G', 'G', 'C'}: 'G', | ||
{'G', 'G', 'G'}: 'G', | ||
{'G', 'G', 'T'}: 'G', | ||
{'G', 'T', 'A'}: 'V', | ||
{'G', 'T', 'C'}: 'V', | ||
{'G', 'T', 'G'}: 'V', | ||
{'G', 'T', 'T'}: 'V', | ||
{'T', 'A', 'A'}: '*', | ||
{'T', 'A', 'C'}: 'Y', | ||
{'T', 'A', 'G'}: '*', | ||
{'T', 'A', 'T'}: 'Y', | ||
{'T', 'C', 'A'}: 'S', | ||
{'T', 'C', 'C'}: 'S', | ||
{'T', 'C', 'G'}: 'S', | ||
{'T', 'C', 'T'}: 'S', | ||
{'T', 'G', 'A'}: '*', | ||
{'T', 'G', 'C'}: 'C', | ||
{'T', 'G', 'G'}: 'W', | ||
{'T', 'G', 'T'}: 'C', | ||
{'T', 'T', 'A'}: 'L', | ||
{'T', 'T', 'C'}: 'F', | ||
{'T', 'T', 'G'}: 'L', | ||
{'T', 'T', 'T'}: 'F', | ||
} | ||
|
||
var aminoToName = map[byte][2]string{ | ||
'A': {"Ala", "Alanine"}, | ||
'B': {"Asx", "Asparagine"}, | ||
'C': {"Cys", "Cysteine"}, | ||
'D': {"Asp", "Aspartic"}, | ||
'E': {"Glu", "Glutamic"}, | ||
'F': {"Phe", "Phenylalanine"}, | ||
'G': {"Gly", "Glycine"}, | ||
'H': {"His", "Histidine"}, | ||
'I': {"Ile", "Isoleucine"}, | ||
'K': {"Lys", "Lysine"}, | ||
'L': {"Leu", "Leucine"}, | ||
'M': {"Met", "Methionine"}, | ||
'N': {"Asn", "Asparagine"}, | ||
'P': {"Pro", "Proline"}, | ||
'Q': {"Gln", "Glutamine"}, | ||
'R': {"Arg", "Arginine"}, | ||
'S': {"Ser", "Serine"}, | ||
'T': {"Thr", "Threonine"}, | ||
'V': {"Val", "Valine"}, | ||
'W': {"Trp", "Tryptophan"}, | ||
'X': {"X", "Any codon"}, | ||
'Y': {"Tyr", "Tyrosine"}, | ||
'Z': {"Glx", "Glutamine"}, | ||
'*': {"*", "Stop codon"}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package sequtil | ||
|
||
import ( | ||
"reflect" | ||
"testing" | ||
) | ||
|
||
func TestTranslate(t *testing.T) { | ||
input := "AGAcatTGGgat" | ||
want := "RHWD" | ||
got := Translate(nil, []byte(input)) | ||
if string(got) != want { | ||
t.Fatalf("Translate(%q)=%q, want %q", input, got, want) | ||
} | ||
} | ||
|
||
func TestTranslate_badBase(t *testing.T) { | ||
defer func() { recover() }() | ||
input := "AGAcatTGGgad" | ||
Translate(nil, []byte(input)) | ||
t.Fatalf("Translate(%q) succeeded, want panic", input) | ||
} | ||
|
||
func TestTranslate_badLength(t *testing.T) { | ||
defer func() { recover() }() | ||
input := "AGAcatTGGgatt" | ||
Translate(nil, []byte(input)) | ||
t.Fatalf("Translate(%q) succeeded, want panic", input) | ||
} | ||
|
||
func TestTranslateReadingFrames(t *testing.T) { | ||
input := "AGAcatTGGgat" | ||
want := [3][]byte{[]byte("RHWD"), []byte("DIG"), []byte("TLG")} | ||
if got := TranslateReadingFrames([]byte(input)); !reflect.DeepEqual(got, want) { | ||
t.Fatalf("TranslateReadingFrames(%q)=%v, want %v", input, got, want) | ||
} | ||
} | ||
|
||
func TestAminoName(t *testing.T) { | ||
tests := []struct { | ||
input byte | ||
want1 string | ||
want2 string | ||
}{ | ||
{'H', "His", "Histidine"}, | ||
{'Q', "Gln", "Glutamine"}, | ||
{'h', "His", "Histidine"}, | ||
{'q', "Gln", "Glutamine"}, | ||
{'*', "*", "Stop codon"}, | ||
} | ||
|
||
for _, test := range tests { | ||
got1, got2 := AminoName(test.input) | ||
if got1 != test.want1 || got2 != test.want2 { | ||
t.Fatalf("AminoName('%c')=(%q,%q), want (%q,%q)", | ||
test.input, got1, got2, test.want1, test.want2) | ||
} | ||
} | ||
} | ||
|
||
func TestAminoName_bad(t *testing.T) { | ||
defer func() { recover() }() | ||
AminoName('U') | ||
t.Fatalf("AminoName('U') succeeded, want panic") | ||
} |
Oops, something went wrong.