diff options
author | zsloan | 2019-12-09 11:13:13 -0600 |
---|---|---|
committer | zsloan | 2019-12-09 11:13:13 -0600 |
commit | 1da41f1c60b0f7f170841ad9584447a703cf4f06 (patch) | |
tree | 3ab13296c37b0686ac67773a105b2d79c4abf78f | |
parent | 9bba082eb647d9824cf72d05ca281192665b4bec (diff) | |
download | genenetwork2-1da41f1c60b0f7f170841ad9584447a703cf4f06.tar.gz |
Fixed minor issue that caused the sample list to be fetched incorrectly for a group groups
-rw-r--r-- | wqflask/maintenance/get_group_samplelists.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/maintenance/get_group_samplelists.py b/wqflask/maintenance/get_group_samplelists.py index 1dc6c46c..fb22898a 100644 --- a/wqflask/maintenance/get_group_samplelists.py +++ b/wqflask/maintenance/get_group_samplelists.py @@ -27,7 +27,7 @@ def get_samplelist_from_geno(genofilename): continue break - headers = line.split() + headers = line.split("\t") if headers[3] == "Mb": samplelist = headers[4:] |