sparql endpoint registry

This module is provider for convenience. It provides default names for standard endpoint URLs, with a bias towards life-science endpoints.

*/

    8:- module(endpoints,
    9          []).   10:- use_module(library(sparqlprog)).   11
   12%:- rdf_register_prefix(dbont,'http://dbpedia.org/ontology/').
   13:- sparql_endpoint( dbp, 'http://dbpedia.org/sparql/').   14:- sparql_endpoint( wd, 'http://query.wikidata.org/sparql').   15:- sparql_endpoint( go, 'http://rdf.geneontology.org/sparql').   16:- sparql_endpoint( godev, 'http://rdf-dev.geneontology.org/sparql').   17:- sparql_endpoint( uniprot, 'https://sparql.uniprot.org/sparql').   18:- sparql_endpoint( dbpedia, 'http://dbpedia.org/sparql/').   19:- sparql_endpoint( ontobee, 'http://sparql.hegroup.org/sparql').   20:- sparql_endpoint( nextprot, 'https://api.nextprot.org/sparql').   21:- sparql_endpoint( disgenet, 'http://rdf.disgenet.org/sparql/').   22:- sparql_endpoint( wikipathways, 'http://sparql.wikipathways.org').   23:- sparql_endpoint( biotea, 'http://biotea.linkeddata.es/sparql').   24:- sparql_endpoint( rhea, 'https://sparql.rhea-db.org/sparql').   25:- sparql_endpoint( ubergraph, 'https://stars-app.renci.org/ubergraph/sparql').   26:- sparql_endpoint( local, 'http://127.0.0.1:9999/blazegraph/sparql').   27:- sparql_endpoint( local2, 'http://127.0.0.1:8922/bigdata/sparql').