Skip to content

Commit 1815dc2

Browse files
committed
Normalise syntax
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent 57fa9f5 commit 1815dc2

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

main.nf

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,6 @@ params.transcriptome = "$baseDir/data/ggal/ggal_1_48850000_49020000.Ggal71.500bp
1515
params.outdir = "results"
1616
params.multiqc = "$baseDir/multiqc"
1717

18-
log.info """\
19-
R N A S E Q - N F P I P E L I N E
20-
===================================
21-
transcriptome: ${params.transcriptome}
22-
reads : ${params.reads}
23-
outdir : ${params.outdir}
24-
"""
2518

2619
// import modules
2720
include { RNASEQ } from './modules/rnaseq'
@@ -31,6 +24,15 @@ include { MULTIQC } from './modules/multiqc'
3124
* main script flow
3225
*/
3326
workflow {
27+
28+
log.info """\
29+
R N A S E Q - N F P I P E L I N E
30+
===================================
31+
transcriptome: ${params.transcriptome}
32+
reads : ${params.reads}
33+
outdir : ${params.outdir}
34+
"""
35+
3436
read_pairs_ch = channel.fromFilePairs( params.reads, checkIfExists: true )
3537
RNASEQ( params.transcriptome, read_pairs_ch )
3638
MULTIQC( RNASEQ.out, params.multiqc )

modules/multiqc/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ process MULTIQC {
66

77
input:
88
path '*'
9-
path 'config'
9+
path config
1010

1111
output:
1212
path 'multiqc_report.html', emit: report

0 commit comments

Comments
 (0)