diff options
author | Pjotr Prins | 2019-02-13 12:41:45 +0000 |
---|---|---|
committer | Pjotr Prins | 2019-02-13 12:41:45 +0000 |
commit | 61c13a09dba95958f183dc55f3d59c8856b5f753 (patch) | |
tree | b2236491a4092e37ac8f861b72c70906229ed11e /test/requests | |
parent | ba293fa4244bf22e6167679f5ff90a230ea7b526 (diff) | |
download | genenetwork2-61c13a09dba95958f183dc55f3d59c8856b5f753.tar.gz |
Removed pylmm references and related functions
Diffstat (limited to 'test/requests')
-rw-r--r-- | test/requests/mapping_tests.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/requests/mapping_tests.py b/test/requests/mapping_tests.py index 8eb19de7..6de81bfe 100644 --- a/test/requests/mapping_tests.py +++ b/test/requests/mapping_tests.py @@ -11,16 +11,6 @@ def load_data_from_file(): file_data = json.loads(file_handle.read().encode("utf-8")) return file_data -def check_pylmm_tool_selection(host, data): - print("") - print("pylmm mapping tool selection") - data["method"] = "pylmm" - page = requests.post(host+"/marker_regression", data=data) - doc = fromstring(page.text) - form = doc.forms[1] - assert form.fields["dataset"] == "HC_M2_0606_P" - assert form.fields["value:BXD1"] == "15.034" # Check value in the file - def check_R_qtl_tool_selection(host, data): print("") print("R/qtl mapping tool selection") |