diff options
author | Frederick Muriuki Muriithi | 2022-01-05 07:37:27 +0300 |
---|---|---|
committer | zsloan | 2022-01-29 00:42:44 -0600 |
commit | 4d8ab31fd51d9c3ff7334dacd4212854f5316d2d (patch) | |
tree | 35ceab41d0db840abd37ec05e86ddf3c3ee44bd1 /wqflask | |
parent | 023c64766bf08e8884c64cf53c6f3664276d2d76 (diff) | |
download | genenetwork2-4d8ab31fd51d9c3ff7334dacd4212854f5316d2d.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"); |