-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprotein-translation.spec.js
59 lines (45 loc) · 1.78 KB
/
protein-translation.spec.js
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
import translate from './protein-translation';
describe('ProteinTranslation', () => {
test('Empty RNA has no proteins', () => {
expect(translate()).toEqual([]);
});
test('Methionine codon translates into protein', () => {
expect(translate('AUG')).toEqual(['Methionine']);
});
test('Phenylalanine codons translate into protein', () => {
expect(translate('UUUUUC')).toEqual(['Phenylalanine', 'Phenylalanine']);
});
test('Leucine codons translate into protein', () => {
expect(translate('UUAUUG')).toEqual(['Leucine', 'Leucine']);
});
test('Serine codons translate into protein', () => {
expect(translate('UCUUCCUCAUCG')).toEqual(['Serine', 'Serine', 'Serine', 'Serine']);
});
test('Tyrosine codons translate into protein', () => {
expect(translate('UAUUAC')).toEqual(['Tyrosine', 'Tyrosine']);
});
test('Cysteine codons translate into protein', () => {
expect(translate('UGUUGC')).toEqual(['Cysteine', 'Cysteine']);
});
test('Tryptophan codon translates into protein', () => {
expect(translate('UGG')).toEqual(['Tryptophan']);
});
test('Sequence starts with stop codon 1', () => {
expect(translate('UAAUUUUUA')).toEqual([]);
});
test('Sequence starts with stop codon 2', () => {
expect(translate('UAGAUGUAU')).toEqual([]);
});
test('Sequence starts with stop codon 3', () => {
expect(translate('UGAUGU')).toEqual([]);
});
test('Small RNA strand', () => {
expect(translate('AUGUUUUCU')).toEqual(['Methionine', 'Phenylalanine', 'Serine']);
});
test('Stop codon ends translation', () => {
expect(translate('AUGUUUUCUUAAAUG')).toEqual(['Methionine', 'Phenylalanine', 'Serine']);
});
test('Invalid codon throws error', () => {
expect(() => translate('LOL')).toThrow(new Error('Invalid codon'));
});
});