diff options
author | BonfaceKilz | 2021-10-05 11:07:09 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-10-06 11:58:14 +0300 |
commit | 2236508f24c8c266a6a9dff28a1307bb3d0dd31e (patch) | |
tree | a6d7675ea5af1d9d6a0cc95f15b9ace4787f7a65 /wqflask/tests/unit | |
parent | 4c6a7e46dd7afe311c0bed38c4a69ddadf3cb416 (diff) | |
download | genenetwork2-2236508f24c8c266a6a9dff28a1307bb3d0dd31e.tar.gz |
tests: test_run_mapping: Add missing positional argument "vals_hash"
Diffstat (limited to 'wqflask/tests/unit')
-rw-r--r-- | wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py b/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py index c220a072..31f56c07 100644 --- a/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py +++ b/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py @@ -181,7 +181,8 @@ class TestRunMapping(unittest.TestCase): with mock.patch("wqflask.marker_regression.run_mapping.datetime.datetime", new=datetime_mock): export_mapping_results(dataset=self.dataset, trait=self.trait, markers=markers, results_path="~/results", mapping_scale="physic", score_type="-log(p)", - transform="qnorm", covariates="Dataset1:Trait1,Dataset2:Trait2", n_samples="100") + transform="qnorm", covariates="Dataset1:Trait1,Dataset2:Trait2", n_samples="100", + vals_hash="") write_calls = [ mock.call('Time/Date: 09/01/19 / 10:12:12\n'), |