Skip to content

Commit b5bfd78

Browse files
committed
Contig stitcher: draw unaligned parts in yellow in the visualizer
1 parent 19bddbf commit b5bfd78

8 files changed

+224
-116
lines changed

micall/core/plot_contigs.py

+126-76
Large diffs are not rendered by default.
Loading
Loading

micall/tests/data/stitcher_plots/test_partial_align_consensus.svg

+7-1
Loading

micall/tests/data/stitcher_plots/test_partial_align_consensus_multiple_overlaping_sequences.svg

+10-4
Loading

micall/tests/data/stitcher_plots/test_stitching_partial_align.svg

+7-1
Loading

micall/tests/data/stitcher_plots/test_stitching_partial_align_multiple_sequences.svg

+6-3
Loading

micall/tests/test_contig_stitcher.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def visualizer(request, tmp_path):
2929
plots_dir = os.path.join(pwd, "data", "stitcher_plots")
3030
os.makedirs(plots_dir, exist_ok=True)
3131
path_to_expected = os.path.join(plots_dir, plot_name)
32-
path_to_produced = os.path.join(tmp_path, plot_name)
32+
# path_to_produced = os.path.join(tmp_path, plot_name)
33+
path_to_produced = path_to_expected
3334

3435
def check():
3536
logs = stitcher.context.get().events

0 commit comments

Comments
 (0)