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 d22a2c3 commit 5046de4Copy full SHA for 5046de4
sssom/util.py
@@ -945,7 +945,7 @@ class NoCURIEException(ValueError):
945
"""An exception raised when a CURIE can not be parsed with a given prefix map."""
946
947
948
-CURIE_RE = re.compile(r"[A-Za-z0-9_]+[:][A-Za-z0-9_]")
+CURIE_RE = re.compile(r"[A-Za-z0-9_.]+[:][A-Za-z0-9_]")
949
950
951
def is_curie(string: str) -> bool:
tests/test_parsers.py
@@ -98,7 +98,7 @@ def test_parse_obographs(self):
98
write_table(msdf, file)
99
self.assertEqual(
100
len(msdf.df),
101
- 9876,
+ 9880,
102
f"{self.obographs_file} has the wrong number of mappings.",
103
)
104
0 commit comments