Skip to content

Commit

Permalink
Fix args.clair3 reference
Browse files Browse the repository at this point in the history
  • Loading branch information
BioWilko committed Nov 7, 2024
1 parent efa3aeb commit 006a8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artic/minion.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def run(parser, args):
cmds = []

# 2) check the reference fasta has and index and create one if not
if not os.path.exists("%s.fai" % (ref)) and args.clair3:
if not os.path.exists("%s.fai" % (ref)):
cmds.append("samtools faidx %s" % (ref))

# 3) index the ref & align with minimap
Expand Down

0 comments on commit 006a8c7

Please sign in to comment.