aboutsummaryrefslogtreecommitdiff
path: root/tests/r_qtl/test_r_qtl2_geno.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/r_qtl/test_r_qtl2_geno.py')
-rw-r--r--tests/r_qtl/test_r_qtl2_geno.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/r_qtl/test_r_qtl2_geno.py b/tests/r_qtl/test_r_qtl2_geno.py
index 787d13a..c33984e 100644
--- a/tests/r_qtl/test_r_qtl2_geno.py
+++ b/tests/r_qtl/test_r_qtl2_geno.py
@@ -171,8 +171,12 @@ def test_parse_geno_files(relpath, expected):
THEN: ensure that the data we get is as expected
"""
with ZipFile(Path(relpath).absolute(), "r") as zfile:
- assert tuple(
- rqtl2.genotype_data(zfile, rqtl2.control_data(zfile))) == expected
+ cdata = rqtl2.control_data(zfile)
+ assert tuple(rqtl2.file_data(
+ zfile,
+ "geno",
+ cdata,
+ *rqtl2.make_process_data_geno(cdata))) == expected
@pytest.mark.unit_test
@pytest.mark.parametrize(