From 3e51fb24fd34bab2164a5f4056bc78d21827ca29 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 3 Jan 2024 16:53:40 +0300 Subject: Use generic parser. Remove obsoleted functions. --- tests/r_qtl/test_r_qtl2_pheno.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/r_qtl/test_r_qtl2_pheno.py') diff --git a/tests/r_qtl/test_r_qtl2_pheno.py b/tests/r_qtl/test_r_qtl2_pheno.py index 554d9c8..46be469 100644 --- a/tests/r_qtl/test_r_qtl2_pheno.py +++ b/tests/r_qtl/test_r_qtl2_pheno.py @@ -29,5 +29,5 @@ def test_parse_pheno_files(filepath, expected): THEN: verify the parsed data is as expected """ with ZipFile(Path(filepath).absolute(), "r") as zfile: - assert tuple( - rqtl2.phenotype_data(zfile, rqtl2.control_data(zfile))) == expected + cdata = rqtl2.control_data(zfile) + assert tuple(rqtl2.file_data(zfile, "pheno", cdata)) == expected -- cgit v1.2.3