Skip to content
Snippets Groups Projects
Verified Commit 3d5118d9 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

fix typo in nf files

parent 4f6d0692
Branches
Tags
No related merge requests found
......@@ -29,7 +29,7 @@ process fastqc_fastq {
file reads from fastq_files
output:
file "*.{zip,html}" into fastqc_repport
file "*.{zip,html}" into fastqc_report
script:
"""
......@@ -59,7 +59,7 @@ process fastqc_fastq {
set pair_id, file(reads) from fastq_files
output:
file "*.{zip,html}" into fastqc_repport
file "*.{zip,html}" into fastqc_report
script:
"""
......
......@@ -15,7 +15,7 @@ process fastqc_fastq {
set pair_id, file(reads) from fastq_files
output:
file "*.{zip,html}" into fastqc_repport
file "*.{zip,html}" into fastqc_report
script:
"""
......
......@@ -16,7 +16,7 @@ process fastqc_fastq {
file reads from fastq_files
output:
file "*.{zip,html}" into fastqc_repport
file "*.{zip,html}" into fastqc_report
script:
"""
......
......@@ -7,12 +7,12 @@
/* MultiQC */
process multiqc {
tag "$repport.baseName"
tag "$report.baseName"
publishDir "results/fastq/multiqc/", mode: 'copy'
cpus = 1
input:
file repport from fastqc_repport.collect()
file report from fastqc_report.collect()
output:
file "*multiqc_*" into multiqc_report
......
......@@ -15,7 +15,7 @@ process fastqc_fastq {
set pair_id, file(reads) from fastq_files
output:
file "*.{zip,html}" into fastqc_repport
file "*.{zip,html}" into fastqc_report
script:
"""
......@@ -25,12 +25,12 @@ ${reads[0]} ${reads[1]}
}
process multiqc {
tag "$repport[0].baseName"
tag "$report[0].baseName"
publishDir "results/fastq/multiqc/", mode: 'copy'
cpus = 1
input:
file repport from fastqc_repport.collect()
file report from fastqc_report.collect()
output:
file "*multiqc_*" into multiqc_report
......
......@@ -16,7 +16,7 @@ process fastqc_fastq {
file reads from fastq_files
output:
file "*.{zip,html}" into fastqc_repport
file "*.{zip,html}" into fastqc_report
script:
"""
......@@ -25,12 +25,12 @@ fastqc --quiet --threads ${task.cpus} --format fastq --outdir ./ ${reads}
}
process multiqc {
tag "$repport[0].baseName"
tag "$report[0].baseName"
publishDir "results/fastq/multiqc/", mode: 'copy'
cpus = 1
input:
file repport from fastqc_repport.collect()
file report from fastqc_report.collect()
output:
file "*multiqc_*" into multiqc_report
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment