diff options
author | zsloan | 2021-05-18 23:22:07 +0000 |
---|---|---|
committer | zsloan | 2021-05-18 23:22:07 +0000 |
commit | 687754de205f127bf8a5eeb2204974d0462475b4 (patch) | |
tree | 71c09d01c0d9ef6fbe48baa98265568dd913613f | |
parent | d24b1d542f0fc84a3a2c214516459d0a3a9f97a4 (diff) | |
download | genenetwork2-687754de205f127bf8a5eeb2204974d0462475b4.tar.gz |
Fixed issue that caused the sample values in the Haplotype Analyst to be off by 1
-rw-r--r-- | wqflask/wqflask/marker_regression/display_mapping_results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/marker_regression/display_mapping_results.py b/wqflask/wqflask/marker_regression/display_mapping_results.py index 5bf8822a..48f6f308 100644 --- a/wqflask/wqflask/marker_regression/display_mapping_results.py +++ b/wqflask/wqflask/marker_regression/display_mapping_results.py @@ -1771,7 +1771,7 @@ class DisplayMappingResults: if (plotbxd == 1): ind = [item.name for item in smd].index( - samplelist[j]) - 1 + samplelist[j]) expr = smd[ind].value # Place where font is hardcoded |