#!/bin/sh -e
DIR=$(pwd | cut -d '/' -f 4-)
for i in *.2.0
do
	echo "http://trackhub.genome.duke.edu/$DIR/$i"
done
echo DONE
exit 0
