Skip to content

Commit

Permalink
fixed typo in pldoc
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Sep 5, 2019
1 parent 7b94828 commit 955c4c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions prolog/sparqlprog/ontologies/ebi.pl
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@
sample_attribute(S,A) :-
rdf(S,biosd_terms:'has-sample-attribute',A).

%! attribute_property_value(?A : ebi_attribute_node,
% ?P : ebi_biosample_property,
% ?V : ebi_biosample_value) is nondet.
%! attribute_property_value(?A : ebi_attribute_node, ?P : ebi_biosample_property, ?V : ebi_biosample_value) is nondet.
%
attribute_property_value(A, P, V) :-
rdf(A,ebi_atlas:propertyType,P),
Expand All @@ -87,9 +85,7 @@
rdf(A,ebi_atlas:propertyType,P),
rdf(A,ebi_atlas:propertyValue,V).

%! sample_property_value(?S : ebi_biosample,
% ?P : ebi_biosample_property,
% ?V : ebi_biosample_value) is nondet.
%! sample_property_value(?S : ebi_biosample, ?P : ebi_biosample_property, ?V : ebi_biosample_value) is nondet.
%
sample_property_value(S, P, V) :-
sample_attribute(S, A),
Expand Down
2 changes: 1 addition & 1 deletion prolog/sparqlprog/ontologies/uniprot.pl
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@


%! classified_with(P : uniprot_protein, T : uniprot_term) is nondet.
classified_with(P,T) :- rdf(P,up:classifiedWith,t).
classified_with(P,T) :- rdf(P,up:classifiedWith,T).


%! substitution(?A : uniprot_annotation, ?S : uniprot_sequence_string) is nondet.
Expand Down

0 comments on commit 955c4c0

Please sign in to comment.