Skip to content

Commit

Permalink
nextclade: limit nextclade threads
Browse files Browse the repository at this point in the history
  • Loading branch information
rneher committed Feb 22, 2024
1 parent 5fa7596 commit b9f4f4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ingest/workflow/snakemake_rules/sort.smk
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ rule nextclade:
params:
dataset = "rsv-{type}_nextclade",
output_columns = "clade qc.overallScore qc.overallStatus alignmentScore alignmentStart alignmentEnd coverage dynamic"
threads: 8
shell:
"""
nextclade3 run -D {params.dataset} \
nextclade3 run -D {params.dataset} -j {threads} \
--output-columns-selection {params.output_columns} \
--output-tsv {output.nextclade} \
{input.sequences}
Expand Down

0 comments on commit b9f4f4f

Please sign in to comment.