Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
""" Exception for when a genome config filepath doesn't point to a file. """
def __init__(self, conf_file=None):
"""
Create the error message, using optionally an attempt filepath.
:param str conf_file: path attempted to be used as genome config file
"""
msg = "You must provide a config file either as an argument or via an environment variable: {}"\
.format(", ".join(CFG_ENV_VARS))
if conf_file:
msg = "Not a file {} -- {}.".format(conf_file, msg)
super(MissingGenomeConfigError, self).__init__(msg)
class MissingFolderError(RefgenieError):
def __init__(self, folder):
"""
Create the error message.
:param str folder: path attempted to be used as folder to save a file to
"""
super(MissingFolderError, self).__init__(folder)
from refgenconf import CFG_ENV_VARS
__all__ = ["RefgenieError", "MissingGenomeConfigError"]
class RefgenieError(Exception):
""" Base refgenie exception type """
pass
class MissingGenomeConfigError(RefgenieError):
""" Exception for when a genome config filepath doesn't point to a file. """
def __init__(self, conf_file=None):
"""
Create the error message, using optionally an attempt filepath.
:param str conf_file: path attempted to be used as genome config file
"""
msg = "You must provide a config file either as an argument or via an environment variable: {}"\
.format(", ".join(CFG_ENV_VARS))
if conf_file:
msg = "Not a file {} -- {}.".format(conf_file, msg)
super(MissingGenomeConfigError, self).__init__(msg)
class MissingFolderError(RefgenieError):