Mercurial > repos > john-mccallum > ssr_marker_design
annotate MISA/design_MISA.sh @ 2:16b5aa275b42 default tip
Uploaded minor revision to gff converter
author | john-mccallum |
---|---|
date | Wed, 23 Nov 2011 19:15:31 -0500 |
parents | 3006582bfc76 |
children |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 #design primer sets from MISA output using Primer 3 and MISA helper scripts | |
3 #USAGE sh design_MISA.sh <misa_file> <source_fasta_file> <output_file> | |
4 | |
5 #get directory | |
6 SCRIPT=`readlink -f $0` | |
7 SCRIPTPATH=`dirname $SCRIPT` | |
8 | |
9 perl $SCRIPTPATH/p3_in.pl $1 $2 temp.p3in | |
10 | |
11 cat temp.p3in | primer3_core > temp.p3out | |
12 | |
13 | |
14 perl $SCRIPTPATH/p3_out.pl temp.p3out $1 $3 | |
15 | |
16 rm -f temp.* | |
17 |