Skip to content

Commit

Permalink
ingest: fix sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
rneher committed Feb 22, 2024
1 parent 67e4d34 commit 5fa7596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ingest/workflow/snakemake_rules/sort.smk
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ rule sort:
'''
seqkit rmdup {input.sequences} | \
nextclade3 sort - --output-dir tmp
mv tmp/nextstrain/rsv/b/sequences.fasta > data/b/sequences.fasta
mv tmp/nextstrain/rsv/a/sequences.fasta > data/a/sequences.fasta
mv tmp/nextstrain/rsv/b/sequences.fasta data/b/sequences.fasta
mv tmp/nextstrain/rsv/a/sequences.fasta data/a/sequences.fasta
rm -r tmp
'''

Expand Down

0 comments on commit 5fa7596

Please sign in to comment.