diff options
author | zsloan | 2015-07-09 19:37:35 +0000 |
---|---|---|
committer | zsloan | 2015-07-09 19:37:35 +0000 |
commit | ce77f735b36c2909ac79c86b673f057eded23f1a (patch) | |
tree | ae5ffdc7f48a0738aef2e660a71cc87db2d46a7a | |
parent | 83ff8ce678f15f2f6003a5800a75166544d7c6fa (diff) | |
download | genenetwork2-ce77f735b36c2909ac79c86b673f057eded23f1a.tar.gz |
Forgot to add one change to the last commit
-rwxr-xr-x | 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 3b3930ad..b8397b47 100755 --- a/wqflask/maintenance/get_group_samplelists.py +++ b/wqflask/maintenance/get_group_samplelists.py @@ -51,7 +51,7 @@ def get_samplelist_from_plink(genofilename): samplelist = [] for line in genofile: - line = line.split("\t") + line = line.split(" ") samplelist.append(line[0]) return samplelist
\ No newline at end of file |