-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_parse.py
64 lines (52 loc) · 2.15 KB
/
test_parse.py
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
import tempfile
import unittest
from unassigner.parse import parse_fasta, parse_results, load_fasta, write_fasta
class FastaTests(unittest.TestCase):
def test_parse_fasta(self):
res = parse_fasta(
[
">Seq1 abc def\n",
"GGCTGCTATCAG\n",
"CTAGCATCGTCGCATCGAC\n",
">Seq2\n",
"ACGCTAGCTGCAAAA\n",
]
)
self.assertEqual(next(res), ("Seq1 abc def", "GGCTGCTATCAGCTAGCATCGTCGCATCGAC"))
self.assertEqual(next(res), ("Seq2", "ACGCTAGCTGCAAAA"))
self.assertRaises(StopIteration, next, res)
def test_parse_empty_fasta(self):
res = parse_fasta([])
list_res = list(res)
self.assertEqual(list_res, [])
def test_load_fasta(self):
f = tempfile.NamedTemporaryFile(mode="wt", encoding="utf-8")
f.write(">Myseq asdf\n" "GGCTAAGGCCT\n" ">2ndseq *@#\n" "CCCGG\n")
f.seek(0)
self.assertEqual(
load_fasta(f.name), {"Myseq": "GGCTAAGGCCT", "2ndseq": "CCCGG"}
)
def test_write_fasta(self):
f = tempfile.NamedTemporaryFile(mode="w+t", encoding="utf-8")
seqs = [("a", "CCGGT"), ("b", "TTTTTTTTT")]
write_fasta(f, seqs)
f.seek(0)
self.assertEqual(f.read(), ">a\nCCGGT\n>b\nTTTTTTTTT\n")
class ResultsTests(unittest.TestCase):
def test_parse_results(self):
results = [
"query_id\tspecies\ttypestrain_id\tregion_mismatches\tregion_positions\tprobability_incompatible\n",
"Seq1\tA\tB\t1\t2\t0.5\n",
"Seq1\tC\tD\t3\t1500\t-2.062794379753541e-12\n",
"Seq2\tNA\tNA\tNA\tNA\tNA\n",
]
with tempfile.NamedTemporaryFile(mode="w+t", encoding="utf-8") as f:
f.writelines(results)
f.seek(0)
content = list(parse_results((l for l in f.readlines())))
self.assertEqual(content[0]["query_id"], "Seq1")
self.assertEqual(content[2]["species"], "NA")
self.assertEqual(content[2]["region_mismatches"], None)
self.assertEqual(content[2]["probability_incompatible"], None)
if __name__ == "__main__":
unittest.main()