diff options
author | zsloan | 2022-03-10 00:50:14 +0000 |
---|---|---|
committer | zsloan | 2022-03-16 14:41:09 -0500 |
commit | f76bca81639027a87e2d2cc5697258714d7bf7d9 (patch) | |
tree | 70ae9657b86222df6374eea45f066f256333da33 /wqflask/maintenance/gen_ind_genofiles.py | |
parent | a51f95bea5fa9a3b767aaebf75adfa706cf7940f (diff) | |
download | genenetwork2-f76bca81639027a87e2d2cc5697258714d7bf7d9.tar.gz |
Replace top comment with docstring
Diffstat (limited to 'wqflask/maintenance/gen_ind_genofiles.py')
-rw-r--r-- | wqflask/maintenance/gen_ind_genofiles.py | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/wqflask/maintenance/gen_ind_genofiles.py b/wqflask/maintenance/gen_ind_genofiles.py index e705119f..0c4efba0 100644 --- a/wqflask/maintenance/gen_ind_genofiles.py +++ b/wqflask/maintenance/gen_ind_genofiles.py @@ -1,6 +1,19 @@ -# Example commands: -# python3 gen_ind_genofiles.py /home/zas1024/gn2-zach/genotype_files/genotype/ /home/zas1024/gn2-zach/new_geno/ BXD-Micturition.geno BXD.json -# python3 gen_ind_genofiles.py /home/zas1024/gn2-zach/genotype_files/genotype/ /home/zas1024/gn2-zach/new_geno/ BXD-Micturition.geno BXD.2.geno BXD.4.geno BXD.5.geno +#!/usr/bin/env python3 +"""A script that generates the genotype files for groups of individuals, using an existing strain genotype file as a basis + +Example commands: +python3 gen_ind_genofiles.py + /home/zas1024/gn2-zach/genotype_files/genotype/ + /home/zas1024/gn2-zach/new_geno/ + BXD-Micturition.geno + BXD.json +python3 gen_ind_genofiles.py + /home/zas1024/gn2-zach/genotype_files/genotype + /home/zas1024/gn2-zach/new_geno/ + BXD-Micturition.geno + BXD.2.geno BXD.4.geno BXD.5.geno + +""" import json import os |