Skip to content

Commit 5a7b1eb

Browse files
committed
Cleanup
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent 27ff768 commit 5a7b1eb

File tree

3 files changed

+4
-14
lines changed

3 files changed

+4
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ implemented with Nextflow.
1515

1616
1. If you don't have it already install Docker in your computer. Read more [here](https://docs.docker.com/).
1717

18-
2. Install Nextflow (version 23.04.0 or later):
18+
2. Install Nextflow (version 23.10.0 or later):
1919

2020
curl -s https://get.nextflow.io | bash
2121

main.nf

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,6 @@
1111
* defined by the Mozilla Public License, v. 2.0.
1212
*/
1313

14-
/*
15-
* Proof of concept of a RNAseq pipeline implemented with Nextflow
16-
*
17-
* Authors:
18-
* - Paolo Di Tommaso <[email protected]>
19-
* - Emilio Palumbo <[email protected]>
20-
* - Evan Floden <[email protected]>
21-
*/
22-
2314
/*
2415
* enables modules
2516
*/
@@ -55,4 +46,3 @@ workflow {
5546
RNASEQ( params.transcriptome, read_pairs_ch )
5647
MULTIQC( RNASEQ.out, params.multiqc )
5748
}
58-

modules/multiqc/main.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ process MULTIQC {
55
publishDir params.outdir, mode:'copy'
66

77
input:
8-
path('*')
9-
path(config)
8+
path '*'
9+
path 'config'
1010

1111
output:
12-
path('multiqc_report.html'), emit: report
12+
path 'multiqc_report.html', emit: report
1313

1414
script:
1515
"""

0 commit comments

Comments
 (0)