Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
22 changes: 22 additions & 0 deletions conf/pipeline/rnaseq/uppmax.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
params {
// Add a description only if the NGI_CONFIG environment variable is set
// which only happens on prod on miarka
config_profile_description = System.getenv('NGI_CONFIG')
? 'nf-core/rnaseq UPPMAX cluster profile provided by nf-core/configs.'
: 'UPPMAX (Bianca) cluster profile provided by nf-core/configs.'
Comment on lines +4 to +6
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't we need to keep these in closures with .call()


// Overrides default values when genome is GRCh38
gencode = (System.getenv('NGI_CONFIG') && params.genome == 'GRCh38')
save_reference = (System.getenv('NGI_CONFIG') && params.genome == 'GRCh38')

genomes {
'GRCh38' {
bed12 = System.getenv('NGI_CONFIG')
? "/proj/ngi2016003/nobackup/junw/RNAseq/genes_GRCh38.bed"
: "/sw/data/igenomes/Homo_sapiens/NCBI/GRCh38/Annotation/Genes/genes.bed"
gtf = System.getenv('NGI_CONFIG')
? "/sw/data/uppnex/igenomes/Homo_sapiens/NCBI/GRCh38/Annotation/Genes.gencode/genes.gtf"
: "/sw/data/igenomes/Homo_sapiens/NCBI/GRCh38/Annotation/Genes/genes.gtf"
}
}
}
2 changes: 1 addition & 1 deletion conf/uppmax.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
params {
// Description is overwritten for other clusters using includeConfig
config_profile_description = 'UPPMAX (Bianca) cluster profile provided by nf-core/configs.'
config_profile_contact = 'Phil Ewels (@ewels)'
config_profile_contact = 'Maxime Garcia (@maxulysse)'
config_profile_url = 'https://www.uppmax.uu.se/'
project = null
clusterOptions = null
Expand Down
3 changes: 3 additions & 0 deletions pipeline/rnaseq.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ profiles {
eddie {
includeConfig "${params.custom_config_base}/conf/pipeline/rnaseq/eddie.config"
}
uppmax {
includeConfig "${params.custom_config_base}/conf/pipeline/rnaseq/uppmax.config"
}
utd_sysbio {
includeConfig "${params.custom_config_base}/conf/pipeline/rnaseq/utd_sysbio.config"
}
Expand Down
Loading