#! /bin/bash
if [ $# != 1 ]
then
    echo "Usage: bed2hotspot <bed file>"
    exit
fi
awk '{print substr($1, 4), $2}' $1
