Skip to content

Commit

Permalink
escape fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeWLloyd committed Jul 18, 2024
1 parent d26c4e0 commit ac67e68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/xengsort/xengsort_classify.nf
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ process XENGSORT_CLASSIFY {
--chunksize 32.0 \
--compression none &> ${sampleID}_xengsort_log.txt
cat fastq-host.1.fq | paste - - - - | sort -k1,1 -t " " | tr "\t" "\n" > ${sampleID}_fastq-host_sorted.1.fq
cat fastq-graft.1.fq | paste - - - - | sort -k1,1 -t " " | tr "\t" "\n" > ${sampleID}_fastq-graft_sorted.1.fq
cat fastq-host.1.fq | paste - - - - | sort -k1,1 -t " " | tr "\\t" "\\n" > ${sampleID}_fastq-host_sorted.1.fq
cat fastq-graft.1.fq | paste - - - - | sort -k1,1 -t " " | tr "\\t" "\\n" > ${sampleID}_fastq-graft_sorted.1.fq
"""

Expand Down

0 comments on commit ac67e68

Please sign in to comment.