diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tabix.sh	Thu Jan 16 10:57:12 2014 -0500
@@ -0,0 +1,12 @@
+#!/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