We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f17303f commit ca68f4fCopy full SHA for ca68f4f
pyenzyme/sbml/omex.py
@@ -82,7 +82,7 @@ def read_sbml_omex(path: Path) -> tuple[Path, Path | None]:
82
# but for now just get the first one
83
data_entry = None
84
for entry in omex.manifest.entries:
85
- 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:
86
data_entry = entry.location
87
break
88
data = omex.get_path(data_entry)
0 commit comments