diff options
author | Frederick Muriuki Muriithi | 2022-01-05 07:37:27 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-01-28 08:07:27 +0300 |
commit | d1a65f4a345d7d890399542a45eaa90c419f3b77 (patch) | |
tree | 69ac726798245e82c743cef429b7c6debb62b9d2 /wqflask | |
parent | a8c2fbf6188cb3cd632ef0cae10dea122d377739 (diff) | |
download | genenetwork2-d1a65f4a345d7d890399542a45eaa90c419f3b77.tar.gz |
Provide missing argument
Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/static/new/javascript/partial_correlations.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/static/new/javascript/partial_correlations.js b/wqflask/wqflask/static/new/javascript/partial_correlations.js index a6121627..1cfb655e 100644 --- a/wqflask/wqflask/static/new/javascript/partial_correlations.js +++ b/wqflask/wqflask/static/new/javascript/partial_correlations.js @@ -117,7 +117,7 @@ function display_publish_results(primary, controls, correlations, method) { table_body.removeChild(template_row); } -function display_geno_results(primary, controls, correlations) { +function display_geno_results(primary, controls, correlations, method) { table = document.getElementById("part-corr-results-geno"); table.setAttribute("style", "display: block;"); table_body = document.querySelector("#part-corr-results-geno tbody"); @@ -152,7 +152,7 @@ function display_geno_results(primary, controls, correlations) { table_body.removeChild(template_row); } -function display_probeset_results(primary, controls, correlations) { +function display_probeset_results(primary, controls, correlations, method) { table = document.getElementById("part-corr-results-probeset"); table.setAttribute("style", "display: block;"); table_body = document.querySelector("#part-corr-results-probeset tbody"); |