We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you create a ValueSetExpander without specifying a configuration, it will include a default config:
ValueSetExpander
DEFAULT_CONFIG = ValueSetConfiguration(default_resolver=Resolver("", shorthand_prefix="sqlite:obo")) ... configuration: ValueSetConfiguration = field(default_factory=lambda: DEFAULT_CONFIG)
This is handy for OBO ontologies but is too magical. Instead it should only match this when the user specified obo: as the prefix.
obo:
Also it's probably best if this is not the default resolver but instead something the user has to opt in to
See also monarch-initiative/ontogpt#346
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you create a
ValueSetExpander
without specifying a configuration, it will include a default config:This is handy for OBO ontologies but is too magical. Instead it should only match this when the user specified
obo:
as the prefix.Also it's probably best if this is not the default resolver but instead something the user has to opt in to
See also monarch-initiative/ontogpt#346
The text was updated successfully, but these errors were encountered: