Skip to content
Snippets Groups Projects
Commit 13473cca authored by Carlos de Lannoy's avatar Carlos de Lannoy
Browse files

reduce number of simultaneously running compile_model to avoid mem issues

parent 0e9b2cc7
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,8 @@ rule compile_model:
species_seq_fasta='{{target_fastas_dir}}{species}.fasta'
output:
model='{{model_dir}}{species}/compiled.mod'
threads: max(workflow.cores // len(species_list), 4)
# threads: max(workflow.cores // len(species_list), 4)
threads: workflow.cores // 4
shell:
"""
python {__baseless__} compile_model \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment