forked from isaacovercast/easySFS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasySFS.py
executable file
·647 lines (535 loc) · 25 KB
/
easySFS.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
#!/usr/bin/env python
'''
this script only retains bi-allelic SNPs.
'''
from __future__ import print_function
import matplotlib
matplotlib.use('PDF')
from collections import Counter
from collections import OrderedDict
from itertools import combinations
import pandas as pd
import numpy as np
import argparse
import shutil
import gzip
import copy
import dadi
import sys
import os
import matplotlib.pyplot as plt
from matplotlib.backends.backend_pdf import PdfPages
def dadi_preview_projections(dd, pops, ploidy, fold):
msg = """
Running preview mode. We will print out the results for # of segregating sites
for multiple values of projecting down for each population. The dadi
manual recommends maximizing the # of seg sites for projections, but also
a balance must be struck between # of seg sites and sample size.
For each population you should choose the value of the projection that looks
best and then rerun easySFS with the `--proj` flag.
"""
print(msg)
for pop in pops:
print(pop)
seg_sites = {}
## Calculate projections for up to 2 x the number of samples,
## so this is assuming populations are diploid.
## The +1 makes it possible to see preview including all samples per pop
for x in range(2, ploidy*len(pops[pop])+1):
fs = dadi.Spectrum.from_data_dict(dd, [pop], [x], polarized=fold)
s = fs.S()
seg_sites[x] = round(s)
print("({}, {})".format(x, round(s)), end="\t")
print("")
## Old way that's a little uglier
#for x in range(2,len(pops[pop])):
# print(seg_sites[x], end="\t")
print("\n")
def dadi_oneD_sfs_per_pop(dd, pops, proj, unfold, outdir, prefix, dtype):
dadi_dir = os.path.join(outdir, "dadi")
fsc_dir = os.path.join(outdir, "fastsimcoal2")
M_or_D = "D" if unfold else "M"
for i, pop in enumerate(pops):
print("Doing 1D sfs - {}".format(pop))
dadi_sfs_file = os.path.join(dadi_dir, pop+"-"+str(proj[i])+".sfs")
fs = dadi.Spectrum.from_data_dict(dd, [pop], [proj[i]], mask_corners=True, polarized=unfold)
## Do int bins rather than float
if dtype == "int":
dat = np.rint(np.array(fs.data))
fs = dadi.Spectrum(dat, data_folded=fs.folded, mask=fs.mask, fill_value=0, dtype=int)
fs.to_file(dadi_sfs_file)
## Convert each 1D sfs to fsc format
fsc_oneD_filename = os.path.join(fsc_dir, pop+"_{}AFpop0.obs".format(M_or_D))
with open(fsc_oneD_filename, 'w') as outfile:
outfile.write("1 observation\n")
outfile.write("\t".join(["d0_"+str(x) for x in xrange(proj[i]+1)]) + "\n")
## Grab the fs data from the dadi sfs
with open(dadi_sfs_file) as infile:
outfile.write(infile.readlines()[1])
outfile.write("\n")
def dadi_twoD_sfs_combinations(dd, pops, proj, unfold, outdir, prefix, dtype, verbose):
dadi_dir = os.path.join(outdir, "dadi")
fsc_dir = os.path.join(outdir, "fastsimcoal2")
M_or_D = "D" if unfold else "M"
## All combinations of pairs of populations
popPairs = list(combinations(pops, 2))
## All combinations of corresponding projection values
## This is hackish, it really relies on the fact that `combinations`
## is generating combinations in the same order for pops and projs
projPairs = list(combinations(proj, 2))
## Make a dict for pop indices. this is a mapping of population labels
## to values (ie. {'pop1':1, 'pop2',2}) for labeling the fsc file names
popidx = {}
for i, pop in enumerate(pops):
popidx[pop] = i
if verbose: print("Population pairs - {}".format(popPairs))
if verbose: print("Projections for each pop pair - {}".format(projPairs))
for i, pair in enumerate(popPairs):
print("Doing 2D sfs - {}".format(pair))
dadi_joint_filename = os.path.join(dadi_dir, "-".join(pair)+".sfs")
fs = dadi.Spectrum.from_data_dict(dd, list(pair), list(projPairs[i]), polarized=unfold)
## Do int bins rather than float
if dtype == "int":
dat = np.rint(np.array(fs.data))
fs = dadi.Spectrum(dat, data_folded=fs.folded, mask=fs.mask, fill_value=0, dtype=int)
fs.to_file(dadi_joint_filename)
## Convert each 2D sfs to fsc format
## NB: FSC joint format file names look like this: <prefix>_jointMAFpop1_0.obs
## Where the first pop specified is listed in the rows and the second pop
## specified is listed in the columns.
fsc_twoD_filename = os.path.join(fsc_dir, prefix+"_joint{}AFpop{}_{}.obs".format(M_or_D, popidx[pair[0]], popidx[pair[1]]))
with open(fsc_twoD_filename, 'w') as outfile:
outfile.write("1 observation\n")
## Format column headers (i.e. d0_0 d0_1 d0_2 .. d0_n for deme 0 up to sample size of n)
outfile.write("\t" + "\t".join(["d{}_".format(popidx[pair[0]]) + str(x) for x in xrange(projPairs[i][1]+1)]) + "\n")
## Format row headers
row_headers = ["d{}_".format(popidx[pair[1]]) + str(x) for x in xrange(projPairs[i][0]+1)]
## Read in the joint fs from dadi and format it nice for fsc
with open(dadi_joint_filename) as infile:
## Get the second line of the dadi-style sfs which contains the data
row_data = infile.readlines()[1].split()
## The length of each row is determined by the number of columns which == the size of the projection for pop2
## Have to add 1 to the value of the projection because xrange stops after 'n' elements
## but we want all n+1 elements from 0,1,2,..,n
row_size = projPairs[i][1] + 1
## Slice the row data into evenly sized chunks based on the number of columns
rows = [row_data[i:i + row_size] for i in xrange(0, len(row_data), row_size)]
## Sanity check. Make sure the number of rows you got is the same number you're expecting
## to get (# rows should == size of pop0 projection)
if not len(row_headers) == len(rows):
print("FSC Joint SFS failed for - {}".format(pair))
print("Row headers - {}".format(row_headers))
print("Row data - {}".format(rows))
print("Len header / data\n{}\t{}".format(len(row_headers), len(rows)))
return
else:
pass
## Write out each row to the file
for i, row_head in enumerate(row_headers):
outfile.write(row_head + "\t" + " ".join(rows[i]) + "\n")
def dadi_multiSFS(dd, pops, proj, unfold, outdir, prefix, dtype):
print("Doing multiSFS for all pops")
dadi_dir = os.path.join(outdir, "dadi")
fsc_dir = os.path.join(outdir, "fastsimcoal2")
dadi_multi_filename = os.path.join(dadi_dir, "-".join(pops)+".sfs")
## Get the multiSFS
fs = dadi.Spectrum.from_data_dict(dd, pops, proj, polarized=unfold)
## Do int bins rather than float
if dtype == "int":
dat = np.rint(np.array(fs.data))
fs = dadi.Spectrum(dat, data_folded=fs.folded, mask=fs.mask, fill_value=0, dtype=int)
## Write out the dadi file
fs.to_file(dadi_multi_filename)
## Convert to fsc multiSFS format
fsc_multi_filename = os.path.join(fsc_dir, prefix + "_MSFS.obs")
with open(fsc_multi_filename, 'w') as outfile:
outfile.write("1 observations. No. of demes and sample sizes are on next line.\n")
outfile.write(str(len(pops)) + "\t" + " ".join([str(x) for x in proj]) + "\n")
with open(dadi_multi_filename) as infile:
outfile.write(infile.readlines()[1])
outfile.write("\n")
return dadi_multi_filename
def dadi_to_momi(infile, outdir=None, verbose=False):
try:
import momi
except:
if verbose: print("Install momi to get momi-style sfs conversion as well.")
return
if not outdir == None:
momi_dir = os.path.join(outdir, "momi")
if not os.path.exists(momi_dir):
os.mkdir(momi_dir)
outfile = infile.split(".sfs")[0] + "_momi.sfs"
outfile = os.path.join(outdir, outfile.split("/")[-1])
else:
outfile = infile + "_momi.sfs"
dat = open(infile).readlines()
## Get rid of comment lines
dat = [x.strip() for x in dat if not x.startswith("#")]
if not len(dat) == 3:
raise Exception("Malformed dadi sfs {}.\n Must have 3 lines, yours has {}".format(infile, len(dat)))
## Parse the info line into nsamps per pop (list of ints), folding flag, and pop names list (if they are given)
info = dat[0].split()
nsamps = []
## Keep carving off values as long as they cast successfully as int
for i in info:
try:
nsamps.append(int(i))
except:
pass
nsamps = np.array(nsamps)
pops = [x.replace('"', '') for x in info[len(nsamps)+1:]]
folded = info[len(nsamps)]
folded = False if "un" in folded else True
if not len(pops) == len(nsamps):
print("Number of populations doesn't agree with number of pop names, using generic names.")
pops = ["pop"+x for x in range(len(nsamps))]
if verbose: print("Info nsamps={} folded={} pops={}".format(nsamps, folded, pops))
## Get mask
mask = list(map(int, dat[2].split()))
if verbose: print(mask)
## Get sfs, and reshape based on sample sizes
sfs = list(map(float, dat[1].split()))
if verbose: print(sfs)
length = np.ma.array(sfs, mask=mask).sum()
sfs = np.array(sfs).reshape(nsamps)
if verbose: print("length {}".format(length))
if verbose: print(sfs)
## Get counts per sfs bin
counts = Counter()
for sfsbin in product(*[range(y) for y in [x for x in nsamps]]):
## Ignore monomorphic snps
## nsamps minus 1 here because of the off by one diff between number
## of bins in the sfs and actual number of samples
if sfsbin == tuple(nsamps-1) or sfsbin == tuple([0] * len(nsamps)):
continue
## ignore zero bin counts
if sfs[sfsbin] == 0:
continue
if verbose: print(sfsbin, sfs[sfsbin]),
counts.update({sfsbin:sfs[sfsbin]})
if verbose: print("nbins {}".format(len(counts)))
## Convert SFS bin style into momi config style
configs = pd.DataFrame(index=range(len(counts)), columns=pops)
locus_info = []
for i, c in enumerate(counts):
## (n-1) here because nbins in dadi sfs is n+1
cfg = np.array([[(n-1)-x, x] for x,n in zip(c, nsamps)])
configs.iloc[i] = [list(map(int, list(x))) for x in cfg]
locus_info.append([0, i, counts[c]])
if verbose: print("n_snps {}".format(np.sum([x[2] for x in locus_info])))
## Finally build the momi style sfs dictionary and write it out
momi_sfs = {"sampled_pops":pops,
"folded":folded,
"length":int(length),
"configs":configs.values.tolist(),
"(locus,config_id,count)":locus_info}
with open(outfile, 'w') as out:
out.write("{}".format(json.dumps(momi_sfs)))
## make it pretty
sfs = momi.Sfs.load(outfile)
## Fold if unfolded
if folded: sfs = sfs.fold()
sfs.dump(outfile)
def oneD_sfs_per_pop(dd, pops, outdir, prefix):
for pop in pops:
allele_counts = [dd[x]["calls"][pop] for x in dd.keys()]
# print(allele_counts)
counts = Counter([x[1] for x in allele_counts])
print(pop, counts)
counts = Counter([x[0] for x in allele_counts])
print(pop, counts)
def make_datadict(genotypes, pops, verbose=False, ploidy=1):
dd = {}
## Get genotype counts for each population
for row in genotypes.iterrows():
## iterrows() returns a tuple for some reason
row = row[1]
calls = {}
for pop in pops.keys():
## If there is a bunch of info associated w/ each snp then
## just carve it off for now.
pop_genotypes = [row[x].split(":")[0] for x in pops[pop]]
ref_count = sum([x == "0" or x == "0/0" or x == "0|0" for x in pop_genotypes]) * ploidy
alt_count = sum([x == "1" or x == "1/1" or x == "1|1" for x in pop_genotypes]) * ploidy
## Haploids shouldn't have hets in the vcf
het_count = sum([x == "1/0" or x == "0/1" or x == "1|0" or x == "0|1" for x in pop_genotypes])
ref_count += het_count
alt_count += het_count
calls[pop] = (ref_count, alt_count)
dd[row["#CHROM"]+"-"+row["POS"]] =\
{"segregating":[row["REF"], row["ALT"]],\
"calls":calls,\
"outgroup_allele":row["REF"]}
return dd
def read_input(vcf_name, all_snps=False, verbose=False):
## Counter to track which locus we're evaluating and a list
## to hold all lines for each locus so we can randomly
## select one snp per locus if necessary
cur_loc_number = -1
cur_loc_snps = []
## use gzip?
if vcf_name.endswith(".gz"):
ofunc = gzip.open
else:
ofunc = open
infile = ofunc(vcf_name, 'r')
lines = infile.readlines()
infile.close()
for line in lines:
if line.startswith("#CHROM"):
header = line
## Just get the data lines, not the comments
lines = [x for x in lines if not x.startswith('#')]
if verbose:
print(" Number of snps in input file: {}".format(len(lines)))
## Randomly select one snp per locus
if not all_snps:
print(" Sampling one snp per locus")
loci_nums = set([x.split()[0] for x in lines])
loc_dict = {}
for loc in loci_nums:
loc_dict[loc] = []
## populate the loci dict
for line in lines:
loc_dict[line.split()[0]].append(line)
lines = []
for loc in loc_dict.values():
line = np.random.choice(loc, 1)[0]
lines.append(line)
## Sanity check.
## Some snp calling pipelines use the vcf Chrom/pos information to
## convey read/snp info per locus (ipyrad), some just assign
## all snps to one chrom and use pos/ID (tassel).
## If the user chooses to randomly sample one snp per block and the
## VCF doesn't use Chrom to indicate RAD loci then it'll just
## sample one snp for the whole dataset.
if len(loc_dict) == 1:
msg = """
VCF file uses non-standard Chrom/pos information.
We assume that Chrom indicates RAD loci and pos indicates snps within each locus
The VCF file passed does not have rad locus info in the Chrom field.
You can re-run the easySFS conversion with the `-a` flag to use all snps in the conversion."""
sys.exit(msg)
if verbose:
print(" Using n independent snps: {}".format(len(lines)))
## lines now here has a list of either all snps in the input
## or a subset that includes only one snp per locus
genotypes = pd.DataFrame([x.split() for x in lines], columns=header.split())
return genotypes
def get_inds_from_input(vcf_name, verbose):
# Read in the vcf file and grab the line with the individual names
# Add the 'U' to handle opening files in universal mode, squashes the
# windows/mac/linux newline issue.
## use gzip?
indnames = []
if vcf_name.endswith(".gz"):
ofunc = gzip.open
else:
ofunc = open
try:
with ofunc(vcf_name, 'rU') as infile:
for line in infile:
if line.startswith('#'):
if line.startswith('#CHROM'):
row = line.strip().split()
# VCF file format spec says that if the file contains genotype
# data then "FORMAT" will be the last column header before
# sample IDs start
startcol = row.index('FORMAT')
indnames = [x for x in row[startcol+1:]]
else:
pass
else:
break
except Exception as inst:
msg = """
Problem reading individuals from input VCF file."""
print("Error - {}".format(inst))
raise
if not indnames:
raise Exception("No sample names found in the input vcf. Check vcf file formatting.")
return indnames
def check_inputs(ind2pop, indnames, pops):
## Make sure all samples are present in both pops file and VCF, give the user the option
## to bail out if something is goofy
pop_set = set(ind2pop.keys())
vcf_set = set(indnames)
if not pop_set == vcf_set:
print("\nSamples in pops file not present in VCF: {}"\
.format(", ".join(pop_set.difference(vcf_set))))
## Remove the offending samples from ind2pop
map(ind2pop.pop, pop_set.difference(vcf_set))
print("Samples in VCF not present in pops file: {}"\
.format(", ".join(vcf_set.difference(pop_set))))
## Remove the offending individuals from the pops dict
for k,v in pops.items():
for ind in pop_set.difference(vcf_set):
if ind in v:
v.remove(ind)
pops[k] = v
## Make sure to remove any populations that no longer have samples
for k, v in pops.items():
if not v:
print("Empty population, removing - {}".format(k))
pops.pop(k)
cont = raw_input("\nContinue, excluding samples not in both pops file and VCF? (yes/no)\n")
while not cont in ["yes", "no"]:
cont = raw_input("\nContinue, excluding samples not in both pops file and VCF? (yes/no)\n")
if cont == "no":
sys.exit()
return ind2pop, indnames, pops
def get_populations(pops_file, verbose=False):
# Here we need to read in the individual population
# assignments file and do this:
# - populate the locs dictionary with each incoming population name
# - populate another dictionary with individuals assigned to populations
# Add the 'U' to handle opening files in universal mode, squashes the
# windows/mac/linux newline issue.
try:
with open(pops_file, 'rU') as popsfile:
ind2pop = {}
pops = OrderedDict()
lines = popsfile.readlines()
## Get all the populations
for line in lines:
pops.setdefault(line.split()[1], [])
for line in lines:
ind = line.split()[0]
pop = line.split()[1]
ind2pop[ind] = pop
pops[pop].append(ind)
print("Processing {} populations - {}".format(len( pops ), pops.keys()))
if(verbose):
for pop,ls in pops.items():
print(pop, ls)
except Exception as inst:
msg = """
Problem reading populations file. The file should be plain text with one
individual name and one population name per line, separated by any amount of
white space. There should be no header line in this file.
An example looks like this:
ind1 pop1
ind2 pop1
ind3 pop2
ind4 pop2"""
print(msg)
print(" File you specified is: ".format(pops_file))
print(" Error - {}".format(inst))
raise
return ind2pop, pops
def parse_command_line():
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""\n
""")
parser.add_argument("-a", dest="all_snps", action='store_true',
help="Keep all snps within each RAD locus (ie. do _not_ randomly sample 1 snp per locus).")
parser.add_argument("-i", dest="vcf_name", required=True,
help="name of the VCF input file being converted")
parser.add_argument("-p", dest="populations", required=True,
help="Input file containing population assignments per individual")
parser.add_argument("--proj", dest="projections",
help="List of values for projecting populations down to different sample sizes")
parser.add_argument("--preview", dest="preview", action='store_true',
help="Preview the number of segragating sites per population for different projection values.")
parser.add_argument("-o", dest="outdir", default='output',
help="Directory to write output SFS to")
parser.add_argument("--ploidy", dest="ploidy", type=int, default=2,
help="Specify ploidy. Default is 2. Only other option is 1 for haploid.")
parser.add_argument("--prefix", dest="prefix",
help="Prefix for all output SFS files names.")
parser.add_argument("--unfolded", dest="unfolded", action='store_true',
help="Generate unfolded SFS. This assumes that your vcf file is accurately polarized.")
parser.add_argument("--dtype", dest="dtype", default="float",
help="Data type for use in output sfs. Options are `int` and `float`. Default is `float`.")
parser.add_argument("--GQ", dest="GQual",
help="minimum genotype quality tolerated", default=20)
parser.add_argument("-f", dest="force", action='store_true',
help="Force overwriting directories and existing files.")
parser.add_argument("-v", dest="verbose", action='store_true',
help="Set verbosity. Dump tons of info to the screen")
## if no args then return help message
if len(sys.argv) == 1:
parser.print_help()
sys.exit(1)
## parse args
args = parser.parse_args()
return args
def init(args):
## Set up output directory and output prefix
outdir = args.outdir
if os.path.exists(outdir) and args.force == False:
print("\nOutput directory exists. Use -f to override.\n")
sys.exit()
if os.path.exists(outdir):
shutil.rmtree(outdir)
os.mkdir(outdir)
os.mkdir(os.path.join(outdir, "dadi"))
os.mkdir(os.path.join(outdir, "fastsimcoal2"))
if not args.prefix:
prefix = args.vcf_name.split('/')[-1].split('.')[0]
else:
prefix = args.prefix
if args.verbose:
print("Prefix - {}".format(prefix))
return outdir, prefix
def main():
args = parse_command_line()
if args.verbose:
print("Input Arguments:\n\t{}".format(args))
## Set up output directory and output prefix
if args.preview:
if args.verbose: print("Doing preview so skipping directory initialization")
else:
outdir, prefix = init(args)
## Get populations and populations assignments for individuals
## ind2pop - a dictionary mapping individuals to populations
## pops - a dictionary of populations and all inds w/in them
ind2pop, pops = get_populations(args.populations, args.verbose)
## Read in the names of individuals present in the vcf file
indnames = get_inds_from_input(args.vcf_name, args.verbose)
## Check whether inds exist in the population mapping and input vcf
## files. Give the user an opportunity to bail if there is a mismatch.
if not args.force:
ind2pop, indnames, pops = check_inputs(ind2pop, indnames, pops)
## Reads the vcf and returns a pandas dataframe
genotypes = read_input(args.vcf_name, all_snps=args.all_snps,
verbose=args.verbose)
## Convert dataframe to dadi-style datadict
dd = make_datadict(genotypes, pops=pops, ploidy=args.ploidy, verbose=args.verbose)
## Don't write the datadict to the file for preview mode
if not args.preview:
with open(os.path.join(args.outdir, "datadict.txt"), 'w') as outfile:
for x,y in dd.items():
outfile.write(x+str(y)+"\n")
## Do preview of various projections to determine good values
if args.preview:
dadi_preview_projections(dd, pops, ploidy=args.ploidy, fold=args.unfolded)
sys.exit()
elif args.projections:
## Validate values passed in for projecting
proj = [int(x) for x in args.projections.split(",")]
if not len(pops) == len(proj):
msg = "You must pass in the same number of values for projection as you have populations specified"
msg += "\n\nN pops = {}\nN projections = {}\nProjections = {}".format(len(pops), len(proj), proj)
sys.exit(msg)
## Create 1D sfs for each population
dadi_oneD_sfs_per_pop(dd, pops, proj=proj, unfold=args.unfolded, outdir=outdir, prefix=prefix, dtype=args.dtype)
## Create pairwise 2D sfs for each population
dadi_twoD_sfs_combinations(dd, pops, proj=proj, unfold=args.unfolded,\
outdir=outdir, prefix=prefix, dtype=args.dtype, verbose=args.verbose)
## Create the full multiSFS for all popuations combined
sfs_file = dadi_multiSFS(dd, pops, proj=proj, unfold=args.unfolded, outdir=outdir, prefix=prefix, dtype=args.dtype)
try:
import momi
## Create momi-style sfs
dadi_to_momi(infile=sfs_file, outdir=outdir, verbose=args.verbose)
except:
## Can't create momi file at this point because we're locked to python2
## because of dadi.
pass
else:
print("Either --preview or --proj must be specified.")
if __name__ == "__main__":
main()