Skip to content

Commit ff3189f

Browse files
committed
Troubleshoot
1 parent 333b6b4 commit ff3189f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

microhapulator/tests/test_pipe.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,11 @@ def test_pipe_gbr_usc10(tmp_path):
6767
args = microhapulator.cli.get_parser().parse_args(arglist)
6868
microhapulator.cli.pipe.main(args)
6969
expected = SimulatedProfile(fromfile=data_file("prof/gbr-usc10-sim.json"))
70+
print("DEBUGger", *list((tmp_path / "analysis" / "gbr-usc" / "03typing").glob("*")), sep="\n")
7071
observed = TypingResult(
7172
fromfile=tmp_path / "analysis" / "gbr-usc" / "03typing" / "gbr-usc-type.json"
7273
)
74+
assert False
7375
diff = list(mhapi.diff(observed, expected))
7476
assert len(diff) == 0
7577
report = tmp_path / "report" / "report.html"

microhapulator/workflows/preproc-paired.smk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ rule filter_ambiguous:
7272
ambig_thresh=config["ambiguous_thresh"],
7373
out_prefix="analysis/{sample}/01preprocessing/{sample}",
7474
run:
75-
print("DEBUG", wildcards.sample, input)
7675
ambig_filter = AmbigPairedReadFilter(*input, params.out_prefix, params.ambig_thresh)
7776
ambig_filter.filter()
7877
with open(output.counts, "w") as fh:

0 commit comments

Comments
 (0)