File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments