Skip to content

Commit ca68f4f

Browse files
committed
- omex uses /tab-separated-values for tsv
1 parent f17303f commit ca68f4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyenzyme/sbml/omex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def read_sbml_omex(path: Path) -> tuple[Path, Path | None]:
8282
# but for now just get the first one
8383
data_entry = None
8484
for entry in omex.manifest.entries:
85-
if '/csv' in entry.format or '/tsv' in entry.format:
85+
if '/csv' in entry.format or '/tsv' in entry.format or '/tab-separated-values' in entry.format:
8686
data_entry = entry.location
8787
break
8888
data = omex.get_path(data_entry)

0 commit comments

Comments
 (0)