File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
RNAseq/Workflow_Documentation/NF_RCP/workflow_code Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ process MD5SUM {
15
15
val(md5sum_label)
16
16
17
17
output:
18
- path(" ${ md5sum_label } _md5sum_GLbulkRNAseq .tsv" ), emit: md5sums
18
+ path(" ${ md5sum_label } md5sum ${ params.assay_suffix } .tsv" ), emit: md5sums
19
19
20
20
script:
21
21
"""
22
22
# Generate raw md5sums
23
23
if [ -d "${ files } " ]; then
24
- find "${ files } " -type f -exec md5sum {} \\ ; > ${ md5sum_label } _md5sum_GLbulkRNAseq .tsv
24
+ find "${ files } " -type f -exec md5sum {} \\ ; > ${ md5sum_label } md5sum ${ params.assay_suffix } .tsv
25
25
else
26
- md5sum ${ files } > ${ md5sum_label } _md5sum_GLbulkRNAseq .tsv
26
+ md5sum ${ files } > ${ md5sum_label } md5sum ${ params.assay_suffix } .tsv
27
27
fi
28
28
29
29
"""
Original file line number Diff line number Diff line change @@ -312,12 +312,12 @@ workflow RNASEQ_MICROBES {
312
312
STAGE_RAW_READS . out. ch_all_raw_reads
313
313
| concat (RAW_READS_MULTIQC . out. zipped_report)
314
314
| collect,
315
- " raw "
315
+ " raw_ "
316
316
)
317
317
318
318
// PROCESSED_MD5SUM(
319
319
// TRIMMED_READS_MULTIQC.out.zipped_report,
320
- // "processed "
320
+ // "processed_ "
321
321
// )
322
322
323
323
// Run Qualimap BAM QC and rnaseq
You can’t perform that action at this time.
0 commit comments