Hi Matt - sorry about this. Keeping this up requires us to upgrade the Virtuoso server version and maintain the service with current data. Unfortunately this is not something we’ve been able to accomplish given our current funding and staffing levels, as we are focusing on keeping the main Pathway Commons website working and updated.
In the meantime, users could load the data themselves into their own database instance to run their own SPARQL queries.
If this changes, we would bring it back up.
Best,
Gary
--
You received this message because you are subscribed to the Google Groups "pathway-commons-help" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pathway-commons-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pathway-commons-help/26fd1a6d-02ff-4c70-a781-0f3c01d1c2cdn%40googlegroups.com.
Great. https://www.pathwaycommons.org/archives/PC2/v12/ is the latest.
Best,
Gary
To view this discussion on the web visit https://groups.google.com/d/msgid/pathway-commons-help/5125f69e-1f29-4e9b-82fa-6285dce78480n%40googlegroups.com.
Hi Matt - here is the info we currently have about this in our internal documentation. We haven’t tested it with the latest virtuoso versions. Hope it helps.
To update the BioPAX model, e.g., replace PC10 with PC11 version, do
sudo isql-vt
SQL> sparql clear graph <http://pathwaycommons.org>;
... takes 30-50 min ...
Done. -- 3000000 msec.
SQL> quit;
Next, upload new BioPAX RDF/XML model, e.g, PathwayCommons11.All.BIOPAX.owl.gz to
/datb/rdf/pc2/
and read the document (https://vos.openlinksw.com/owiki/wiki/VOS/VirtBulkRDFLoader) that details how large RDF data set files can be bulk loaded into Virtuoso (select statements below are to check status):
sudo isql-vt
SQL> ld_dir ('/datb/rdf/pc2', '*.rdf.gz', 'http://pathwaycommons.org');
SQL> select * from DB.DBA.load_list;
SQL> rdf_loader_run();
... takes time ...
SQL> rdf_loader_stop();
SQL> select * from DB.DBA.LOAD_LIST where ll_error IS NOT NULL;
SQL> quit;
After data is loaded successfully (takes more than an hour), refresh and re-index the db:
isql-vt
SQL> RDF_OBJ_FT_RULE_ADD (null, null, 'All');
SQL> VT_INC_INDEX_DB_DBA_RDF_OBJ ();
SQL> urilbl_ac_init_db();
SQL> s_rank();
SQL> quit;
Finally, define "bp:" (http://www.biopax.org/release/biopax-level3.owl#) and "pc12:" (http://pathwaycommons.org/pc12/) namespace (depends on PC data version) prefixes using the Virtuoso Conductor, LinkedData UI (or isql-vt).
To view this discussion on the web visit https://groups.google.com/d/msgid/pathway-commons-help/2f1f092e-cb05-4480-bebd-2b86a50f291en%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pathway-commons-help/a0529fd9-3c15-4d9b-a428-d13c2381d493n%40googlegroups.com.
Thanks Matt! We’ll check it out and let you know if we have any comments.
Gary
To view this discussion on the web visit https://groups.google.com/d/msgid/pathway-commons-help/db71a3c8-89d6-4447-8f3b-aeea7bf04ee3n%40googlegroups.com.