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
|
"""Test parsing of 'covar' files."""
from pathlib import Path
import pytest
from zipfile import ZipFile
from r_qtl import r_qtl2 as rqtl2
@pytest.mark.unit_test
@pytest.mark.parametrize(
"filepath,expected",
(("tests/r_qtl/test_files/test_covar.zip",
({"id": "1", "sex": "m", "cross_direction": "(BxS)x(BxS)"},
{"id": "2", "sex": "m", "cross_direction": "(BxS)x(BxS)"},
{"id": "3", "sex": "m", "cross_direction": "(BxS)x(BxS)"},
{"id": "146", "sex": "f", "cross_direction": "(BxS)x(BxS)"},
{"id": "147", "sex": "f", "cross_direction": "(BxS)x(BxS)"},
{"id": "148", "sex": "f", "cross_direction": "(BxS)x(BxS)"})),
("tests/r_qtl/test_files/test_covar_transposed.zip",
({"id": "1", "sex": "m", "cross_direction": "(BxS)x(BxS)"},
{"id": "2", "sex": "m", "cross_direction": "(BxS)x(BxS)"},
{"id": "3", "sex": "m", "cross_direction": "(BxS)x(BxS)"},
{"id": "146", "sex": "f", "cross_direction": "(BxS)x(BxS)"},
{"id": "147", "sex": "f", "cross_direction": "(BxS)x(BxS)"},
{"id": "148", "sex": "f", "cross_direction": "(BxS)x(BxS)"})),
))
def test_parse_covar_files(filepath, expected):
"""Test parsing of 'covar' files from the R/qtl2 bundle.
GIVEN: path to a R/qtl2 bundle
WHEN: the 'covar' file is parsed
THEN: verify the parsed data is as expected
"""
with ZipFile(Path(filepath).absolute(), "r") as zfile:
cdata = rqtl2.control_data(zfile)
assert tuple(rqtl2.file_data(zfile, "covar", cdata)) == expected
|