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
select distinct ?a as ?cycle_uri | |
from <http://bio2rdf.org/narf:rna_cycles_nr> | |
where{ | |
?a a <http://bio2rdf.org/narf_vocabulary:cycle>. | |
?a <http://bio2rdf.org/narf_vocabulary:has_part> ?b. | |
?b a <http://bio2rdf.org/lighood_vocabulary:neighbor>. | |
?lh <http://bio2rdf.org/lighood_vocabulary:has_member> ?b. | |
} |
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
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 | |
} |
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
select STR(?size) as ?cycle_size COUNT(?a) as ?frequency | |
from <http://bio2rdf.org/narf:ab_rna_cycles> | |
where{ | |
?a a <http://bio2rdf.org/narf_vocabulary:cycle>. | |
?a <http://bio2rdf.org/narf_vocabulary:has_attribute> ?c. | |
?a <http://bio2rdf.org/narf_vocabulary:has_attribute> ?d. | |
?d a <http://bio2rdf.org/narf_vocabulary:cycle_size>. | |
?d <http://bio2rdf.org/narf_vocabulary:has_value> ?size. | |
?c a <http://bio2rdf.org/narf_vocabulary:cycle_profile_level_1> . | |
?c <http://bio2rdf.org/narf_vocabulary:has_md5hash> ?ahash . |
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
select distinct ?pdb_record | |
from <http://bio2rdf.org/rna_cycles_pdb> | |
where{ | |
?mcb <http://bio2rdf.org/narf_vocabulary:derived_from> ?pdb_record. | |
?mcb <http://bio2rdf.org/narf_vocabulary:has_member> ?acycle. | |
?acycle <http://bio2rdf.org/narf_vocabulary:has_attribute> ?a. | |
?a <http://bio2rdf.org/narf_vocabulary:has_md5hash> ?ahash. | |
FILTER regex(?ahash, "445c69d2714e43b727182b7496657eb1"). | |
?pdb_record <http://bio2rdf.org/pdb_vocabulary:hasPart> ?struct_deter. | |
?struct_deter <http://bio2rdf.org/pdb_vocabulary:hasPart> ?refinement. |
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
select distinct ?ares_label | |
from <http://bio2rdf.org/rna_cycles_pdb> | |
where{ | |
?ares a <http://bio2rdf.org/lighood_vocabulary:ligand>. | |
?ares a <http://bio2rdf.org/pdb_vocabulary:Residue>. | |
?ares <http://bio2rdf.org/pdb_vocabulary:isPartOf> ?cc. | |
?extraction <http://bio2rdf.org/pdb_vocabulary:hasProduct> ?cc. | |
?pdb_record <http://bio2rdf.org/pdb_vocabulary:hasPart> ?extraction. | |
?ares rdfs:label ?ares_label | |
} |
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
select count (distinct ?a) | |
from <http://bio2rdf.org/rna_cycles_pdb> | |
where{ | |
?a a <http://bio2rdf.org/pdb_vocabulary:Experiment>. | |
?mcb <http://bio2rdf.org/narf_vocabulary:derived_from> ?a. | |
} |
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
select count (distinct ?chain) | |
from <http://bio2rdf.org/rna_cycles_pdb> | |
where{ | |
?a a <http://bio2rdf.org/pdb_vocabulary:Experiment>. | |
?mcb <http://bio2rdf.org/narf_vocabulary:derived_from> ?a. | |
?a <http://bio2rdf.org/pdb_vocabulary:hasPart> ?cse. | |
?cse a <http://bio2rdf.org/pdb_vocabulary:ChemicalSubstanceExtraction>. | |
?cse <http://bio2rdf.org/pdb_vocabulary:hasProduct> ?polymer. | |
?polymer a <http://bio2rdf.org/pdb_vocabulary:Polymer>. | |
?residue <http://bio2rdf.org/pdb_vocabulary:isPartOf> ?polymer. |
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
select ?a count (distinct ?backbone) as ?c | |
from <http://bio2rdf.org/rna_cycles_pdb> | |
where{ | |
?a a <http://bio2rdf.org/pdb_vocabulary:Experiment>. | |
?mcb <http://bio2rdf.org/narf_vocabulary:derived_from> ?a. | |
?a <http://bio2rdf.org/pdb_vocabulary:hasPart> ?cse. | |
?cse a <http://bio2rdf.org/pdb_vocabulary:ChemicalSubstanceExtraction>. | |
?cse <http://bio2rdf.org/pdb_vocabulary:hasProduct> ?polymer. | |
?polymer a <http://bio2rdf.org/pdb_vocabulary:Polymer>. | |
?residue <http://bio2rdf.org/pdb_vocabulary:isPartOf> ?polymer. |
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
select ?a count (distinct ?bp) as ?c | |
from <http://bio2rdf.org/rna_cycles_pdb> | |
where{ | |
?a a <http://bio2rdf.org/pdb_vocabulary:Experiment>. | |
?mcb <http://bio2rdf.org/narf_vocabulary:derived_from> ?a. | |
?a <http://bio2rdf.org/pdb_vocabulary:hasPart> ?cse. | |
?cse a <http://bio2rdf.org/pdb_vocabulary:ChemicalSubstanceExtraction>. | |
?cse <http://bio2rdf.org/pdb_vocabulary:hasProduct> ?polymer. | |
?polymer a <http://bio2rdf.org/pdb_vocabulary:Polymer>. | |
?residue <http://bio2rdf.org/pdb_vocabulary:isPartOf> ?polymer. |
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
select count (distinct ?cyc) | |
from <http://bio2rdf.org/rna_cycles_pdb> | |
where{ | |
?a a <http://bio2rdf.org/pdb_vocabulary:Experiment>. | |
?mcb <http://bio2rdf.org/narf_vocabulary:derived_from> ?a. | |
?mcb <http://bio2rdf.org/narf_vocabulary:has_member> ?cyc. | |
} |