Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update samtools.smk and remove design_bed as a default extra #112

Merged
merged 4 commits into from
Dec 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions workflow/rules/samtools.smk
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ rule samtools_stats:
output:
temp("qc/samtools_stats/{sample}_{type}.samtools-stats.txt"),
padraicc marked this conversation as resolved.
Show resolved Hide resolved
params:
extra="%s -t %s"
% (
config.get("samtools_stats", {}).get("extra", ""),
config.get("reference", {}).get("design_bed", ""),
),
extra=config.get("samtools_stats", {}).get("extra", ""),
log:
"qc/samtools_stats/{sample}_{type}.samtools-stats.txt.log",
benchmark:
Expand All @@ -34,7 +30,7 @@ rule samtools_stats:
message:
"{rule}: calculate qc using samtools for {input.bam}"
wrapper:
"0.79.0/bio/samtools/stats"
"v3.0.0/bio/samtools/stats"


rule samtools_idxstats:
Expand Down
Loading