Skip to content

Commit

Permalink
M value tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
didillysquat committed Oct 15, 2018
1 parent b6cc9fe commit 3a72cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create_data_submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def deuniqueWorker(input, output):
# We should also take care that M doesn't go below 4, so we should use a max choice for the M
M_value = max(4, int(0.004 * (len(deuniquedFasta)/2)))
completedProcess = subprocess.run(
[r'decompose', '-M', M_value, '--skip-gexf-files', '--skip-gen-figures', '--skip-gen-html', '--skip-check-input', '-o',
[r'decompose', '-M', str(M_value), '--skip-gexf-files', '--skip-gen-figures', '--skip-gen-html', '--skip-check-input', '-o',
MEDOutDir, pathToFile], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
sys.stdout.write('{}: MED complete\n'.format(sampleName))

Expand Down

0 comments on commit 3a72cf5

Please sign in to comment.