Mercurial > repos > miller-lab > genome_diversity
view nucleotide_diversity_pi.py @ 39:e56023008e36 default tip
Changed revision of package_fisher_0_1_4 to be2fc454d121
Changed revision of package_matplotlib_1_2 to a03ee94316b5
author | miller-lab |
---|---|
date | Mon, 06 Jul 2015 10:32:24 -0400 |
parents | 8997f2ca8c7a |
children |
line wrap: on
line source
#!/usr/bin/env python import gd_util import sys from Population import Population ################################################################################ if len(sys.argv) != 7: gd_util.die('Usage') gd_saps_file, gd_snps_file, covered_intervals_file, gd_indivs_file, output_file, ind_arg = sys.argv[1:] p_total = Population() p_total.from_wrapped_dict(ind_arg) p1 = Population() p1.from_population_file(gd_indivs_file) if not p_total.is_superset(p1): gd_util.die('There is an individual in the population individuals that is not in the SNP table') ################################################################################ prog = 'get_pi' args = [ prog ] args.append(gd_saps_file) args.append(gd_snps_file) args.append(covered_intervals_file) columns = p1.column_list() for column in columns: args.append(column) with open(output_file, 'w') as fh: gd_util.run_program(prog, args, stdout=fh) sys.exit(0)