summaryrefslogtreecommitdiff
path: root/demo/rastbatch.sh
blob: cba86fae06c5e5b5d89d93e952c073050f633314 (plain)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

# usage ./rastbatch.sh template directory locus_tag_prefix product_id_prefix

PATH=$PATH:.
export PATH

find $2 -name "*.gb" | while read file; do
  ./rast2sqn.sh $1 $file $3 $4
done