diff options
author | zsloan | 2019-02-22 17:07:58 -0600 |
---|---|---|
committer | zsloan | 2019-02-22 17:07:58 -0600 |
commit | 4b4007f00f26afadc42d451c78e1253235ad65f3 (patch) | |
tree | 0b57f53eb0586a6325c1b9cd2bb0ed4b4c513e1d /wqflask/utility/Plot.py | |
parent | 91df491997694f1482119add20bb93bdd2f9e69b (diff) | |
download | genenetwork2-4b4007f00f26afadc42d451c78e1253235ad65f3.tar.gz |
Fixed some appearance issues with several tables
Fixed issue where cofactor selection screens were broken
Changed case attributes to be applied across groups, though need to discuss this with Rob since it shouldn't always be done this way
Added new inversion transformation
Diffstat (limited to 'wqflask/utility/Plot.py')
-rw-r--r-- | wqflask/utility/Plot.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/wqflask/utility/Plot.py b/wqflask/utility/Plot.py index 529cd117..cce8435d 100644 --- a/wqflask/utility/Plot.py +++ b/wqflask/utility/Plot.py @@ -98,8 +98,6 @@ def find_outliers(vals): """ - logger.debug("xerxes vals is:", pf(vals)) - if vals: #logger.debug("vals is:", pf(vals)) stats = corestats.Stats(vals) @@ -114,7 +112,6 @@ def find_outliers(vals): upper_bound = None lower_bound = None - logger.debug(pf(locals())) return upper_bound, lower_bound # parameter: data is either object returned by reaper permutation function (called by MarkerRegressionPage.py) |