Skip to content

Commit

Permalink
ingest: Include seqName in Nextclade output
Browse files Browse the repository at this point in the history
Resolves #65

Since Nextclade v3.7.0, the `seqName` column needs to be explicitly
listed when using the `--output-columns-selection` option.
  • Loading branch information
joverlee521 committed Jun 13, 2024
1 parent c3b634b commit 9146f84
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ingest/workflow/snakemake_rules/sort.smk
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ rule nextclade:
nextclade = "data/{type}/nextclade.tsv"
params:
dataset = "rsv-{type}_nextclade",
output_columns = "clade qc.overallScore qc.overallStatus alignmentScore alignmentStart alignmentEnd coverage dynamic"
output_columns = "seqName clade qc.overallScore qc.overallStatus alignmentScore alignmentStart alignmentEnd coverage dynamic"
threads: 8
shell:
"""
Expand All @@ -84,4 +84,3 @@ rule extend_metadata:
--nextclade {input.nextclade} \
--output {output.metadata}
"""

0 comments on commit 9146f84

Please sign in to comment.