Skip to content

Commit

Permalink
removes deprecated tiddit option
Browse files Browse the repository at this point in the history
  • Loading branch information
jemten committed Sep 6, 2022
1 parent 39e8da9 commit 89eb717
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
6 changes: 0 additions & 6 deletions lib/MIP/Program/Tiddit.pm
Expand Up @@ -41,7 +41,6 @@ sub tiddit_coverage {
## : $infile_path => Infile path
## : $outfile_path_prefix => Outfile path prefix
## : $output_wig => Generate wig instead of bed
## : $skip_quality_track => Skip quality track in output file
## : $stderrfile_path => Stderrfile path
## : $stderrfile_path_append => Append stderr info to file path
## : $stdoutfile_path => Stdoutfile path
Expand Down Expand Up @@ -123,11 +122,6 @@ sub tiddit_coverage {
push @commands, q{-w};
}

if ($skip_quality_track) {

push @commands, q{-u};
}

push @commands, q{--bam} . $SPACE . $infile_path;

push @commands,
Expand Down
1 change: 0 additions & 1 deletion lib/MIP/Recipes/Analysis/Tiddit_coverage.pm
Expand Up @@ -209,7 +209,6 @@ sub analysis_tiddit_coverage {
infile_path => $infile_path,
outfile_path_prefix => $outfile_path_prefix,
output_wig => 1,
skip_quality_track => 1,
}
);
say {$filehandle} $NEWLINE;
Expand Down
4 changes: 0 additions & 4 deletions t/tiddit_coverage.t
Expand Up @@ -91,10 +91,6 @@ my %specific_argument = (
input => 1,
expected_output => q{-w},
},
skip_quality_track => {
input => 1,
expected_output => q{-u},
},
);

## Coderef - enables generalized use of generate call
Expand Down

0 comments on commit 89eb717

Please sign in to comment.