Source code for mavis
"""
holds submodules related to structural variants
"""
import subprocess
import os
[docs]def get_version():
v = subprocess.check_output('cd {}; git describe'.format(os.path.dirname(__file__)), shell=True)
v = v.decode('UTF8')
v = v.strip()
return v
__version__ = '1.0.0'