You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RNAseq/Workflow_Documentation/NF_RCP/workflow_code/conf/runsheet_schema.json
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,25 +8,30 @@
8
8
"properties": {
9
9
"Sample Name": {
10
10
"type": "string",
11
-
"description": "Sample Name, added as a prefix to sample-specific processed data output files. Should not include spaces or weird characters."
11
+
"description": "Sample Name, added as a prefix to sample-specific processed data output files. Should not include spaces or weird characters.",
12
+
"errorMessage": "'Sample Name' must be specified."
12
13
},
13
14
"has_ERCC": {
14
15
"type": "boolean",
15
-
"description": "Set to True if ERCC spike-ins are included in the samples. This ensures ERCC normalized DGE is performed in addition to standard DGE."
16
+
"description": "Set to True if ERCC spike-ins are included in the samples. This ensures ERCC normalized DGE is performed in addition to standard DGE.",
17
+
"errorMessage": "has_ERCC must be specified as true or false in the runsheet."
16
18
},
17
19
"paired_end": {
18
20
"type": "boolean",
19
-
"description": "Set to True if the samples were sequenced as paired-end. If set to False, samples are assumed to be single-end."
21
+
"description": "Set to True if the samples were sequenced as paired-end. If set to False, samples are assumed to be single-end.",
22
+
"errorMessage": "paired_end must be specified as true or false in the runsheet."
20
23
},
21
24
"organism": {
22
25
"type": "string",
23
-
"description": "The organism of the samples. This is used to select the appropriate annotation files."
26
+
"description": "The organism of the samples. This is used to select the appropriate annotation files.",
27
+
"errorMessage": "'organism' must be specified in the runsheet."
24
28
},
25
29
"read1_path": {
26
30
"type": "string",
27
31
"pattern": "^\\S+\\.f(ast)?q\\.gz$",
28
32
"format": "file-path",
29
-
"description": "Location of the raw reads file. For paired-end data, this specifies the forward reads fastq.gz file."
33
+
"description": "Location of the raw reads file. For paired-end data, this specifies the forward reads fastq.gz file.",
34
+
"errorMessage": "read1_path must be specified in the runsheet."
Copy file name to clipboardExpand all lines: RNAseq/Workflow_Documentation/NF_RCP/workflow_code/workflows/rnaseq.nf
+21-22Lines changed: 21 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -31,17 +31,17 @@ include { REMOVE_RRNA } from '../modules/remove_rrna.nf'
31
31
include { QUANTIFY_RSEM_GENES } from '../modules/quantify_rsem_genes.nf'
32
32
include { PARSE_QC_METRICS } from '../modules/parse_qc_metrics.nf'
33
33
34
-
include { MULTIQCasRAW_READS_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"raw")
35
-
include { MULTIQCasTRIMMED_READS_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"trimmed")
36
-
include { MULTIQCasTRIMMING_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"trimming")
37
-
include { MULTIQCasALIGN_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"align")
38
-
include { MULTIQCasGENEBODY_COVERAGE_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"geneBody_cov") //PublishTo: "RSeQC_Analyses/02_geneBody_coverage",
39
-
include { MULTIQCasINFER_EXPERIMENT_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"infer_exp") //PublishTo: "RSeQC_Analyses/03_infer_experiment",
40
-
include { MULTIQCasINNER_DISTANCE_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"inner_dist") //PublishTo: "RSeQC_Analyses/04_inner_distance",
41
-
include { MULTIQCasREAD_DISTRIBUTION_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"read_dist") //PublishTo: "RSeQC_Analyses/05_read_distribution",
42
-
include { MULTIQCasCOUNT_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"RSEM_count")
43
-
include { MULTIQCasQUALIMAP_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"qualimap")
44
-
include { MULTIQCasALL_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"all")
34
+
include { MULTIQCasRAW_READS_MULTIQC } from '../modules/multiqc.nf'
35
+
include { MULTIQCasTRIMMED_READS_MULTIQC } from '../modules/multiqc.nf'
36
+
include { MULTIQCasTRIMMING_MULTIQC } from '../modules/multiqc.nf'
37
+
include { MULTIQCasALIGN_MULTIQC } from '../modules/multiqc.nf'
38
+
include { MULTIQCasGENEBODY_COVERAGE_MULTIQC } from '../modules/multiqc.nf'
39
+
include { MULTIQCasINFER_EXPERIMENT_MULTIQC } from '../modules/multiqc.nf'
40
+
include { MULTIQCasINNER_DISTANCE_MULTIQC } from '../modules/multiqc.nf'
41
+
include { MULTIQCasREAD_DISTRIBUTION_MULTIQC } from '../modules/multiqc.nf'
42
+
include { MULTIQCasCOUNT_MULTIQC } from '../modules/multiqc.nf'
43
+
include { MULTIQCasQUALIMAP_MULTIQC } from '../modules/multiqc.nf'
44
+
include { MULTIQCasALL_MULTIQC } from '../modules/multiqc.nf'
45
45
//include { QUALIMAP_BAM_QC } from '../modules/qualimap.nf' not implemented
46
46
//include { QUALIMAP_RNASEQ_QC } from '../modules/qualimap.nf' not implemented
Copy file name to clipboardExpand all lines: RNAseq/Workflow_Documentation/NF_RCP/workflow_code/workflows/rnaseq_microbes.nf
+34-41Lines changed: 34 additions & 41 deletions
Original file line number
Diff line number
Diff line change
@@ -31,16 +31,16 @@ include { READ_DISTRIBUTION } from '../modules/rseqc.nf'
31
31
include { ASSESS_STRANDEDNESS } from '../modules/assess_strandedness.nf'
32
32
33
33
34
-
include { MULTIQCasRAW_READS_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"raw")
35
-
include { MULTIQCasTRIMMED_READS_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"trimmed")
36
-
include { MULTIQCasTRIMMING_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"trimming")
37
-
include { MULTIQCasALIGN_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"align")
38
-
include { MULTIQCasGENEBODY_COVERAGE_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"geneBody_cov") //PublishTo: "RSeQC_Analyses/02_geneBody_coverage",
39
-
include { MULTIQCasINFER_EXPERIMENT_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"infer_exp") //PublishTo: "RSeQC_Analyses/03_infer_experiment",
40
-
include { MULTIQCasINNER_DISTANCE_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"inner_dist") //PublishTo: "RSeQC_Analyses/04_inner_distance",
41
-
include { MULTIQCasREAD_DISTRIBUTION_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"read_dist") //PublishTo: "RSeQC_Analyses/05_read_distribution",
42
-
include { MULTIQCasCOUNT_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"featureCounts")
43
-
include { MULTIQCasALL_MULTIQC } from '../modules/multiqc.nf' addParams(MQCLabel:"all")
34
+
include { MULTIQCasRAW_READS_MULTIQC } from '../modules/multiqc.nf'
35
+
include { MULTIQCasTRIMMED_READS_MULTIQC } from '../modules/multiqc.nf'
36
+
include { MULTIQCasTRIMMING_MULTIQC } from '../modules/multiqc.nf'
37
+
include { MULTIQCasALIGN_MULTIQC } from '../modules/multiqc.nf'
38
+
include { MULTIQCasGENEBODY_COVERAGE_MULTIQC } from '../modules/multiqc.nf'
39
+
include { MULTIQCasINFER_EXPERIMENT_MULTIQC } from '../modules/multiqc.nf'
40
+
include { MULTIQCasINNER_DISTANCE_MULTIQC } from '../modules/multiqc.nf'
41
+
include { MULTIQCasREAD_DISTRIBUTION_MULTIQC } from '../modules/multiqc.nf'
42
+
include { MULTIQCasCOUNT_MULTIQC } from '../modules/multiqc.nf'
43
+
include { MULTIQCasALL_MULTIQC } from '../modules/multiqc.nf'
44
44
45
45
// include { QUALIMAP_BAM_QC } from '../modules/qualimap.nf'
46
46
// include { QUALIMAP_RNASEQ_QC } from '../modules/qualimap.nf'
@@ -58,8 +58,8 @@ include { ADD_GENE_ANNOTATIONS } from '../modules/add_gene_annotations.nf'
58
58
59
59
include { SOFTWARE_VERSIONS } from '../modules/software_versions.nf'
60
60
61
-
include { MD5SUMasRAW_MD5SUM } from '../modules/md5sum.nf' addParams(md5sumLabel:"raw")
62
-
include { MD5SUMasPROCESSED_MD5SUM } from '../modules/md5sum.nf' addParams(md5sumLabel:"processed")
61
+
include { MD5SUMasRAW_MD5SUM } from '../modules/md5sum.nf'
62
+
include { MD5SUMasPROCESSED_MD5SUM } from '../modules/md5sum.nf'
63
63
64
64
include { validateParameters; paramsSummaryLog; samplesheetToList } from 'plugin/nf-schema'
65
65
@@ -118,7 +118,7 @@ workflow RNASEQ_MICROBES {
118
118
ch_isa_versions =ISA_TO_RUNSHEET.out.versions // Capture version if ISA_TO_RUNSHEET runs
0 commit comments