-
Notifications
You must be signed in to change notification settings - Fork 0
Knowledge Graph Comparison Features #1
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
Open
tekrajchhetri
wants to merge
25
commits into
main
Choose a base branch
from
dev
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
ba1986d
poetry lock added
tekrajchhetri f86cb02
Updated cli.py to include the options necessary for comparing the cha…
tekrajchhetri 18d4fa2
example test graphs in jsonld format
tekrajchhetri 14d0b52
removed unused file
tekrajchhetri 1a05507
unit test for testing the conversion
tekrajchhetri 36b8e5a
Delete test_app.py
tekrajchhetri f0963da
import updated
tekrajchhetri 04d573f
created shared.py and added necessary helper functions to convert the…
tekrajchhetri 0640287
updated cli, removed --compare_type option
tekrajchhetri 5dfc16b
docstring updated
tekrajchhetri 2845b5e
Create test_data.ttl
tekrajchhetri 23253a7
Update description about compare function
tekrajchhetri 57297fa
updated the test files
tekrajchhetri 88ab466
added test files
tekrajchhetri a9be679
test jsonld file updated
tekrajchhetri 3a0cc55
readme updated to include detailed information
tekrajchhetri 4ef1d27
app.py updated with the necessary functionalities for comparison of t…
tekrajchhetri a00d433
fixed pyproject.toml to point to correct cli
tekrajchhetri 6ebf166
updated cli to use click.echo
tekrajchhetri 2d5947f
Update poetry.lock
tekrajchhetri b82bc9d
Update pyproject.toml
tekrajchhetri 0a6f3a9
Jupyter notebook showing the usage of the ProvSense
tekrajchhetri 8b1c2c9
to do item added
tekrajchhetri 013a8c0
DeprecationWarning: ConjunctiveGraph is deprecated, use Dataset inste…
tekrajchhetri d4172f4
Update Example.ipynb
tekrajchhetri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how specific to "KG" such comparison would be? or could also be applied to PROV graphs?
Thinking of https://github.com/bids-standard/BEP028_BIDSprov/ and their slightly assisted rendering of graphs into pretty images like https://github.com/bids-standard/BEP028_BIDSprov/tree/master/examples/clinica_pipelines . I think it might have been sensible in some cases to provide "Comparison diff" rendering where common nodes would remain gray, added - green, removed - red, and modified - some yet another color ;-)
I wish something like https://ontopea.com/ (random search find) was opensource to tune up for above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yarikoptic Thanks for the pointer. I checked (https://github.com/bids-standard/BEP028_BIDSprov/tree/master/examples/clinica_pipelines) graph. I can definitely highlight the changes with color when I integrate it with the UI. I will also have a look at those other links in detail.