survey: pdbj.txt

ファイル pdbj.txt, 2.6 KB (登録者: wu, 12 年 前)
行番号 
1prefix pdbjrdf: <http://pdbj.org/rdf/>
2prefix pdbjschema:<http://pdbj.org/schema/pdbx-v40.owl#>
3select ?descriptor ?title ?struct_keywords ?gene_src_scientific_name ?authorname
4from <http://pdbj.dbcls.jp>
5where {?entry   pdbjschema:entry.id     "107L" ;
6                pdbjschema:referenced_by_struct ?structure;
7                pdbjschema:referenced_by_struct_keywords  ?struct_keywords;
8                pdbjschema:of_datablock                   ?of_datablock .
9?structure    pdbjschema:struct.pdbx_descriptor ?descriptor;
10              pdbjschema:struct.title ?title .
11?of_datablock  pdbjschema:has_entity_src_genCategory ?entity_src_genCategory;
12               pdbjschema:has_audit_authorCategory ?authorCategory.           
13?entity_src_genCategory pdbjschema:has_entity_src_gen ?entity_src_gen.
14?entity_src_gen  pdbjschema:entity_src_gen.pdbx_gene_src_scientific_name ?gene_src_scientific_name.
15?authorCategory  pdbjschema:has_audit_author ?audit_author.
16?audit_author    pdbjschema:audit_author.name ?authorname .
17}
18
19prefix pdbjrdf: <http://pdbj.org/rdf/>
20prefix pdbjschema:<http://pdbj.org/schema/pdbx-v40.owl#>
21select  ?authorname
22from <http://pdbj.dbcls.jp>
23where {                       
24pdbjrdf:107L    pdbjschema:has_audit_authorCategory ?authorCategory.           
25?authorCategory  pdbjschema:has_audit_author ?audit_author.
26?audit_author    pdbjschema:audit_author.name ?authorname .
27}
28
29prefix pdbjrdf: <http://pdbj.org/rdf/>
30prefix pdbjschema:<http://pdbj.org/schema/pdbx-v40.owl#>
31select ?citation ?predicate ?contents
32from <http://pdbj.dbcls.jp>
33where {                       
34<http://pdbj.org/rdf/107L>     pdbjschema:has_citationCategory  ?citationCategory.           
35?citationCategory pdbjschema:has_citation ?citation.
36 ?citation ?predicate ?contents
37}
38
39prefix pdbjrdf: <http://pdbj.org/rdf/>
40prefix pdbjschema:<http://pdbj.org/schema/pdbx-v40.owl#>
41select ?has_entity ?entitypdbx_description  ?referenced_by_entity_src_gen ?entitytype ?entitypdbx_number_of_molecules ?entity_src_gen_gene_src_species
42from <http://pdbj.dbcls.jp>
43where {                       
44pdbjrdf:107L     pdbjschema:has_entityCategory  ?has_entityCategory.           
45?has_entityCategory pdbjschema:has_entity ?has_entity .
46?has_entity         pdbjschema:entity.pdbx_description ?entitypdbx_description;
47pdbjschema:entity.type ?entitytype;pdbjschema:entity.pdbx_number_of_molecules ?entitypdbx_number_of_molecules.
48OPTIONAL {?has_entity pdbjschema:referenced_by_entity_src_gen  ?referenced_by_entity_src_gen.
49?referenced_by_entity_src_gen pdbjschema:entity_src_gen.gene_src_species ?entity_src_gen_gene_src_species}
50}