File tree 2 files changed +19
-7
lines changed
2 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
nextflow. preview. output = true
8
+ nextflow. preview. params = true
8
9
9
10
/*
10
- * Default pipeline parameters. They can be overriden on the command line eg.
11
+ * Default pipeline parameters. They can be overridden on the command line eg.
11
12
* given `params.reads` specify on the run command line `--reads some_value`.
12
13
*/
14
+ params {
15
+ /* *
16
+ * CSV file of FASTQ pairs to analyze.
17
+ */
18
+ reads
13
19
14
- params. reads = null
15
- params. transcriptome = null
16
- params. outdir = " results"
17
- params. multiqc = " $projectDir /multiqc"
20
+ /* *
21
+ * FASTA file for the reference transcriptome.
22
+ */
23
+ transcriptome
24
+
25
+ /* *
26
+ * Directory containing the configuration for MultiQC.
27
+ */
28
+ multiqc = " $projectDir /multiqc"
29
+ }
18
30
19
31
/*
20
32
* import modules
@@ -32,7 +44,7 @@ workflow {
32
44
===================================
33
45
transcriptome: ${ params.transcriptome}
34
46
reads : ${ params.reads}
35
- outdir : ${ params.outdir }
47
+ outdir : ${ workflow.outputDir }
36
48
""" . stripIndent()
37
49
38
50
inputs_ch = channel. fromPath(params. reads)
Original file line number Diff line number Diff line change 13
13
manifest {
14
14
description = ' Proof of concept of a RNA-seq pipeline implemented with Nextflow'
15
15
author = ' Paolo Di Tommaso'
16
- nextflowVersion = ' >=23.10 .0'
16
+ nextflowVersion = ' >=25.04 .0'
17
17
}
18
18
19
19
/*
You can’t perform that action at this time.
0 commit comments