#!/bin/bash
if [ $# -eq 0 ]; then
    python -m ngsphy -h
else
	python -m ngsphy $@
fi
