Skip to content

Commit

Permalink
Directly passing sort order to merge. Without it some read pairs coul…
Browse files Browse the repository at this point in the history
…d be missed.
  • Loading branch information
Dmitry-Antipov committed May 1, 2024
1 parent 8780981 commit f1b43f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Snakefiles/8-hicPipeline.sm
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ cat > ./mergeBWA.sh <<EOF
#!/bin/sh
set -e

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

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

0 comments on commit f1b43f1

Please sign in to comment.