File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,6 @@ params.transcriptome = "$baseDir/data/ggal/ggal_1_48850000_49020000.Ggal71.500bp
15
15
params. outdir = " results"
16
16
params. multiqc = " $baseDir /multiqc"
17
17
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
- """
25
18
26
19
// import modules
27
20
include { RNASEQ } from ' ./modules/rnaseq'
@@ -31,6 +24,15 @@ include { MULTIQC } from './modules/multiqc'
31
24
* main script flow
32
25
*/
33
26
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
+
34
36
read_pairs_ch = channel. fromFilePairs( params. reads, checkIfExists : true )
35
37
RNASEQ ( params. transcriptome, read_pairs_ch )
36
38
MULTIQC ( RNASEQ . out, params. multiqc )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ process MULTIQC {
6
6
7
7
input:
8
8
path ' *'
9
- path ' config'
9
+ path config
10
10
11
11
output:
12
12
path ' multiqc_report.html' , emit: report
You can’t perform that action at this time.
0 commit comments