File tree 3 files changed +4
-25
lines changed
3 files changed +4
-25
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ implemented with Nextflow.
15
15
16
16
1 . If you don't have it already install Docker in your computer. Read more [ here] ( https://docs.docker.com/ ) .
17
17
18
- 2 . Install Nextflow (version 23.04 .0 or later):
18
+ 2 . Install Nextflow (version 23.10 .0 or later):
19
19
20
20
curl -s https://get.nextflow.io | bash
21
21
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env nextflow
2
2
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
-
14
3
/*
15
4
* 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
5
*/
22
6
23
- /*
24
- * enables modules
25
- */
26
- nextflow. enable. dsl = 2
27
7
28
8
/*
29
9
* Default pipeline parameters. They can be overriden on the command line eg.
@@ -55,4 +35,3 @@ workflow {
55
35
RNASEQ ( params. transcriptome, read_pairs_ch )
56
36
MULTIQC ( RNASEQ . out, params. multiqc )
57
37
}
58
-
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ process MULTIQC {
5
5
publishDir params. outdir, mode:' copy'
6
6
7
7
input:
8
- path( ' *' )
9
- path(config)
8
+ path ' *'
9
+ path ' config '
10
10
11
11
output:
12
- path( ' multiqc_report.html' ) , emit: report
12
+ path ' multiqc_report.html' , emit: report
13
13
14
14
script:
15
15
"""
You can’t perform that action at this time.
0 commit comments