forked from popsim-consortium/stdpopsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_HelAnn.py
86 lines (71 loc) · 2.25 KB
/
test_HelAnn.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
import pytest
import stdpopsim
from tests import test_species
class TestSpeciesData(test_species.SpeciesTestBase):
species = stdpopsim.get_species("HelAnn")
def test_ensembl_id(self):
assert self.species.ensembl_id == "helianthus_annuus"
def test_name(self):
assert self.species.name == "Helianthus annuus"
def test_common_name(self):
assert self.species.common_name == "Helianthus annuus"
def test_qc_population_size(self):
assert self.species.population_size == 673968
def test_qc_generation_time(self):
assert self.species.generation_time == 1
class TestGenomeData(test_species.GenomeTestBase):
genome = stdpopsim.get_species("HelAnn").genome
@pytest.mark.parametrize(
["name", "rate"],
{
"1": 0.4e-8,
"2": 0.4e-8,
"3": 0.4e-8,
"4": 0.4e-8,
"5": 0.4e-8,
"6": 0.4e-8,
"7": 0.4e-8,
"8": 0.4e-8,
"9": 0.4e-8,
"10": 0.4e-8,
"11": 0.4e-8,
"12": 0.4e-8,
"13": 0.4e-8,
"14": 0.4e-8,
"15": 0.4e-8,
"16": 0.4e-8,
"17": 0.4e-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": 6.1e-9,
"2": 6.1e-9,
"3": 6.1e-9,
"4": 6.1e-9,
"5": 6.1e-9,
"6": 6.1e-9,
"7": 6.1e-9,
"8": 6.1e-9,
"9": 6.1e-9,
"10": 6.1e-9,
"11": 6.1e-9,
"12": 6.1e-9,
"13": 6.1e-9,
"14": 6.1e-9,
"15": 6.1e-9,
"16": 6.1e-9,
"17": 6.1e-9,
}.items(),
)
def test_mutation_rate(self, name, rate):
assert rate == pytest.approx(self.genome.get_chromosome(name).mutation_rate)
@pytest.mark.parametrize("chrom", [chrom for chrom in genome.chromosomes])
@pytest.mark.filterwarnings("ignore::stdpopsim.NonAutosomalWarning")
def test_chromosome_ploidy(self, chrom):
assert chrom.ploidy == 2