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
1515params. outdir = " results"
1616params. 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
2720include { RNASEQ } from ' ./modules/rnaseq'
@@ -31,6 +24,15 @@ include { MULTIQC } from './modules/multiqc'
3124 * main script flow
3225 */
3326workflow {
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 )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments