blob: 648611e72d2c12db8586f4296aad4304a9b7be40 (
plain)
1
2
3
4
5
6
7
8
|
"""R/qtl and R/qtl2 error types."""
from collections import namedtuple
class RQTLError(Exception):
"""Base class for R/qtl and R/qtl2 errors."""
class InvalidFormat(RQTLError):
"""Raised when the format of the file(s) is invalid."""
|