Skip to content

Commit

Permalink
- omex uses /tab-separated-values for tsv
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Aug 23, 2024
1 parent f17303f commit ca68f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyenzyme/sbml/omex.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def read_sbml_omex(path: Path) -> tuple[Path, Path | None]:
# but for now just get the first one
data_entry = None
for entry in omex.manifest.entries:
if '/csv' in entry.format or '/tsv' in entry.format:
if '/csv' in entry.format or '/tsv' in entry.format or '/tab-separated-values' in entry.format:
data_entry = entry.location
break
data = omex.get_path(data_entry)
Expand Down

0 comments on commit ca68f4f

Please sign in to comment.