Skip to content

Commit

Permalink
Merge pull request #134 from wustl-oncology/increase-cpus-star-fusion
Browse files Browse the repository at this point in the history
changed star fusion cpus to 24 and turned off preempting
  • Loading branch information
malachig authored Nov 14, 2023
2 parents 3efa7e8 + 568add8 commit 339efda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions definitions/tools/star_fusion_detect.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ task starFusionDetect {
Float? min_ffpm_level = 0.05
}

Int cores = 12
Int cores = 24
Float zip_size = size(star_fusion_genome_dir_zip, "GB")
Float fastq_size = size(flatten([fastq, fastq2]), "GB")
Int space_needed_gb = 10 + round(3 * (zip_size + fastq_size))
runtime {
preemptible: 1
preemptible: 0
maxRetries: 2
memory: "64GB"
cpu: cores
Expand Down

0 comments on commit 339efda

Please sign in to comment.