Skip to content

Commit 3a54b12

Browse files
Neil MacAlasdairNeil MacAlasdair
authored andcommitted
Bugfix, missing args.hc_threshold
1 parent 3d9442f commit 3a54b12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

panaroo/post_run_alignment_gen.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ def main():
115115

116116
core_nodes = get_core_gene_nodes(G, args.core, len(isolate_names))
117117
core_names = [G.nodes[x]["name"] for x in core_nodes]
118-
concatenate_core_genome_alignments(core_names, args.output_dir)
118+
concatenate_core_genome_alignments(core_names, args.output_dir,
119+
args.hc_threshold)
119120
elif args.aln == "core":
120121
if args.verbose: print("generating core genome MSAs...")
121122
generate_core_genome_alignment(G, temp_dir, args.output_dir,

0 commit comments

Comments
 (0)