blob: b8ff1602fd2f3f3631f5e8651ffac49e7cb822b5 (
plain)
1
2
3
4
5
6
7
|
"""Validate the headers"""
from quality_control.errors import InvalidHeaderValue
def valid_header(strains, headers):
"Return the valid headers with reference to strains or throw an error"
return None
|