Skip to content

Commit

Permalink
update config with changed module and sw names
Browse files Browse the repository at this point in the history
  • Loading branch information
FriederikeHanssen committed Dec 8, 2021
1 parent 06d100b commit 5061cbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ process {
publishDir = [ enabled: false ]
}

withName: 'BGZIPTABIX_ANNOTATE' {
withName: 'ANNOTATION_BGZIPTABIX' {
publishDir = [
path: { "${params.outdir}/annotation/${meta.id}" },
enabled: true,
Expand All @@ -359,23 +359,23 @@ process {

if ((params.tools) && (params.tools.contains('snpeff') || params.tools.contains('merge'))) {
process {
withName: 'NFCORE_SAREK:SAREK:ANNOTATE:SNPEFF_ANNOTATE:BGZIPTABIX_ANNOTATE' {
withName: 'NFCORE_SAREK:SAREK:ANNOTATE:ANNOTATION_SNPEFF:ANNOTATION_BGZIPTABIX' {
ext.prefix = {"${meta.id}_snpEff.ann.vcf"}
}
}
}

if ((params.tools) && (params.tools.contains('vep'))) {
process {
withName: 'NFCORE_SAREK:SAREK:ANNOTATE:ENSEMBLVEP_ANNOTATE:BGZIPTABIX_ANNOTATE' {
withName: 'NFCORE_SAREK:SAREK:ANNOTATE:ANNOTATION_ENSEMBLVEP:ANNOTATION_BGZIPTABIX' {
ext.prefix = {"${meta.id}_VEP.ann.vcf"}
}
}
}

if ((params.tools) && (params.tools.contains('merge'))) {
process {
withName: 'NFCORE_SAREK:SAREK:ANNOTATE:MERGE_ANNOTATE:BGZIPTABIX_ANNOTATE' {
withName: 'NFCORE_SAREK:SAREK:ANNOTATE:MERGE_ANNOTATE:ANNOTATION_BGZIPTABIX' {
ext.prefix = {"${meta.id}_snpEff_VEP.ann.vcf"}
}
}
Expand Down

0 comments on commit 5061cbc

Please sign in to comment.