forked from popsim-consortium/stdpopsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_PhoSin.py
95 lines (81 loc) · 2.47 KB
/
test_PhoSin.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import pytest
import stdpopsim
from tests import test_species
class TestSpeciesData(test_species.SpeciesTestBase):
species = stdpopsim.get_species("PhoSin")
def test_ensembl_id(self):
assert self.species.ensembl_id == "phocoena_sinus"
def test_name(self):
assert self.species.name == "Phocoena sinus"
def test_common_name(self):
assert self.species.common_name == "Vaquita"
# QC Tests. These tests are performed by another contributor
# independently referring to the citations provided in the
# species definition, filling in the appropriate values
# and deleting the pytest "skip" annotations.
def test_qc_population_size(self):
assert self.species.population_size == 3500
def test_qc_generation_time(self):
assert self.species.generation_time == 11.9
class TestGenomeData(test_species.GenomeTestBase):
genome = stdpopsim.get_species("PhoSin").genome
@pytest.mark.parametrize(
["name", "rate"],
{
"1": 1e-8,
"2": 1e-8,
"3": 1e-8,
"4": 1e-8,
"5": 1e-8,
"6": 1e-8,
"7": 1e-8,
"8": 1e-8,
"9": 1e-8,
"10": 1e-8,
"11": 1e-8,
"12": 1e-8,
"13": 1e-8,
"14": 1e-8,
"15": 1e-8,
"16": 1e-8,
"17": 1e-8,
"18": 1e-8,
"19": 1e-8,
"20": 1e-8,
"21": 1e-8,
"X": 1e-8,
}.items(),
)
def test_recombination_rate(self, name, rate):
assert rate == pytest.approx(
self.genome.get_chromosome(name).recombination_rate
)
@pytest.mark.parametrize(
["name", "rate"],
{
"1": 5.83e-9,
"2": 5.83e-9,
"3": 5.83e-9,
"4": 5.83e-9,
"5": 5.83e-9,
"6": 5.83e-9,
"7": 5.83e-9,
"8": 5.83e-9,
"9": 5.83e-9,
"10": 5.83e-9,
"11": 5.83e-9,
"12": 5.83e-9,
"13": 5.83e-9,
"14": 5.83e-9,
"15": 5.83e-9,
"16": 5.83e-9,
"17": 5.83e-9,
"18": 5.83e-9,
"19": 5.83e-9,
"20": 5.83e-9,
"21": 5.83e-9,
"X": 5.83e-9,
}.items(),
)
def test_mutation_rate(self, name, rate):
assert rate == pytest.approx(self.genome.get_chromosome(name).mutation_rate)