Skip to content
New issue

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

new parsers and fun things annotation change, config additions for t… #356

Merged
merged 6 commits into from
Jun 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix tranqlizer
YaphetKG committed Jun 6, 2024
commit 807aafa635867c6bfbe1979f341e57bb99bd5094
2 changes: 1 addition & 1 deletion src/dug/core/concept_expander.py
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ def expand_identifier(self, identifier, query_factory, kg_filename, include_all_
with open(kg_filename, 'r') as stream:
response = json.load(stream)
else:
query = query_factory._get_var_query(identifier)
query = query_factory.get_query(identifier)
logger.debug(query)
response = requests.post(
url=self.url,