Skip to content

Commit

Permalink
Fix stub run trimmomatic
Browse files Browse the repository at this point in the history
  • Loading branch information
kiei-rz authored Dec 4, 2024
1 parent 8541ec4 commit aaefa60
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/nf-core/trimmomatic/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ process TRIMMOMATIC {
def prefix = task.ext.prefix ?: "${meta.id}"

if (meta.single_end) {
output_command = "echo '' | gzip > ${prefix}.SE.paired.trim.fastq.gz"
output_command = "echo '' | gzip > ${prefix}.SE.paired.trim.fastq.gz\n"
} else {
output_command = "echo '' | gzip > ${prefix}.paired.trim_1.fastq.gz"
output_command = "echo '' | gzip > ${prefix}.paired.trim_2.fastq.gz"
output_command += "echo '' | gzip > ${prefix}.unpaired.trim_1.fastq.gz"
output_command += "echo '' | gzip > ${prefix}.unpaired.trim_2.fastq.gz"
output_command = "echo '' | gzip > ${prefix}.paired.trim_1.fastq.gz\n"
output_command += "echo '' | gzip > ${prefix}.paired.trim_2.fastq.gz\n"
output_command += "echo '' | gzip > ${prefix}.unpaired.trim_1.fastq.gz\n"
output_command += "echo '' | gzip > ${prefix}.unpaired.trim_2.fastq.gz\n"
}

"""
Expand Down

0 comments on commit aaefa60

Please sign in to comment.