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