Skip to content

Commit

Permalink
Bugfix: Fixes issue with sending email report
Browse files Browse the repository at this point in the history
  • Loading branch information
tanubrata committed Nov 10, 2023
1 parent 5f5805f commit 9bae9b4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 22 deletions.
5 changes: 0 additions & 5 deletions assets/email_template.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
----------------------------------------------------
,--./,-.
___ __ __ __ ___ /,-._.--~\\
|\\ | |__ __ / ` / \\ |__) |__ } {
| \\| | \\__, \\__/ | \\ |___ \\`-._,-`-,
`._,._,'
mskilab-org/nf-jabba v${version}
----------------------------------------------------
Run Name: $runName
Expand Down
Binary file added assets/mskilab-org-nf-jabba_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/mskilab-org-nf-jabba_logo_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ process {
time = { check_max( 4.h * task.attempt, 'time' ) }
}
withLabel:process_medium {
cpus = { check_max( 6 * task.attempt, 'cpus' ) }
memory = { check_max( 36.GB * task.attempt, 'memory' ) }
time = { check_max( 8.h * task.attempt, 'time' ) }
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
memory = { check_max( 48.GB * task.attempt, 'memory' ) }
time = { check_max( 12.h * task.attempt, 'time' ) }
}
withLabel:process_high {
cpus = { check_max( 12 * task.attempt, 'cpus' ) }
memory = { check_max( 72.GB * task.attempt, 'memory' ) }
time = { check_max( 16.h * task.attempt, 'time' ) }
time = { check_max( 24.h * task.attempt, 'time' ) }
}
withLabel:process_long {
time = { check_max( 20.h * task.attempt, 'time' ) }
Expand Down Expand Up @@ -97,14 +97,14 @@ process {
memory = { check_max( 12.GB * task.attempt, 'memory' ) }
}
withName: 'SVABA' {
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
memory = { check_max( 64.GB * task.attempt, 'memory' ) }
time = { check_max( 72.h * task.attempt, 'time' ) }
time = 120.h
}
withName: 'GRIDSS' {
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
memory = { check_max( 64.GB * task.attempt, 'memory' ) }
time = { check_max( 72.h * task.attempt, 'time' ) }
time = 120.h
}
withName: 'GRIDSS_SOMATIC' {
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
Expand Down
2 changes: 1 addition & 1 deletion modules/local/svaba/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

process SVABA {
tag "$meta.id"
label 'process_medium'
label 'process_high'

conda "bioconda::svaba=1.1.0"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
Expand Down
16 changes: 8 additions & 8 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ params {
// Config options
config_profile_name = null
config_profile_description = null
//custom_config_version = 'master'
//custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}"
custom_config_version = 'master'
custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}"
config_profile_contact = null
config_profile_url = null

Expand All @@ -210,11 +210,11 @@ params {
includeConfig 'conf/base.config'

// Load nf-core custom profiles from different Institutions
//try {
// includeConfig "${params.custom_config_base}/nfcore_custom.config"
//} catch (Exception e) {
// System.err.println("WARNING: Could not load nf-core/config profiles: ${params.custom_config_base}/nfcore_custom.config")
//}
try {
includeConfig "${params.custom_config_base}/nfcore_custom.config"
} catch (Exception e) {
System.err.println("WARNING: Could not load nf-core/config profiles: ${params.custom_config_base}/nfcore_custom.config")
}

// Load mskilab-org/nf-jabba custom profiles from different institutions.
// Warning: Uncomment only if a pipeline-specific instititutional config already exists on nf-core/configs!
Expand Down Expand Up @@ -373,7 +373,7 @@ dag {

manifest {
name = 'mskilab-org/nf-jabba'
author = """Tanubrata Dey, Shihab Dider, Joel Rosiene"""
author = """Tanubrata Dey and Shihab Dider"""
homePage = 'https://github.com/mskilab-org/nf-jabba'
description = """Clinical Core Pipeline for MSkiLab"""
mainScript = 'main.nf'
Expand Down

0 comments on commit 9bae9b4

Please sign in to comment.