File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed
RNAseq/Workflow_Documentation/NF_RCP/workflow_code Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ process {
60
60
container = "quay.io/biocontainers/rsem:1.3.3--pl526ha52163a_0"
61
61
}
62
62
63
- withName: 'GET_ACCESSIONS|FETCH_ISA|ISA_TO_RUNSHEET|RUNSHEET_FROM_ISA|GENERATE_MD5SUMS|SOFTWARE_VERSIONS|UPDATE_ISA_TABLES|PARSE_QC_METRICS|REMOVE_RRNA_FEATURECOUNTS|MD5SUM' {
63
+ withName: 'GET_ACCESSIONS|FETCH_ISA|ISA_TO_RUNSHEET|RUNSHEET_FROM_ISA|GENERATE_MD5SUMS|SOFTWARE_VERSIONS|UPDATE_ISA_TABLES|PARSE_QC_METRICS|REMOVE_RRNA_FEATURECOUNTS|MD5SUM|CLEAN_MULTIQC_PATHS ' {
64
64
container = "quay.io/nasa_genelab/dp_tools:1.3.5"
65
65
}
66
66
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ process {
17
17
maxErrors = '-1'
18
18
19
19
// See https://www.nextflow.io/docs/latest/config.html#config-process-selectors
20
- withName:'GET_ACCESSIONS|FETCH_ISA|ISA_TO_RUNSHEET|PARSE_ANNOTATIONS_TABLE|COPY_READS|GET_MAX_READ_LENGTH|ADD_GENE_ANNOTATIONS|EXTEND_DGE_TABLE|VV_RAW_READS|GET_GTF_FEATURES|REMOVE_RRNA_FEATURECOUNTS|MD5SUM' {
20
+ withName:'GET_ACCESSIONS|FETCH_ISA|ISA_TO_RUNSHEET|PARSE_ANNOTATIONS_TABLE|COPY_READS|GET_MAX_READ_LENGTH|ADD_GENE_ANNOTATIONS|EXTEND_DGE_TABLE|VV_RAW_READS|GET_GTF_FEATURES|REMOVE_RRNA_FEATURECOUNTS|MD5SUM|CLEAN_MULTIQC_PATHS ' {
21
21
cpus = { 1 }
22
22
memory = { 2.GB }
23
23
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ process {
18
18
cache = 'lenient'
19
19
20
20
// See https://www.nextflow.io/docs/latest/config.html#config-process-selectors
21
- withName:'GET_ACCESSIONS|FETCH_ISA|ISA_TO_RUNSHEET|PARSE_ANNOTATIONS_TABLE|COPY_READS|GET_MAX_READ_LENGTH|ADD_GENE_ANNOTATIONS|EXTEND_DGE_TABLE|VV_RAW_READS|GET_GTF_FEATURES|REMOVE_RRNA_FEATURECOUNTS|MD5SUM' {
21
+ withName:'GET_ACCESSIONS|FETCH_ISA|ISA_TO_RUNSHEET|PARSE_ANNOTATIONS_TABLE|COPY_READS|GET_MAX_READ_LENGTH|ADD_GENE_ANNOTATIONS|EXTEND_DGE_TABLE|VV_RAW_READS|GET_GTF_FEATURES|REMOVE_RRNA_FEATURECOUNTS|MD5SUM|CLEAN_MULTIQC_PATHS ' {
22
22
cpus = { 1 }
23
23
memory = { 2.GB }
24
24
}
Original file line number Diff line number Diff line change
1
+ process CLEAN_MULTIQC_PATHS {
2
+ tag " ${ mqc_label} "
3
+
4
+ input:
5
+ path(multiqc_report_zip)
6
+ val(mqc_label)
7
+
8
+ output:
9
+ path(" output/${ mqc_label} _multiqc${ params.assay_suffix} _report.zip" ), emit: zipped_report
10
+
11
+ script:
12
+ """
13
+ # Setup
14
+ mkdir -p output
15
+ unzip -q ${ multiqc_report_zip} -d ./output
16
+
17
+ cd ./output
18
+ zip -r ${ multiqc_report_zip} . -i "*_data" "*.html"
19
+ """
20
+ }
You can’t perform that action at this time.
0 commit comments