view tabix.sh @ 0:75064adad442 draft default tip

Uploaded
author takadonet
date Thu, 16 Jan 2014 10:57:12 -0500
parents
children
line wrap: on
line source

#!/bin/bash


output=$1 
shift
#get working directory so we can find the output files 
CUR_DIR=`pwd`

#run tabix
$CUR_DIR/tabix.sh $@ > $output

exit 0