Skip to content

Commit

Permalink
Merge pull request #104 from CCBR/iss-89
Browse files Browse the repository at this point in the history
fix: increase mem for some rules; gatk contamination not run as localrule
  • Loading branch information
dnousome authored Aug 14, 2024
2 parents 0c1a3ce + 8c1964f commit 1c5fff4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
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

0 comments on commit 1c5fff4

Please sign in to comment.