diff options
author | zsloan | 2020-10-30 14:12:48 -0500 |
---|---|---|
committer | Alexanderlacuna | 2020-10-31 15:37:01 +0300 |
commit | f049877408196d2d76299a49544a010d3ee1c7e0 (patch) | |
tree | af2f88b9dbda3ff1f633e9829d1d981fee6431f2 | |
parent | 0b962eef391db6aae100a3283e89ee0ac0101f6b (diff) | |
download | genenetwork2-f049877408196d2d76299a49544a010d3ee1c7e0.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 |