Skip to content

Commit ee336cd

Browse files
committed
Troubleshoot
1 parent b1c3fc4 commit ee336cd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

microhapulator/tests/test_pipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ def test_pipe_gbr_usc10(tmp_path):
7070
observed = TypingResult(
7171
fromfile=tmp_path / "analysis" / "gbr-usc" / "03typing" / "gbr-usc-type.json"
7272
)
73-
assert False
7473
diff = list(mhapi.diff(observed, expected))
7574
assert len(diff) == 0
7675
report = tmp_path / "report" / "report.html"

microhapulator/workflows/preproc-paired.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ rule fastqc:
4141
for end, outfile in enumerate(outfiles, 1):
4242
outfile = Path(outfile)
4343
# Snakemake f-strings break with Python 3.12: https://github.com/snakemake/snakemake/issues/2648
44-
linkfile = params.outdir + "/R" + end + "-fastqc.html"
44+
linkfile = "{}/R{}-fastqc.html".format(params.outdir, end)
4545
symlink(outfile.name, linkfile)
4646

4747

0 commit comments

Comments
 (0)