Mercurial > repos > davidvanzessen > argalaxy_tools
annotate igblast/igblast.sh @ 50:2a79f9adf89b draft
Uploaded
author | davidvanzessen |
---|---|
date | Wed, 27 Jan 2016 10:48:31 -0500 |
parents | 6e068ef43336 |
children |
rev | line source |
---|---|
12 | 1 set -e |
2 | |
3 dir="$(cd "$(dirname "$0")" && pwd)" | |
4 | |
5 input=$1 | |
6 species=$2 | |
7 locus=$3 | |
8 output=$4 | |
9 | |
10 | |
11 echo "$input $species $locus $output" | |
12 | |
15 | 13 java -Xmx64G -jar $IGBLASTWRP/igblastwrp.jar -p 4 -S $species -R $locus ${input} $PWD/blasted_output 2>&1 |
12 | 14 |
15 Rscript --verbose $dir/igblast.r "$PWD/blasted_output.L2.txt" "$output" 2>&1 |