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

add located_in and is_active_in to allowed list of relations fixes #385 #384

Merged
merged 2 commits into from
May 6, 2021
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ PREFIX BFO: <http://purl.obolibrary.org/obo/BFO_>
PREFIX CHEBI: <http://purl.obolibrary.org/obo/CHEBI_>
PREFIX PR: <http://purl.obolibrary.org/obo/PR_>
PREFIX molecular_function: <http://purl.obolibrary.org/obo/GO_0003674>
PREFIX located_in: <http://purl.obolibrary.org/obo/RO_0001025>
PREFIX is_active_in: <http://purl.obolibrary.org/obo/RO_0002432>

SELECT DISTINCT ?pr ?pr_type ?rel ?target ?blank_comp ?target_type
WHERE {
Expand Down Expand Up @@ -55,6 +57,8 @@ WHERE {
acts_upstream_of_or_within_positive_effect:
acts_upstream_of_or_within_negative_effect:
contributes_to:
located_in:
is_active_in:
}

# the value of ?pr_type should be IRI.
Expand Down