Check if the header looks like it is Illumina software post-casava v1.8
Parameters: | header_line : bytes
|
---|---|
Returns: | bool
|
Examples
>>> from skbio.util.misc import is_casava_v180_or_later
>>> print(is_casava_v180_or_later('@foo'))
False
>>> id_ = '@M00176:17:000000000-A0CNA:1:1:15487:1773 1:N:0:0'
>>> print(is_casava_v180_or_later(id_))
True