API documentation

gRNA set generator for multiple genes in multiple genomes.

https://rlrq.github.io/MINORg

exception minorg.InputFormatError(error_src=None, error_src_type=None, hint=None, message=None)[source]

Bases: minorg.MINORgError

__init__(error_src=None, error_src_type=None, hint=None, message=None)[source]
exception minorg.InvalidFile(path)[source]

Bases: minorg.MINORgError

__init__(path)[source]
exception minorg.InvalidPath(path)[source]

Bases: minorg.MINORgError

__init__(path)[source]
exception minorg.MINORgError(message)[source]

Bases: Exception

MINORg exception.

MINORg should use this exception (or subclasses of it) to raise non-typer or non-click exceptions without printing traceback. (i.e. Traceback is reserved for errors of unknown origin.)

__init__(message)[source]
print_message()[source]
exception minorg.MINORgWarning[source]

Bases: Warning

MINORg warning.

MINORg should use this warning (or subclasses of it), making it easy to silence all its warnings should you wish to.

>>> import warnings
>>> from minorg import MINORgWarning
>>> warnings.simplefilter('ignore', MINORgWarning)

Consult the warnings module documentation for more details.

exception minorg.UnreadableFile(path)[source]

Bases: minorg.MINORgError

__init__(path)[source]