Mercurial > repos > dktanwar > removesnp
view 01_RemoveSNPs/RemoveSNPs @ 7:cd9c123ab04f draft default tip
Uploaded
author | dktanwar |
---|---|
date | Mon, 16 Oct 2017 14:20:00 -0400 |
parents | 12f2a7545ff2 |
children |
line wrap: on
line source
#!/bin/bash #if [ "$1" == "-h" ]; then if [[ -z $1 || -z $2 || $1 == "-h" ]]; then echo "This program will remove mismatches from sam file." echo "Usage: `basename $0` test.sam 3" exit 0 fi cmd="echo perl -ne 'print if((/XM:i:[0-$2][^0-9]/) || (/^@/));' $1" eval `$cmd`