diff options
author | zsloan | 2019-09-09 16:24:41 -0500 |
---|---|---|
committer | zsloan | 2019-09-09 16:24:41 -0500 |
commit | bbc12d6db4b40247e02377b2c24d933243dd7cc1 (patch) | |
tree | 0f07b1b2dc420c104c8e35a42ef7901b04222550 /wqflask/utility/tools.py | |
parent | cc12fe06593f4957fb2b5b641ebe7e5cf43453b1 (diff) | |
download | genenetwork2-bbc12d6db4b40247e02377b2c24d933243dd7cc1.tar.gz |
Revert "Add option to hide columns in correlation results"
This reverts commit cc12fe06593f4957fb2b5b641ebe7e5cf43453b1.
Mistakenly included changes to tools.py that are only for the new guix build
Diffstat (limited to 'wqflask/utility/tools.py')
-rw-r--r-- | wqflask/utility/tools.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index a2eb0817..31ab2046 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -105,7 +105,7 @@ def js_path(module=None): try_guix = get_setting("JS_GUIX_PATH")+"/"+module if valid_path(try_guix): return try_guix - raise Exception("No JS path found for "+module+" (if not in Guix check JS_GN_PATH)") + raise "No JS path found for "+module+" (if not in Guix check JS_GN_PATH)" def reaper_command(guess=None): return get_setting("REAPER_COMMAND",guess) @@ -291,8 +291,7 @@ assert_dir(JS_GUIX_PATH) assert_dir(JS_GUIX_PATH+'/cytoscape-panzoom') CSS_PATH = "UNKNOWN" # assert_dir(JS_PATH) -#JS_TWITTER_POST_FETCHER_PATH = get_setting("JS_TWITTER_POST_FETCHER_PATH",js_path("Twitter-Post-Fetcher")) -JS_TWITTER_POST_FETCHER_PATH = get_setting("JS_TWITTER_POST_FETCHER_PATH",js_path("javascript-twitter-post-fetcher")) +JS_TWITTER_POST_FETCHER_PATH = get_setting("JS_TWITTER_POST_FETCHER_PATH",js_path("Twitter-Post-Fetcher")) assert_dir(JS_TWITTER_POST_FETCHER_PATH) assert_file(JS_TWITTER_POST_FETCHER_PATH+"/js/twitterFetcher_min.js") JS_CYTOSCAPE_PATH = get_setting("JS_CYTOSCAPE_PATH",js_path("cytoscape")) |