Skip to content

Commit e842c55

Browse files
authored
Merge pull request #83 from rnabioco/copilot/sub-pr-82
Fix unquoted shell parameter substitutions in cutadapt_paired rule
2 parents e5455dd + 9117b6f commit e842c55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/cutadapt_star.snake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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} \

0 commit comments

Comments
 (0)