-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample_strands.txt
72 lines (62 loc) · 2.62 KB
/
sample_strands.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Sample: TACATT
Output:
UAA STOP codon found
The mRNA strand is: AUGUAA
The codons are: ['AUG', 'UAA']
There are 2 amino acids translated from this mRNA strand.
['Methionine', 'STOP']
Working as intended?: Yes.
Sample: TACATGATT
Output:
UAA STOP codon found
The mRNA strand is: AUGUACUAA
The codons are: ['AUG', 'UAC', 'UAA']
There are 3 amino acids translated from this mRNA strand.
['Methionine', 'Tyrosine', 'STOP']
Working as intended?: Yes.
Sample: TACATGCCAATT
Output:
UAA STOP codon found
The mRNA strand is: AUGUACGGUUAA
The codons are: ['AUG', 'UAC', 'GGU', 'UAA']
There are 4 amino acids translated from this mRNA strand.
['Methionine', 'Tyrosine', 'Glycine', 'STOP']
Working as intended?: Yes.
Sample: ATACATGCCAGTCATCGTTATTC
Output:
UAG STOP codon found
The codons are: ['AUG', 'UAC', 'GGU', 'CAG', 'UAG']
There are 5 amino acids translated from this mRNA strand.
['Methionine', 'Tyrosine', 'Glycine', 'Glutamine', 'STOP']
Working as intended?: Yes. Issue fixed.
Sample: TACATGCCATACGAGACGATT
Output:
UAA STOP codon found
The mRNA strand is: AUGUACGGUAUGCUCUGCUAA
The codons are: ['AUG', 'UAC', 'GGU', 'AUG', 'CUC', 'UGC', 'UAA']
There are 7 amino acids translated from this mRNA strand.
['Methionine', 'Tyrosine', 'Glycine', 'Methionine', 'Leucine', 'Cysteine', 'STOP']
Working as intended?: Yes.
Sample: TACATGCCATACGAGACGAGCGCGCCTAAGCGGATT
Output:
UAA STOP codon found
The mRNA strand is: AUGUACGGUAUGCUCUGCUCGCGCGGAUUCGCCUAA
The codons are: ['AUG', 'UAC', 'GGU', 'AUG', 'CUC', 'UGC', 'UCG', 'CGC', 'GGA', 'UUC', 'GCC', 'UAA']
There are 12 amino acids translated from this mRNA strand.
['Methionine', 'Tyrosine', 'Glycine', 'Methionine', 'Leucine', 'Cysteine', 'Serine', 'Arginine', 'Glycine', 'Phenylalanine', 'Alanine', 'STOP']
Working as intended?: Yes.
Sample: TACATGCCATACGAGACGAGCGCGCCTAAGCGGCGCAGACTCATGGTCATT
Output:
UAA STOP codon found
The mRNA strand is: AUGUACGGUAUGCUCUGCUCGCGCGGAUUCGCCGCGUCUGAGUACCAGUAA
The codons are: ['AUG', 'UAC', 'GGU', 'AUG', 'CUC', 'UGC', 'UCG', 'CGC', 'GGA', 'UUC', 'GCC', 'GCG', 'UCU', 'GAG', 'UAC', 'CAG', 'UAA']
There are 17 amino acids translated from this mRNA strand.
['Methionine', 'Tyrosine', 'Glycine', 'Methionine', 'Leucine', 'Cysteine', 'Serine', 'Arginine', 'Glycine', 'Phenylalanine', 'Alanine', 'Alanine', 'Serine', 'Glutamic Acid', 'Tyrosine', 'Glutamine', 'STOP']
Working as intended?: Yes.
Sample: TACAGGCCTTAGATCGTCATGCCATACGAGACGAGCGCGCCTAAGCGGCGCAGACTCATGGTCATT
Output:
UAG STOP codon found
The codons are: ['AUG', 'UCC', 'GGA', 'AUC', 'UAG']
There are 5 amino acids translated from this mRNA strand.
['Methionine', 'Serine', 'Glycine', 'Isoleucine', 'STOP']
Working as intended?: Yes. Issue fixed.