We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 125f2af commit 5ccf605Copy full SHA for 5ccf605
1 file changed
main.nf
@@ -947,14 +947,14 @@ process strip_input_fastq {
947
out_fwd = bam.baseName+'.stripped.fq.gz'
948
"""
949
samtools index $bam
950
- extract_map_reads.py $bam ${fq[0]} -of $out_fwd -p ${task.cpus}
+ extract_map_reads.py $bam ${fq[0]} -m ${params.strip_mode} -of $out_fwd -p ${task.cpus}
951
952
} else {
953
out_fwd = bam.baseName+'.stripped.fwd.fq.gz'
954
out_rev = bam.baseName+'.stripped.rev.fq.gz'
955
956
957
- extract_map_reads.py $bam ${fq[0]} -2 ${fq[0]} -of $out_fwd -or $out_rev -p ${task.cpus}
+ extract_map_reads.py $bam ${fq[0]} -rev ${fq[1]} -m ${params.strip_mode} -of $out_fwd -or $out_rev -p ${task.cpus}
958
959
}
960
0 commit comments