diff options
author | zsloan | 2020-10-30 14:12:48 -0500 |
---|---|---|
committer | zsloan | 2020-10-30 14:12:48 -0500 |
commit | fd5e697c09669432071f18e46542fc403edf669e (patch) | |
tree | 3fe6618414408f9fa90db0e0d12bc8fc0a766282 | |
parent | ad716823091959a5332173a0fd2a040c969d2712 (diff) | |
download | genenetwork2-fd5e697c09669432071f18e46542fc403edf669e.tar.gz |
Removed a line adding the ceiling of the Max LRS to the Y axis, since it has the potential to cause an axis tick to appear above the figure
* wqflask/wqflask/marker_regression/display_mapping_results.py - Removed a line adding the ceiling of the max LRS/LOD value to the Y axis
-rw-r--r-- | wqflask/wqflask/marker_regression/display_mapping_results.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/wqflask/wqflask/marker_regression/display_mapping_results.py b/wqflask/wqflask/marker_regression/display_mapping_results.py index 7e43f6bd..04d47624 100644 --- a/wqflask/wqflask/marker_regression/display_mapping_results.py +++ b/wqflask/wqflask/marker_regression/display_mapping_results.py @@ -2146,9 +2146,6 @@ class DisplayMappingResults(object): LRSScale = 1.0 LRSAxisList = Plot.frange(LRSScale, LRS_LOD_Max, LRSScale) - #make sure the user's value appears on the y-axis - #update by NL 6-21-2011: round the LOD value to 100 when LRS_LOD_Max is equal to 460 - LRSAxisList.append(ceil(LRS_LOD_Max)) #ZS: Convert to int if all axis values are whole numbers all_int = True |