diff options
author | zsloan | 2022-08-31 18:16:26 +0000 |
---|---|---|
committer | zsloan | 2022-08-31 18:16:44 +0000 |
commit | 58fc24b17e2f3dc326e7e764df0c31c53292b9e1 (patch) | |
tree | 74c2fc005025c951a74cd815815ef70845a0b016 /wqflask | |
parent | d1ba4d3a6bd007c1c504c9ff1957efc6672fd139 (diff) | |
download | genenetwork2-58fc24b17e2f3dc326e7e764df0c31c53292b9e1.tar.gz |
Fix failing api/test_mapping.py test
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/tests/unit/wqflask/api/test_mapping.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/wqflask/tests/unit/wqflask/api/test_mapping.py b/wqflask/tests/unit/wqflask/api/test_mapping.py index 159c982b..3b21b98c 100644 --- a/wqflask/tests/unit/wqflask/api/test_mapping.py +++ b/wqflask/tests/unit/wqflask/api/test_mapping.py @@ -25,7 +25,8 @@ class TestMapping(unittest.TestCase): "maf": 0.01, "use_loco": True, "num_perm": 0, - "perm_check": False + "perm_check": False, + "genofile": False } results = initialize_parameters( @@ -40,8 +41,8 @@ class TestMapping(unittest.TestCase): "pair_scan": "true", "interval_mapping": "true", "use_loco": "true", - "num_perm": "14" - + "num_perm": "14", + "genofile": "BXD.8.geno" } results_2 = initialize_parameters( @@ -53,7 +54,8 @@ class TestMapping(unittest.TestCase): "maf": 0.01, "use_loco": True, "num_perm": 14, - "perm_check": "ON" + "perm_check": "ON", + "genofile": "BXD.8.geno" } self.assertEqual(results_2, expected_results) |