diff options
author | zsloan | 2022-08-31 19:19:14 +0000 |
---|---|---|
committer | zsloan | 2022-08-31 19:19:14 +0000 |
commit | ff4185334ddc5e6e32fdb1bf44ad6ea9065b0e01 (patch) | |
tree | 408cc96e270f996c3e8a658b335fd89c6ddb81a1 | |
parent | 5ec98f87f56a781b814abc05d9de6f1fe8d0c7ac (diff) | |
download | genenetwork2-ff4185334ddc5e6e32fdb1bf44ad6ea9065b0e01.tar.gz |
Add transform parameter to mapping api unit test
-rw-r--r-- | wqflask/tests/unit/wqflask/api/test_mapping.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wqflask/tests/unit/wqflask/api/test_mapping.py b/wqflask/tests/unit/wqflask/api/test_mapping.py index 3b21b98c..006e9826 100644 --- a/wqflask/tests/unit/wqflask/api/test_mapping.py +++ b/wqflask/tests/unit/wqflask/api/test_mapping.py @@ -26,6 +26,7 @@ class TestMapping(unittest.TestCase): "use_loco": True, "num_perm": 0, "perm_check": False, + "transform": False, "genofile": False } @@ -42,6 +43,7 @@ class TestMapping(unittest.TestCase): "interval_mapping": "true", "use_loco": "true", "num_perm": "14", + "transform": "qnorm", "genofile": "BXD.8.geno" } @@ -55,6 +57,7 @@ class TestMapping(unittest.TestCase): "use_loco": True, "num_perm": 14, "perm_check": "ON", + "transform": "qnorm", "genofile": "BXD.8.geno" } |