Skip to content

Commit 92154a3

Browse files
committed
Rename process to UMITOOLS_PREPAREFORSALMON for clarity
1 parent c847380 commit 92154a3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

conf/modules.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ if (!params.skip_alignment && params.aligner == 'star_salmon') {
613613
]
614614
}
615615

616-
withName: 'NFCORE_RNASEQ:RNASEQ:UMITOOLS_PREPAREFORRSEM' {
616+
withName: 'NFCORE_RNASEQ:RNASEQ:UMITOOLS_PREPAREFORSALMON' {
617617
ext.prefix = { "${meta.id}.umi_dedup.transcriptome.filtered" }
618618
publishDir = [
619619
path: { "${params.outdir}/${params.aligner}/umitools/log" },

workflows/rnaseq.nf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ ch_biotypes_header_multiqc = file("$projectDir/assets/multiqc/biotypes_header.
9292
//
9393
// MODULE: Loaded from modules/local/
9494
//
95-
include { UMITOOLS_PREPAREFORRSEM } from '../modules/local/umitools_prepareforrsem.nf'
9695
include { BEDTOOLS_GENOMECOV } from '../modules/local/bedtools_genomecov'
9796
include { DESEQ2_QC as DESEQ2_QC_STAR_SALMON } from '../modules/local/deseq2_qc'
9897
include { DESEQ2_QC as DESEQ2_QC_RSEM } from '../modules/local/deseq2_qc'
9998
include { DESEQ2_QC as DESEQ2_QC_SALMON } from '../modules/local/deseq2_qc'
10099
include { DUPRADAR } from '../modules/local/dupradar'
101100
include { MULTIQC } from '../modules/local/multiqc'
102101
include { MULTIQC_CUSTOM_BIOTYPE } from '../modules/local/multiqc_custom_biotype'
102+
include { UMITOOLS_PREPAREFORRSEM as UMITOOLS_PREPAREFORSALMON } from '../modules/local/umitools_prepareforrsem.nf'
103103
include { MULTIQC_TSV_FROM_LIST as MULTIQC_TSV_FAIL_MAPPED } from '../modules/local/multiqc_tsv_from_list'
104104
include { MULTIQC_TSV_FROM_LIST as MULTIQC_TSV_FAIL_TRIMMED } from '../modules/local/multiqc_tsv_from_list'
105105
include { MULTIQC_TSV_FROM_LIST as MULTIQC_TSV_STRAND_CHECK } from '../modules/local/multiqc_tsv_from_list'
@@ -422,14 +422,14 @@ workflow RNASEQ {
422422

423423
// Fix paired-end reads in name sorted BAM file
424424
// See: https://github.com/nf-core/rnaseq/issues/828
425-
UMITOOLS_PREPAREFORRSEM (
425+
UMITOOLS_PREPAREFORSALMON (
426426
ch_umitools_dedup_bam.paired_end
427427
)
428-
ch_versions = ch_versions.mix(UMITOOLS_PREPAREFORRSEM.out.versions.first())
428+
ch_versions = ch_versions.mix(UMITOOLS_PREPAREFORSALMON.out.versions.first())
429429

430430
ch_umitools_dedup_bam
431431
.single_end
432-
.mix(UMITOOLS_PREPAREFORRSEM.out.bam)
432+
.mix(UMITOOLS_PREPAREFORSALMON.out.bam)
433433
.set { ch_transcriptome_bam }
434434
}
435435

0 commit comments

Comments
 (0)