#!/usr/bin/env bash

if [[ ! $@ ]]; then
    python3 -m primer_tk -h
else
    python3 -m primer_tk $@
fi

