view change_o/makedb.sh @ 2:72d68e2e1fd3 draft

"planemo upload commit a8565b413cbe0ef70bc22994ecdd48b400ba6185"
author rhpvorderman
date Fri, 05 Nov 2021 14:43:13 +0000
parents 64d74ba01a7c
children
line wrap: on
line source

#!/bin/bash
dir="$(cd "$(dirname "$0")" && pwd)"

input=$1
noparse=$2
scores=$3
regions=$4
output=$5

if [ "true" == "$noparse" ] ; then
	noparse="--noparse"
else
	noparse=""
fi

if [ "true" == "$scores" ] ; then
	scores="--scores"
else
	scores=""
fi

if [ "true" == "$regions" ] ; then
	regions="--regions"
else
	regions=""
fi

mkdir $PWD/outdir

echo "makedb: $PWD/outdir"

MakeDb.py imgt -i $input --outdir $PWD/outdir --outname output $noparse $scores $regions

mv $PWD/outdir/output_db-pass.tab $output

rm -rf $PWD/outdir/