Skip to content

Commit

Permalink
Iqtree
Browse files Browse the repository at this point in the history
  • Loading branch information
shimbalama committed Dec 12, 2018
1 parent 78c8954 commit d69c15c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lab_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
def main():
pass

def call_iqtree_with_SNP_aln(args, d_count):
def call_iqtree_with_SNP_aln(args, d_count, query):

constants=','.join([str(d_count.get('A')), str(d_count.get('C')),
str(d_count.get('G')), str(d_count.get('T'))])
print ('constants',constants)
call(['nice', 'iqtree', '-s', args.out + '_trimmed_SNP.aln',
print ('constants', query, constants)
call(['nice', 'iqtree', '-s', query + '_trimmed_SNP.aln', '-nt', str(args.threads),
'-m', 'GTR+G', '-bb', '1000', '-czb', '-fconst', constants])


Expand Down

0 comments on commit d69c15c

Please sign in to comment.