#!/bin/bash
# Sort VCF using shell script

head -1000 $1 | grep "^#"; cat $@ | grep -v "^#" | sort -k1,1d -k2,2n
