Skip to content

Commit 167786d

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

File tree

3 files changed

+4
-25
lines changed

3 files changed

+4
-25
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 & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,9 @@
11
#!/usr/bin/env nextflow
22

3-
/*
4-
* Copyright (c) 2013-2023, Seqera Labs.
5-
*
6-
* This Source Code Form is subject to the terms of the Mozilla Public
7-
* License, v. 2.0. If a copy of the MPL was not distributed with this
8-
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
9-
*
10-
* This Source Code Form is "Incompatible With Secondary Licenses", as
11-
* defined by the Mozilla Public License, v. 2.0.
12-
*/
13-
143
/*
154
* 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]>
215
*/
226

23-
/*
24-
* enables modules
25-
*/
26-
nextflow.enable.dsl = 2
277

288
/*
299
* Default pipeline parameters. They can be overriden on the command line eg.
@@ -55,4 +35,3 @@ workflow {
5535
RNASEQ( params.transcriptome, read_pairs_ch )
5636
MULTIQC( RNASEQ.out, params.multiqc )
5737
}
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)