File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ rule cutadapt_paired:
117117 cat {input} > {output.R1}
118118 cat $(echo {input} | sed 's/_R1/_R2/g') > {output.R2}
119119 else
120- if [ -z {params.bc_cut} ] ; then
120+ if [ -z " {params.bc_cut}" ] ; then
121121 echo "no additional trimming"
122122 cutadapt -j 24 \
123123 {params.cut_params} \
@@ -129,7 +129,7 @@ rule cutadapt_paired:
129129 echo "removing internal seq..."
130130 cutadapt --discard-untrimmed --info-file {params.info} -o /dev/null -p {params.temp2} -g {params.bc_cut} =(cat {input}) =(cat $(echo {input} | sed 's/_R1/_R2/g'))
131131 echo "stitching R1 FASTQ back together..."
132- if [ -z {params.bc_length1} ];
132+ if [ -z " {params.bc_length1}" ];
133133 then
134134 python3 inst/scripts/cut_paste_fastq.py -i {params.info} -o {params.temp}
135135 else
You can’t perform that action at this time.
0 commit comments