Skip to content

Commit f1b43f1

Browse files
Directly passing sort order to merge. Without it some read pairs could be missed.
1 parent 8780981 commit f1b43f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Snakefiles/8-hicPipeline.sm

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ cat > ./mergeBWA.sh <<EOF
332332
#!/bin/sh
333333
set -e
334334

335-
{params.SAMTOOLS} merge -@ {threads} ../{output.alignments} {params.alignments}
335+
{params.SAMTOOLS} merge -n -@ {threads} ../{output.alignments} {params.alignments}
336336

337337
if [ {params.keepinter} = False ] ; then
338338
rm -f {params.alignments}

0 commit comments

Comments
 (0)