Skip to content

Instantly share code, notes, and snippets.

@jctoledo
Created March 4, 2014 22:47
Show Gist options
  • Save jctoledo/9357375 to your computer and use it in GitHub Desktop.
Save jctoledo/9357375 to your computer and use it in GitHub Desktop.
find the resolution of all pdbids in a graph
select ?pdb_record ?aResolution
from <http://bio2rdf.org/narf:rna_cycles_nr>
where{
?pdb_record <http://bio2rdf.org/pdb_vocabulary:hasPart> ?struct_deter.
?struct_deter <http://bio2rdf.org/pdb_vocabulary:hasPart> ?refinement.
?refinement <http://bio2rdf.org/pdb_vocabulary:hasLsDResHigh> ?res.
?res a <http://bio2rdf.org/pdb_vocabulary:LsDResHigh>.
?res <http://bio2rdf.org/pdb_vocabulary:hasValue> ?aResolution
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment