From a4313e2cc0f8548946186838a4ce67e358e46bbe Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 10 Jan 2024 08:00:25 +0300 Subject: Provide convenience functions to avoid subtle call errors --- scripts/rqtl2/install_genotypes.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/rqtl2/install_genotypes.py b/scripts/rqtl2/install_genotypes.py index a555d46..6ae3788 100644 --- a/scripts/rqtl2/install_genotypes.py +++ b/scripts/rqtl2/install_genotypes.py @@ -132,11 +132,7 @@ def install_genotypes(dbconn: mdb.Connection, logger.info(("Loading genotypes. This could take a while. " "Please be patient.")) - cdata = rqtl2.control_data(zfile) - genotypes = rqtl2.file_data(zfile, - "geno", - cdata, - rqtl2.make_process_data_geno(cdata)) + genotypes = rqtl2.genotype_data(zfile) while True: batch = tuple(take(genotypes, 5000)) if len(batch) == 0: -- cgit v1.2.3