diff options
author | Pjotr Prins | 2017-03-05 11:20:07 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-03-05 11:20:07 +0000 |
commit | 1c72c2ff02eb571368051464543caf0b44521666 (patch) | |
tree | 9fc0ce5d1acf15b52f0f1016a3767883d247adc1 /wqflask/maintenance/get_group_samplelists.py | |
parent | 55bbc368c6a02ebfb8f754dfbe7ee5f60edea66b (diff) | |
parent | 2b14b0d04387a262f9895ddd87ce465c6835fa8c (diff) | |
download | genenetwork2-1c72c2ff02eb571368051464543caf0b44521666.tar.gz |
Merge branch 'master' of github.com:zsloan/genenetwork2 into zsloan
Diffstat (limited to 'wqflask/maintenance/get_group_samplelists.py')
-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 2d48ce78..04e94886 100644 --- a/wqflask/maintenance/get_group_samplelists.py +++ b/wqflask/maintenance/get_group_samplelists.py @@ -51,6 +51,6 @@ def get_samplelist_from_plink(genofilename): samplelist = [] for line in genofile: line = line.split(" ") - samplelist.append(line[0]) + samplelist.append(line[1]) return samplelist |