Closed ghuls closed 5 months ago
This validation comes from The Browser Extensible Data (BED) format § 1.5 "BED fields" (2022-01-05), which requires names/descriptions (column 4) to be <= 255 characters in length:
Col BED Field Type Regex or range Brief description 4 name
String [\x20-\x7e]{1,255}
Feature description
I plan to split the format and buffer records for BED, but until then, I'll remove name validation on parse and apply it at serialization.
Would it be possible to optionally disable the BED name column limit of 255 bytes?
When trying to load a BED file with long names (concatenated peak names before merging peaks), I hit this limit in biobear: https://github.com/wheretrue/biobear/issues/145