diff options
author | Pjotr Prins | 2018-10-12 08:24:16 +0000 |
---|---|---|
committer | Pjotr Prins | 2018-10-12 08:24:16 +0000 |
commit | 5162d1484f01a51d65e7e70143146f018d96edb4 (patch) | |
tree | 0ebcdab6a10a1d112dd5a36512352314219fcc56 /wqflask/maintenance/generate_kinship_from_bimbam.py | |
parent | dd743c8311b26f6a786c346cf4deed144c6a9b61 (diff) | |
parent | 261ba5e41408d212cc3c33df658b6be2431f68ad (diff) | |
download | genenetwork2-5162d1484f01a51d65e7e70143146f018d96edb4.tar.gz |
Merge branch 'testing' of github.com:genenetwork/genenetwork2 into gn-testing
Diffstat (limited to 'wqflask/maintenance/generate_kinship_from_bimbam.py')
-rw-r--r-- | wqflask/maintenance/generate_kinship_from_bimbam.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wqflask/maintenance/generate_kinship_from_bimbam.py b/wqflask/maintenance/generate_kinship_from_bimbam.py index f322341d..ad0eb036 100644 --- a/wqflask/maintenance/generate_kinship_from_bimbam.py +++ b/wqflask/maintenance/generate_kinship_from_bimbam.py @@ -32,6 +32,8 @@ class GenerateKinshipMatrices(object): if not input_file.endswith(('geno', '.geno.gz')): continue group_name = ".".join(input_file.split('.')[:-1]) + if group_name == "HSNIH-Palmer": + continue geno_input_file = os.path.join(bimbam_dir, group_name + "_geno.txt") pheno_input_file = os.path.join(bimbam_dir, group_name + "_pheno.txt") convertob = GenerateKinshipMatrices(group_name, geno_input_file, pheno_input_file) |