aboutsummaryrefslogtreecommitdiff
path: root/quality_control/standard_error.py
blob: 7b499132394405913075b89eb10caa2bd6052fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""Contain logic for checking standard error files"""
import re

from .errors import InvalidCellValue

def valid_value(val):
    if re.search("^[0-9]+\.[0-9]{6,}$", val):
        return float(val)
    raise InvalidCellValue(
        f"Invalid value '{val}'.\n"
        "Expected string representing a number with at least six decimal "
        "places.")