Skip to content

Commit

Permalink
fix: parallel genomes passed to lorikeet correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysnewell committed Mar 5, 2024
1 parent f002e4c commit 2d94753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aviary/modules/strain_analysis/scripts/run_lorikeet.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run_lorikeet(
else:
short_reads = ""

lorikeet_cmd = f"lorikeet call -t {threads} -d {mag_directory} -x {mag_extension} -p {parallel_genomes} {short_reads} {long_reads} -o {output_directory} --do-not-call-svs --calculate-dnds --calculate-fst".split()
lorikeet_cmd = f"lorikeet call -t {threads} -d {mag_directory} -x {mag_extension} -P {parallel_genomes} {short_reads} {long_reads} -o {output_directory} --do-not-call-svs --calculate-dnds --calculate-fst".split()

run(lorikeet_cmd)

Expand Down

0 comments on commit 2d94753

Please sign in to comment.