-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: typo * feat: include qualimap report in snakemake report * refactor: removed compress rules * style: changed names to better reflect their purpose * refactor: removed localrule declaration from rules that no longer exist * fix: profile uses new rule names * style: report viewability and renamed rule parameters to match their rules * style: changed l2fc threshold and improved naming * fix: config keys for test diles, formatting * fix: input path * Update workflow/rules/qc.smk no string detour, just taking config from config dir Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * style: samstats -> bamstats in output directory * fix: accomodating for previous change in the all rule --------- Co-authored-by: Christian Meesters <[email protected]> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: cmeesters <[email protected]>
- Loading branch information
1 parent
6f71b5f
commit 3782c40
Showing
10 changed files
with
79 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Full `NanoPlot, <https://github.com/wdecoster/NanoPlot>`_ sequencing quality report for total samples . | ||
Full `NanoPlot, <https://github.com/wdecoster/NanoPlot>`_ sequencing quality report for total samples. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Full `QualiMap, <http://qualimap.conesalab.org/doc_html/analysis.html#bam-qc>`_ BAMQC alignment quality report for total samples. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
rule sam_view: | ||
rule sam_to_bam: | ||
input: | ||
sam="alignments/{sample}.sam", | ||
output: | ||
"sorted_alignments/{sample}.bam", | ||
"alignments/{sample}.bam", | ||
log: | ||
"logs/samtools/samview_{sample}.log", | ||
"logs/samtools/samtobam_{sample}.log", | ||
params: | ||
extra=f'{config["sview_opts"]}', | ||
extra=f'{config["samtobam_opts"]}', | ||
wrapper: | ||
"v3.13.4/bio/samtools/view" | ||
|
||
|
||
rule sam_sort: | ||
rule bam_sort: | ||
input: | ||
sam="alignments/{sample}.sam", | ||
bam="alignments/{sample}.bam", | ||
output: | ||
"sorted_alignments/{sample}_sorted.bam", | ||
log: | ||
"logs/samtools/samsort_{sample}.log", | ||
"logs/samtools/bamsort_{sample}.log", | ||
params: | ||
extra=f'{config["ssort_opts"]}', | ||
extra=f'{config["bamsort_opts"]}', | ||
wrapper: | ||
"v3.13.4/bio/samtools/sort" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters