Skip to content

Commit 9f368d4

Browse files
committed
Contig stitcher: do not require logging=debug for the visualizer
1 parent c5997ac commit 9f368d4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

micall/core/contig_stitcher.py

-4
Original file line numberDiff line numberDiff line change
@@ -723,10 +723,6 @@ def main(args):
723723
logger.setLevel(logging.WARN)
724724

725725
logging.basicConfig(level=logger.level)
726-
if args.plot and logger.level > logging.DEBUG:
727-
logging.error("Option --plot requires --debug.")
728-
exit(1)
729-
730726
write_contig_refs(args.contigs.name, args.stitched_contigs, stitcher_plot_path=args.plot)
731727
args.contigs.close()
732728
args.stitched_contigs.close()

micall/core/denovo.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from Bio.SeqRecord import SeqRecord
2020

2121
from micall.core.project_config import ProjectConfig
22-
from micall.core.contig_stitcher import GenotypedContig, stitch_consensus, logger as stitcher_logger, with_fresh_context
22+
from micall.core.contig_stitcher import GenotypedContig, stitch_consensus, with_fresh_context
2323
from micall.core.plot_contigs import plot_stitcher_coverage
2424
from micall.utils.structured_logger import add_structured_handler
2525

@@ -98,7 +98,7 @@ def run_stitcher(ctx):
9898
group_ref=contig.group_ref,
9999
contig=contig.seq))
100100

101-
if stitcher_logger.level <= logging.DEBUG and stitcher_plot_path is not None:
101+
if stitcher_plot_path is not None:
102102
plot_stitcher_coverage(ctx.events, stitcher_plot_path)
103103

104104
return len(contigs)

0 commit comments

Comments
 (0)