Skip to content

Commit

Permalink
update modules.config
Browse files Browse the repository at this point in the history
  • Loading branch information
ggabernet committed Aug 20, 2024
1 parent 79234af commit 7792153
Showing 1 changed file with 39 additions and 3 deletions.
42 changes: 39 additions & 3 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,16 @@ process {
]
}

withName: 'PRESTO_MASKPRIMERS_SCORE_UMI_*' {
withName: 'PRESTO_MASKPRIMERS_SCORE_UMI_R1' {
publishDir = [
path: { "${params.outdir}/presto/02-maskprimers/${meta.id}" },
mode: params.publish_dir_mode,
pattern: "*{txt,log,tab}"
]
ext.args2 = "-f ID PRIMER ERROR"
}

withName: 'PRESTO_MASKPRIMERS_SCORE_UMI_R2' {
publishDir = [
path: { "${params.outdir}/presto/02-maskprimers/${meta.id}" },
mode: params.publish_dir_mode,
Expand Down Expand Up @@ -159,7 +168,16 @@ process {
ext.args2 = '-f ID PRIMER ERROR --outname cregion_alignment'
}

withName: 'PRESTO_MASKPRIMERS_EXTRACT*' {
withName: 'PRESTO_MASKPRIMERS_EXTRACT' {
publishDir = [
path: { "${params.outdir}/presto/02-maskprimers/${meta.id}" },
mode: params.publish_dir_mode,
pattern: "*{txt,log,tab}"
]
ext.args2 = '-f ID PRIMER ERROR PRSTART'
}

withName: 'PRESTO_MASKPRIMERS_EXTRACT_R1' {
publishDir = [
path: { "${params.outdir}/presto/02-maskprimers/${meta.id}" },
mode: params.publish_dir_mode,
Expand All @@ -168,7 +186,25 @@ process {
ext.args2 = '-f ID PRIMER ERROR PRSTART'
}

withName: 'PRESTO_MASKPRIMERS_SCORE_SANSUMI*' {
withName: 'PRESTO_MASKPRIMERS_EXTRACT_R2' {
publishDir = [
path: { "${params.outdir}/presto/02-maskprimers/${meta.id}" },
mode: params.publish_dir_mode,
pattern: "*{txt,log,tab}"
]
ext.args2 = '-f ID PRIMER ERROR PRSTART'
}

withName: 'PRESTO_MASKPRIMERS_SCORE_SANSUMI_FWD' {
publishDir = [
path: { "${params.outdir}/presto/03-maskprimers/${meta.id}" },
mode: params.publish_dir_mode,
pattern: "*{txt,log,tab}"
]
ext.args2 = '-f ID PRIMER ERROR'
}

withName: 'PRESTO_MASKPRIMERS_SCORE_SANSUMI_REV' {
publishDir = [
path: { "${params.outdir}/presto/03-maskprimers/${meta.id}" },
mode: params.publish_dir_mode,
Expand Down

0 comments on commit 7792153

Please sign in to comment.