Skip to content

Commit

Permalink
Properly name fasta header
Browse files Browse the repository at this point in the history
  • Loading branch information
BioWilko committed Sep 3, 2024
1 parent 19d1e4e commit 0a7fc7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion artic/minion.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,8 @@ def run(parser, args):
)

# 11) apply the header to the consensus sequence and run alignment against the reference sequence
fasta_header = "%s/ARTIC/medaka" % (args.sample)
caller = "medaka" if not args.clair3 else "clair3"
fasta_header = f"{args.sample}/ARTIC/{caller}"
cmds.append(
'artic_fasta_header %s.consensus.fasta "%s"' % (args.sample, fasta_header)
)
Expand Down
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dependencies:
- pip
- pysam
- pytest
- python
- cyvcf2
- pyfaidx
- requests
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = artic
version = 1.4.1
version = 1.4.2
author = Nick Loman
author_email = [email protected]
maintainer = Sam Wilkinson
Expand Down

0 comments on commit 0a7fc7e

Please sign in to comment.