diff options
Diffstat (limited to 'scripts/rqtl2/install_phenos.py')
-rw-r--r-- | scripts/rqtl2/install_phenos.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/rqtl2/install_phenos.py b/scripts/rqtl2/install_phenos.py index a6cdacc..95745d7 100644 --- a/scripts/rqtl2/install_phenos.py +++ b/scripts/rqtl2/install_phenos.py @@ -14,6 +14,7 @@ from scripts.rqtl2.cli_parser import add_common_arguments from scripts.cli_parser import init_cli_parser, add_global_data_arguments from r_qtl import r_qtl2 as rqtl2 +from r_qtl import r_qtl2_qc as rqc from functional_tools import take @@ -102,7 +103,7 @@ def install_pheno_files(#pylint: disable=[too-many-arguments, too-many-locals] """Load data in `pheno` files and other related files into the database.""" with ZipFile(str(rqtl2bundle), "r") as zfile: try: - rqtl2.validate_bundle(zfile) + rqc.validate_bundle(zfile) logger.info("R/qtl2 bundle validated successfully.") cdata = rqtl2.control_data(zfile) |