Mercurial > repos > dktanwar > removesnps
annotate 01_RemoveSNPs/RemoveSNPs @ 0:21aaaa2d3004 draft
Uploaded
author | dktanwar |
---|---|
date | Mon, 16 Oct 2017 13:24:04 -0400 |
parents | |
children |
rev | line source |
---|---|
0 | 1 #!/bin/bash |
2 | |
3 #if [ "$1" == "-h" ]; then | |
4 if [[ -z $1 || -z $2 || $1 == "-h" ]]; then | |
5 echo "This program will remove mismatches from sam file." | |
6 echo "Usage: `basename $0` test.sam 3" | |
7 exit 0 | |
8 fi | |
9 | |
10 cmd="echo perl -ne 'print if((/XM:i:[0-$2][^0-9]/) || (/^@/));' $1" | |
11 eval `$cmd` |