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

fix: increase mem for some rules; gatk contamination not run as localrule #104

Merged
merged 5 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Previously, `xavier_gui` (with an underscore) was a command in the `ccbrpipeliner` module.
- Provide default exome targets for hg38 and mm10, which can be overridden by the optional `--targets` argument. (#102, @kelly-sovacool)
- Previously, the `--targets` argument was required with no defaults.
- Increased memory for rules: BWA mem, qualimap, kraken. gatk_contamination is not localrule. (#89, @samarth8392)

## XAVIER 3.0.3

Expand Down
12 changes: 8 additions & 4 deletions config/cluster.biowulf.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@
"threads": "2",
"time": "4:00:00"
},

"kraken": {
"mem": "64G"
},
"strelka": {
"threads": "16",
"time": "16:00:00",
"mem": "32G"
},

"qualimap_bamqc": {
"mem": "32G"
},
"strelka_filter": {
"threads": "4",
"time": "8:00:00",
Expand Down Expand Up @@ -57,7 +61,7 @@
"mem": "32G"
},

"merge_somatic_callers": {
"somatic_merge_callers": {
"threads": "16",
"time": "18:00:00",
"mem": "32G"
Expand Down Expand Up @@ -116,7 +120,7 @@
},
"bwa_mem": {
"threads": "24",
"mem": "32G"
"mem": "64G"
},
"picard_headers": {
"threads": "2",
Expand Down
12 changes: 8 additions & 4 deletions config/cluster.frce.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,17 @@
"threads": "2",
"time": "4:00:00"
},

"kraken": {
"mem": "64G"
},
"strelka": {
"threads": "16",
"time": "16:00:00",
"mem": "32G"
},

"qualimap_bamqc": {
"mem": "32G"
},
"strelka_filter": {
"threads": "4",
"time": "8:00:00",
Expand Down Expand Up @@ -56,7 +60,7 @@
"mem": "32G"
},

"merge_somatic_callers": {
"somatic_merge_callers": {
"threads": "16",
"time": "18:00:00",
"mem": "32G"
Expand Down Expand Up @@ -115,7 +119,7 @@
},
"bwa_mem": {
"threads": "24",
"mem": "32G"
"mem": "64G"
},
"picard_headers": {
"threads": "2",
Expand Down
1 change: 0 additions & 1 deletion workflow/rules/somatic_snps.paired.smk
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ rule pileup_paired:
wait
"""

localrules: contamination_paired
rule contamination_paired:
input:
tumor = os.path.join(output_somatic_snpindels, "mutect2_out", "pileup_summaries", "{samples}_tumor.pileup.table"),
Expand Down
1 change: 0 additions & 1 deletion workflow/rules/somatic_snps.tumor_only.smk
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ rule pileup_single:
-O {output.pileup}
"""

localrules: contamination_single
rule contamination_single:
input:
pileup = os.path.join(output_somatic_snpindels, "mutect2_out", "pileup_summaries", "{samples}.pileup.table")
Expand Down
Loading