Skip to content

Commit 8780981

Browse files
removed condition on the identity. mashmaps --pi is enough and that one was just not correct
1 parent 3881415 commit 8780981

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
@@ -103,7 +103,7 @@ cat > ./run_mashmap.sh <<EOF
103103
set -e
104104
echo "---Running MashMap"
105105
{params.MASHMAP} -r ../{input.unitigs_hpc} -q ../{input.unitigs_hpc} -t {threads} -f none --pi {params.MASHMAP_DIV} -s 10000 -o mashmap.out
106-
cat mashmap.out |awk '{{if (\$NF > 99 && \$4-\$3 > 100000 && \$1 != \$6) print \$1"\\t"\$6"\\t"\$4-\$3}}'|sort |uniq > ../{output.unitigs_matches}
106+
cat mashmap.out |awk '{{if (\$4-\$3 > 100000 && \$1 != \$6) print \$1"\\t"\$6"\\t"\$4-\$3}}'|sort |uniq > ../{output.unitigs_matches}
107107
EOF
108108

109109
chmod +x ./run_mashmap.sh

0 commit comments

Comments
 (0)