Changes between Version 26 and Version 27 of DDBJ-KEGG-PDBj
- Timestamp:
- 2010/02/12 14:07:16 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DDBJ-KEGG-PDBj
v26 v27 7 7 * Taxonomy http://www.ncbi.nlm.nih.gov/Taxonomy/TAXID (this is invalid URL) 8 8 * HapMap http://www.khapmap.org/ENTRYID (this is invalid URL) 9 * gene_id http://www.ncbi.nlm.nih.gov/gene/ENTRYID (NCBI gene ID) 9 10 10 11 = PDB things = … … 47 48 * Bio2RDF KEGG - http://192.168.11.61:8890/sparql/ 48 49 * Bio2RDF PDB - http://192.168.11.61:8891/sparql/ 49 * PDBj - http://192.168.11.61:8892/sparql/50 * PDBj - 50 51 * KEGG - 51 52 * DDBJ - … … 54 55 * Bio2RDF KEGG - http://192.168.11.61:8890/fct/ 55 56 * Bio2RDF PDB - http://192.168.11.61:8891/fct/ 56 * PDBj - http://192.168.11.61:8892/fctl/57 * PDBj - 57 58 * KEGG - 58 59 * DDBJ - … … 60 61 = Validating RDF/XML format = 61 62 * http://librdf.org/parse 63 64 = How to load data to virtuoso = 65 First, in the '''virtuoso.ini''' file, set the following parameter 66 {{{ 67 DirsAllowed = ., /usr/local/virtuoso-opensource/share/virtuoso/vad, /tmp 68 }}} 69 So the directory /tmp is allowed to have data to be loaded. 70 71 Then put the data file in /tmp (e.g., all.ttl, ddbj.rdf). 72 73 {{{ 74 % cat load.isql 75 DB.DBA.TTLP_MT(file_to_string_output('/tmp/all.ttl'), '' ,'http://www.pdbj.org'); 76 checkpoint; 77 78 DB.DBA.RDF_LOAD_RDFXML(file_to_string_output('/tmp/lala.rdf'), '' ,'http://www.pdbj.org'); 79 checkpoint; 80 81 % isql 1111 dba dba < load.isql 82 }}} 83