diff --git a/org.bridgedb.gui/src/org/bridgedb/gui/BridgeRestParameterModel.java b/org.bridgedb.gui/src/org/bridgedb/gui/BridgeRestParameterModel.java
index 4fea80c82..adad8e088 100644
--- a/org.bridgedb.gui/src/org/bridgedb/gui/BridgeRestParameterModel.java
+++ b/org.bridgedb.gui/src/org/bridgedb/gui/BridgeRestParameterModel.java
@@ -15,8 +15,8 @@ public class BridgeRestParameterModel extends AbstractParameterModel implements
{
static final int PARAMETER_NUM = 3;
- private Object[] metadata = new Object[] {"http://webservice.bridgedb.org", "80", Collections.emptyList()};
- private Object[] values = new Object[] {"http://webservice.bridgedb.org", "80", null};
+ private Object[] metadata = new Object[] {"https://webservice.bridgedb.org", "443", Collections.emptyList()};
+ private Object[] values = new Object[] {"https://webservice.bridgedb.org", "443", null};
private String[] labels = new String[] {"Base URL", "Port", "Species"};
/**
@@ -68,7 +68,7 @@ public String getHelpHtml()
"in advance, and no cross-species mapping is possible. Mapping data is derived from " +
"Ensembl and HMDB." +
"maintainer:Gladstone Institute / UCSF and BiGCaT / Maastricht University" +
- "
more info:http://webservice.bridgedb.org";
+ "
more info:https://webservice.bridgedb.org";
}
@Override
diff --git a/org.bridgedb.rdb.construct/pom.xml b/org.bridgedb.rdb.construct/pom.xml
index b1d6bd0d7..026adc09b 100644
--- a/org.bridgedb.rdb.construct/pom.xml
+++ b/org.bridgedb.rdb.construct/pom.xml
@@ -7,7 +7,7 @@
bridgedb-bundle
org.bridgedb
- 3.0.23
+ 3.1.4
@@ -32,7 +32,7 @@
org.apache.felix
maven-bundle-plugin
- 5.1.2
+ ${felix.version}
true
@@ -80,8 +80,8 @@
compile
- mysql
- mysql-connector-java
+ com.mysql
+ mysql-connector-j
${mysql.version}
jar
runtime
diff --git a/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DBConnectorDerbyServer.java b/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DBConnectorDerbyServer.java
index 0d60c7728..3576277d7 100644
--- a/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DBConnectorDerbyServer.java
+++ b/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DBConnectorDerbyServer.java
@@ -65,11 +65,12 @@ public Connection createConnection(String dbName) throws IDMapperException
try
{
sysprop.setProperty("derby.stream.error.file", File.createTempFile("derby",".log").toString());
- Class.forName("org.apache.derby.jdbc.ClientDriver");
- }
- catch (ClassNotFoundException e)
- {
- throw new IDMapperException (e);
+ try {
+ Class.forName("org.apache.derby.jdbc.ClientDriver"); // Derby 10.4
+ System.out.println("Derby ClientDriver loaded");
+ } catch (ClassNotFoundException e) {
+ // ignore, probably we're running this with Derby 10.14 or higher
+ }
}
catch (IOException f)
{
diff --git a/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DataDerby.java b/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DataDerby.java
index 64b7b6788..46b172eb4 100644
--- a/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DataDerby.java
+++ b/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/DataDerby.java
@@ -123,11 +123,12 @@ public Connection createConnection(String dbName, int props) throws IDMapperExce
{
sysprop.setProperty("derby.storage.tempDirectory", System.getProperty("java.io.tmpdir"));
sysprop.setProperty("derby.stream.error.file", File.createTempFile("derby",".log").toString());
- Class.forName("org.apache.derby.jdbc.ClientDriver");
- }
- catch (ClassNotFoundException e)
- {
- throw new IDMapperException (e);
+ try {
+ Class.forName("org.apache.derby.jdbc.ClientDriver"); // Derby 10.4
+ System.out.println("Derby ClientDriver loaded");
+ } catch (ClassNotFoundException e) {
+ // ignore, probably we're running this with Derby 10.14 or higher
+ }
}
catch (IOException f)
{
diff --git a/org.bridgedb.rdb/pom.xml b/org.bridgedb.rdb/pom.xml
index 8b75100f7..fdc996246 100644
--- a/org.bridgedb.rdb/pom.xml
+++ b/org.bridgedb.rdb/pom.xml
@@ -7,7 +7,7 @@
bridgedb-bundle
org.bridgedb
- 3.0.23
+ 3.1.4
@@ -32,7 +32,7 @@
org.apache.felix
maven-bundle-plugin
- 5.1.2
+ ${felix.version}
true
@@ -79,8 +79,8 @@
compile
- mysql
- mysql-connector-java
+ com.mysql
+ mysql-connector-j
${mysql.version}
jar
runtime
@@ -108,7 +108,7 @@
org.junit.platform
junit-platform-launcher
- 1.9.3
+ ${junit5.platform.launcher.version}
test
diff --git a/org.bridgedb.rdb/src/org/bridgedb/rdb/IDMapperRdb.java b/org.bridgedb.rdb/src/org/bridgedb/rdb/IDMapperRdb.java
index ad128adfa..7fb4e2dfd 100644
--- a/org.bridgedb.rdb/src/org/bridgedb/rdb/IDMapperRdb.java
+++ b/org.bridgedb.rdb/src/org/bridgedb/rdb/IDMapperRdb.java
@@ -89,8 +89,13 @@ public IDMapper connect(String location) throws IDMapperException
String host = args.containsKey("host") ? args.get("host") : "wikipathways.org";
String port = args.containsKey("port") ? args.get("port") : "1527";
-
- Class.forName("org.apache.derby.jdbc.ClientDriver");
+
+ try {
+ Class.forName("org.apache.derby.jdbc.ClientDriver"); // Derby 10.4
+ System.out.println("Derby ClientDriver loaded");
+ } catch (ClassNotFoundException e) {
+ // ignore, probably we're running this with Derby 10.14 or higher
+ }
Properties sysprop = System.getProperties();
sysprop.setProperty("derby.storage.tempDirectory", System.getProperty("java.io.tmpdir"));
sysprop.setProperty("derby.stream.error.file", File.createTempFile("derby",".log").toString());
@@ -102,10 +107,6 @@ public IDMapper connect(String location) throws IDMapperException
{
throw new IDMapperException (e);
}
- catch (ClassNotFoundException e)
- {
- throw new IDMapperException (e);
- }
}
}
diff --git a/org.bridgedb.rdb/test/org/bridgedb/rdb/Test.java b/org.bridgedb.rdb/test/org/bridgedb/rdb/Test.java
index f9cf6b643..c72f48bf0 100644
--- a/org.bridgedb.rdb/test/org/bridgedb/rdb/Test.java
+++ b/org.bridgedb.rdb/test/org/bridgedb/rdb/Test.java
@@ -61,6 +61,14 @@ public static void setup() {
@org.junit.jupiter.api.Test
public void testGdbProvider() throws ClassNotFoundException, IDMapperException, IOException{
+ // only for Java 11 and higher
+ String specVersion = System.getProperty("java.specification.version");
+ if (specVersion.contains(".")) specVersion = specVersion.substring(0, specVersion.indexOf('.'));
+ if (Integer.valueOf(specVersion) < 11) {
+ System.out.print("Only running testGdbProvider() for Java 11 or higher");
+ return;
+ }
+
Class.forName("org.bridgedb.file.IDMapperText");
ClassLoader classLoader = this.getClass().getClassLoader();
@@ -143,7 +151,6 @@ public void testSimpleGdb() throws ClassNotFoundException, IDMapperException, IO
Class.forName("org.bridgedb.file.IDMapperText");
Class.forName("org.bridgedb.rdb.IDMapperRdb");
Class.forName("com.mysql.jdbc.Driver");
- // no longer needed?? Class.forName("org.apache.derby.jdbc.ClientDriver");
String fileName = "yeast_id_mapping";
String fullName = fileName + ".txt";
@@ -173,8 +180,13 @@ public void testDerbyClient() throws IDMapperException, ClassNotFoundException {
long start, end, delta;
start = System.currentTimeMillis();
Class.forName ("org.bridgedb.rdb.IDMapperRdb");
- Class.forName ("org.apache.derby.jdbc.ClientDriver");
-
+ try {
+ Class.forName("org.apache.derby.jdbc.ClientDriver"); // Derby 10.4
+ System.out.println("Derby ClientDriver loaded");
+ } catch (ClassNotFoundException e) {
+ // ignore, probably we're running this with Derby 10.14 or higher
+ }
+
IDMapper mapper = BridgeDb.connect ("idmapper-derbyclient:Homo sapiens?host=www.wikipathways.org");
end = System.currentTimeMillis();
delta = end - start;
diff --git a/org.bridgedb.rdf/pom.xml b/org.bridgedb.rdf/pom.xml
index 40f505e81..e56013aa6 100644
--- a/org.bridgedb.rdf/pom.xml
+++ b/org.bridgedb.rdf/pom.xml
@@ -6,7 +6,7 @@
bridgedb-bundle
org.bridgedb
- 3.0.23
+ 3.1.4
diff --git a/org.bridgedb.rdf/resources/BioDataSource.ttl b/org.bridgedb.rdf/resources/BioDataSource.ttl
index 996f91d0c..5b3bc8747 100644
--- a/org.bridgedb.rdf/resources/BioDataSource.ttl
+++ b/org.bridgedb.rdf/resources/BioDataSource.ttl
@@ -35,7 +35,7 @@ bridgeDB:DataSource_BIND a bridgeDB:DataSource ;
bridgeDB:DataSource_BioCyc a bridgeDB:DataSource ;
bridgeDB:fullName "BioCyc" ;
bridgeDB:systemCode "Bc" ;
- bridgeDB:mainUrl "http://biocyc.org" ;
+ bridgeDB:mainUrl "https://biocyc.org" ;
bridgeDB:idExample "ECOLI:CYT-D-UBIOX-CPLX" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -45,7 +45,7 @@ bridgeDB:DataSource_BioCyc a bridgeDB:DataSource ;
bridgeDB:DataSource_BioGrid a bridgeDB:DataSource ;
bridgeDB:fullName "BioGrid" ;
bridgeDB:systemCode "Bg" ;
- bridgeDB:mainUrl "http://thebiogrid.org/" ;
+ bridgeDB:mainUrl "https://thebiogrid.org/" ;
bridgeDB:idExample "31623" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "interaction" ;
@@ -55,7 +55,7 @@ bridgeDB:DataSource_BioGrid a bridgeDB:DataSource ;
bridgeDB:DataSource_BioModels_Database a bridgeDB:DataSource ;
bridgeDB:fullName "BioModels Database" ;
bridgeDB:systemCode "Bm" ;
- bridgeDB:mainUrl "http://www.ebi.ac.uk/biomodels/" ;
+ bridgeDB:mainUrl "https://www.ebi.ac.uk/biomodels/" ;
bridgeDB:idExample "BIOMD0000000048" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "pathway" ;
@@ -105,7 +105,7 @@ bridgeDB:DataSource_CCDS a bridgeDB:DataSource ;
bridgeDB:DataSource_ChEBI a bridgeDB:DataSource ;
bridgeDB:fullName "ChEBI" ;
bridgeDB:systemCode "Ce" ;
- bridgeDB:mainUrl "http://www.ebi.ac.uk/chebi/" ;
+ bridgeDB:mainUrl "https://www.ebi.ac.uk/chebi/" ;
bridgeDB:idExample "CHEBI:36927" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "metabolite" ;
@@ -115,7 +115,7 @@ bridgeDB:DataSource_ChEBI a bridgeDB:DataSource ;
bridgeDB:DataSource_Chemspider a bridgeDB:DataSource ;
bridgeDB:fullName "Chemspider" ;
bridgeDB:systemCode "Cs" ;
- bridgeDB:mainUrl "http://www.chemspider.com/" ;
+ bridgeDB:mainUrl "https://www.chemspider.com/" ;
bridgeDB:idExample "56586" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "metabolite" ;
@@ -473,7 +473,7 @@ bridgeDB:DataSource_GeneOntology a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Arabidopsis a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Arabidopsis" ;
bridgeDB:systemCode "EnAt" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "ATMG01360-TAIR-G" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -484,7 +484,7 @@ bridgeDB:DataSource_Gramene_Arabidopsis a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Genes_DB a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Genes DB" ;
bridgeDB:systemCode "Gg" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "GR:0060184" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -494,7 +494,7 @@ bridgeDB:DataSource_Gramene_Genes_DB a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Literature a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Literature" ;
bridgeDB:systemCode "Gl" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "6200" ;
bridgeDB:primary "false"^^ ;
bridgeDB:type "gene" ;
@@ -503,7 +503,7 @@ bridgeDB:DataSource_Gramene_Literature a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Maize a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Maize" ;
bridgeDB:systemCode "EnZm" ;
- bridgeDB:mainUrl "http://www.ensembl.org" ;
+ bridgeDB:mainUrl "https://www.ensembl.org" ;
bridgeDB:idExample "GRMZM2G174107" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -512,7 +512,7 @@ bridgeDB:DataSource_Gramene_Maize a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Pathway a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Pathway" ;
bridgeDB:systemCode "Gp" ;
- bridgeDB:mainUrl "http://www.gramene.org/pathway" ;
+ bridgeDB:mainUrl "https://www.gramene.org/pathway" ;
bridgeDB:idExample "AAH72400" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "pathway" ;
@@ -521,7 +521,7 @@ bridgeDB:DataSource_Gramene_Pathway a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Rice a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Rice" ;
bridgeDB:systemCode "EnOj" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "osa-MIR171a" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -780,7 +780,7 @@ bridgeDB:DataSource_MINT a bridgeDB:DataSource ;
bridgeDB:DataSource_miRBase_mature_sequence a bridgeDB:DataSource ;
bridgeDB:fullName "miRBase mature sequence" ;
bridgeDB:systemCode "Mbm" ;
- bridgeDB:mainUrl "http://www.mirbase.org/" ;
+ bridgeDB:mainUrl "https://www.mirbase.org/" ;
bridgeDB:idExample "MIMAT0000001" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -1032,7 +1032,7 @@ bridgeDB:DataSource_Rfam a bridgeDB:DataSource ;
bridgeDB:DataSource_RGD a bridgeDB:DataSource ;
bridgeDB:fullName "RGD" ;
bridgeDB:systemCode "R" ;
- bridgeDB:mainUrl "http://rgd.mcw.edu/" ;
+ bridgeDB:mainUrl "https://rgd.mcw.edu/" ;
bridgeDB:idExample "2018" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -1053,7 +1053,7 @@ bridgeDB:DataSource_Rhea a bridgeDB:DataSource ;
bridgeDB:DataSource_Rice_Ensembl_Gene a bridgeDB:DataSource ;
bridgeDB:fullName "Rice Ensembl Gene" ;
bridgeDB:systemCode "Os" ;
- bridgeDB:mainUrl "http://www.gramene.org/Oryza_sativa" ;
+ bridgeDB:mainUrl "https://www.gramene.org/Oryza_sativa" ;
bridgeDB:idExample "LOC_Os04g54800" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -1175,7 +1175,7 @@ bridgeDB:DataSource_Systems_Biology_Ontology a bridgeDB:DataSource ;
bridgeDB:DataSource_TAIR a bridgeDB:DataSource ;
bridgeDB:fullName "TAIR" ;
bridgeDB:systemCode "A" ;
- bridgeDB:mainUrl "http://arabidopsis.org/index.jsp" ;
+ bridgeDB:mainUrl "https://www.arabidopsis.org/" ;
bridgeDB:idExample "AT1G01030" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -1263,7 +1263,7 @@ bridgeDB:DataSource_Uniprot_SwissProt a bridgeDB:DataSource ;
dcterms:alternative "UniProtKB/Swiss-Prot" .
bridgeDB:DataSource_Uniprot_TrEMBL a bridgeDB:DataSource ;
- bridgeDB:fullName "Uniprot-TrEMBL" ;
+ bridgeDB:fullName "UniProtKB" ;
bridgeDB:systemCode "S" ;
bridgeDB:mainUrl "http://www.uniprot.org/" ;
bridgeDB:idExample "P62158" ;
diff --git a/org.bridgedb.rdf/resources/DataSource.ttl b/org.bridgedb.rdf/resources/DataSource.ttl
index a786321d8..cd15ae023 100644
--- a/org.bridgedb.rdf/resources/DataSource.ttl
+++ b/org.bridgedb.rdf/resources/DataSource.ttl
@@ -38,32 +38,32 @@ bridgeDB:DataSource_BIND a bridgeDB:DataSource ;
bridgeDB:DataSource_BioCyc a bridgeDB:DataSource ;
bridgeDB:fullName "BioCyc" ;
bridgeDB:systemCode "Bc" ;
- bridgeDB:mainUrl "http://biocyc.org" ;
+ bridgeDB:mainUrl "https://biocyc.org" ;
bridgeDB:idExample "ECOLI:CYT-D-UBIOX-CPLX" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasUriPattern .
bridgeDB:DataSource_BioGrid a bridgeDB:DataSource ;
bridgeDB:fullName "BioGrid" ;
bridgeDB:systemCode "Bg" ;
- bridgeDB:mainUrl "http://thebiogrid.org/" ;
+ bridgeDB:mainUrl "https://thebiogrid.org/" ;
bridgeDB:idExample "31623" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "interaction" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern .
bridgeDB:DataSource_BioModels_Database a bridgeDB:DataSource ;
bridgeDB:fullName "BioModels Database" ;
bridgeDB:systemCode "Bm" ;
- bridgeDB:mainUrl "http://www.ebi.ac.uk/biomodels/" ;
+ bridgeDB:mainUrl "https://www.ebi.ac.uk/biomodels/" ;
bridgeDB:idExample "BIOMD0000000048" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "pathway" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasUriPattern .
@@ -134,16 +134,16 @@ bridgeDB:DataSource_CCDS a bridgeDB:DataSource ;
bridgeDB:idExample "CCDS43989" ;
bridgeDB:primary "false"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern .
+ bridgeDB:hasPrimaryUriPattern .
bridgeDB:DataSource_ChEBI a bridgeDB:DataSource ;
bridgeDB:fullName "ChEBI" ;
bridgeDB:systemCode "Ce" ;
- bridgeDB:mainUrl "http://www.ebi.ac.uk/chebi/" ;
+ bridgeDB:mainUrl "https://www.ebi.ac.uk/chebi/" ;
bridgeDB:idExample "CHEBI:36927" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "metabolite" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasUriPattern ; #Deprecated
bridgeDB:hasIdentifiersOrgPattern .
@@ -286,16 +286,16 @@ bridgeDB:DataSource_ChEMBL_target_component a bridgeDB:DataSource ;
bridgeDB:DataSource_Chemspider a bridgeDB:DataSource ;
bridgeDB:fullName "Chemspider" ;
bridgeDB:systemCode "Cs" ;
- bridgeDB:mainUrl "http://www.chemspider.com/" ;
+ bridgeDB:mainUrl "https://www.chemspider.com/" ;
bridgeDB:idExample "56586" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "metabolite" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasUriPattern ;
- bridgeDB:hasUriPattern ;
- bridgeDB:hasUriPattern ;
- bridgeDB:hasUriPattern .
+ bridgeDB:hasUriPattern ;
+ bridgeDB:hasUriPattern ;
+ bridgeDB:hasUriPattern .
bridgeDB:DataSource_Cint a bridgeDB:DataSource ;
bridgeDB:fullName "Cint" ;
@@ -366,7 +366,7 @@ bridgeDB:DataSource_drugbankv4Target a bridgeDB:DataSource ;
bridgeDB:fullName "Drugbank Target v4" ;
bridgeDB:systemCode "drugbankv4.target" ;
bridgeDB:idExample "BE0000938" ;
- bridgeDB:hasRegexPattern "^BE\\d{7}$" ;
+ bridgeDB:hasRegexPattern "^BE\\d{7}$" ;
bridgeDB:mainUrl "http://www.drugbank.ca/" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
@@ -379,6 +379,7 @@ bridgeDB:DataSource_drugbankDrugs a bridgeDB:DataSource ;
bridgeDB:systemCode "Dr" ;
bridgeDB:mainUrl "http://www.drugbank.ca/" ;
bridgeDB:idExample "DB00001" ;
+ bridgeDB:hasRegexPattern "^DB\\d{5,7}$" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "metabolite" ;
bridgeDB:hasPrimaryUriPattern ;
@@ -518,45 +519,45 @@ bridgeDB:DataSource_GOA a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Arabidopsis a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Arabidopsis" ;
bridgeDB:systemCode "EnAt" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "ATMG01360-TAIR-G" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:Organism bridgeDB:Organism_At .
bridgeDB:DataSource_Gramene_Genes_DB a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Genes DB" ;
bridgeDB:systemCode "Gg" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "GR:0060184" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern .
bridgeDB:DataSource_Gramene_Literature a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Literature" ;
bridgeDB:systemCode "Gl" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "6200" ;
bridgeDB:primary "false"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern .
+ bridgeDB:hasPrimaryUriPattern .
bridgeDB:DataSource_Gramene_Maize a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Maize" ;
bridgeDB:systemCode "EnZm" ;
- bridgeDB:mainUrl "http://www.ensembl.org" ;
+ bridgeDB:mainUrl "https://www.ensembl.org" ;
bridgeDB:idExample "GRMZM2G174107" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern .
+ bridgeDB:hasPrimaryUriPattern .
bridgeDB:DataSource_Gramene_Pathway a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Pathway" ;
bridgeDB:systemCode "Gp" ;
- bridgeDB:mainUrl "http://www.gramene.org/pathway" ;
+ bridgeDB:mainUrl "https://www.gramene.org/pathway" ;
bridgeDB:idExample "AAH72400" ;
bridgeDB:primary "false"^^ ;
bridgeDB:type "pathway" .
@@ -564,7 +565,7 @@ bridgeDB:DataSource_Gramene_Pathway a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Rice a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Rice" ;
bridgeDB:systemCode "EnOj" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "osa-MIR171a" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
@@ -646,7 +647,7 @@ bridgeDB:DataSource_InterPro a bridgeDB:DataSource ;
bridgeDB:idExample "IPR000100" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "protein" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasUriPattern .
@@ -806,11 +807,11 @@ bridgeDB:CodeMapper_MGI a bridgeDB:CodeMapper ;
bridgeDB:DataSource_miRBase_mature_sequence a bridgeDB:DataSource ;
bridgeDB:fullName "miRBase mature sequence" ;
bridgeDB:systemCode "Mbm" ;
- bridgeDB:mainUrl "http://www.mirbase.org/" ;
+ bridgeDB:mainUrl "https://www.mirbase.org/" ;
bridgeDB:idExample "MIMAT0000001" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern .
bridgeDB:DataSource_miRBase_Sequence a bridgeDB:DataSource ;
@@ -821,7 +822,7 @@ bridgeDB:DataSource_miRBase_Sequence a bridgeDB:DataSource ;
bridgeDB:idExample "MI0000001" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern .
bridgeDB:DataSource_NASC_Gene a bridgeDB:DataSource ;
@@ -914,7 +915,7 @@ bridgeDB:DataSource_Pathway_Ontology a bridgeDB:DataSource ;
bridgeDB:CodeMapper_Pathway_Ontology a bridgeDB:CodeMapper ;
bridgeDB:systemCode "PW" ;
bridgeDB:xrefPrefix "PW:";
- bridgeDB:hasUriPattern ;
+ bridgeDB:hasUriPattern ;
bridgeDB:hasUriPattern ;
bridgeDB:hasUriPattern ;
bridgeDB:hasUriPattern ;
@@ -1036,24 +1037,24 @@ bridgeDB:DataSource_Rfam a bridgeDB:DataSource ;
bridgeDB:DataSource_RGD a bridgeDB:DataSource ;
bridgeDB:fullName "RGD" ;
bridgeDB:systemCode "R" ;
- bridgeDB:mainUrl "http://rgd.mcw.edu/" ;
+ bridgeDB:mainUrl "https://rgd.mcw.edu/" ;
bridgeDB:idExample "2018" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
- bridgeDB:hasUriPattern ;
+ bridgeDB:hasUriPattern ;
bridgeDB:hasUriPattern ;
bridgeDB:Organism bridgeDB:Organism_Rn .
bridgeDB:DataSource_Rice_Ensembl_Gene a bridgeDB:DataSource ;
bridgeDB:fullName "Rice Ensembl Gene" ;
bridgeDB:systemCode "Os" ;
- bridgeDB:mainUrl "http://www.gramene.org/Oryza_sativa" ;
+ bridgeDB:mainUrl "https://www.gramene.org/Oryza_sativa" ;
bridgeDB:idExample "LOC_Os04g54800" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:Organism bridgeDB:Organism_Os ;
bridgeDB:hasRegexUriPattern .
@@ -1071,11 +1072,11 @@ bridgeDB:DataSource_SGD a bridgeDB:DataSource ;
bridgeDB:DataSource_TAIR a bridgeDB:DataSource ;
bridgeDB:fullName "TAIR" ;
bridgeDB:systemCode "A" ;
- bridgeDB:mainUrl "http://arabidopsis.org/index.jsp" ;
+ bridgeDB:mainUrl "https://www.arabidopsis.org/" ;
bridgeDB:idExample "AT1G01030" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern .
bridgeDB:DataSource_TIGR a bridgeDB:DataSource ;
@@ -1135,7 +1136,7 @@ bridgeDB:DataSource_Uniprot_Enzyme a bridgeDB:DataSource ;
bridgeDB:hasPrimaryUriPattern .
bridgeDB:DataSource_Uniprot_TrEMBL a bridgeDB:DataSource ;
- bridgeDB:fullName "Uniprot-TrEMBL" ;
+ bridgeDB:fullName "UniProtKB" ;
bridgeDB:alternativeFullName "Uniprot/TrEMBL" ;
bridgeDB:systemCode "S" ;
bridgeDB:mainUrl "http://www.uniprot.org/" ;
diff --git a/org.bridgedb.rdf/resources/IdentifiersOrgDataSource.ttl b/org.bridgedb.rdf/resources/IdentifiersOrgDataSource.ttl
index ab3092e11..0b72ed5d4 100644
--- a/org.bridgedb.rdf/resources/IdentifiersOrgDataSource.ttl
+++ b/org.bridgedb.rdf/resources/IdentifiersOrgDataSource.ttl
@@ -1,4 +1,4 @@
- @prefix bridgeDB: .
+@prefix bridgeDB: .
@prefix dcat: .
@prefix dcterms: .
@@ -504,11 +504,11 @@ bridgeDB:DataSource_BioCatalogue a bridgeDB:DataSource ;
bridgeDB:DataSource_BioCyc a bridgeDB:DataSource ;
bridgeDB:fullName "BioCyc" ;
bridgeDB:systemCode "Bc" ;
- bridgeDB:mainUrl "http://biocyc.org" ;
+ bridgeDB:mainUrl "https://biocyc.org" ;
bridgeDB:idExample "ECOLI:CYT-D-UBIOX-CPLX" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^[A-Z-0-9]+(? ;
bridgeDB:type "interaction" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^\\d+$" ;
@@ -531,11 +531,11 @@ bridgeDB:DataSource_BioGrid a bridgeDB:DataSource ;
bridgeDB:DataSource_BioModels_Database a bridgeDB:DataSource ;
bridgeDB:fullName "BioModels Database" ;
bridgeDB:systemCode "Bm" ;
- bridgeDB:mainUrl "http://www.ebi.ac.uk/biomodels/" ;
+ bridgeDB:mainUrl "https://www.ebi.ac.uk/biomodels/" ;
bridgeDB:idExample "BIOMD0000000048" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "pathway" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^((BIOMD|MODEL)\\d{10})|(BMID\\d{12})$" ;
@@ -832,7 +832,7 @@ bridgeDB:DataSource_CCDS a bridgeDB:DataSource ;
bridgeDB:idExample "CCDS43989" ;
bridgeDB:primary "false"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^CCDS\\d+(\\.\\d+)?$" ;
@@ -921,11 +921,11 @@ bridgeDB:DataSource_CharProt a bridgeDB:DataSource ;
bridgeDB:DataSource_ChEBI a bridgeDB:DataSource ;
bridgeDB:fullName "ChEBI" ;
bridgeDB:systemCode "Ce" ;
- bridgeDB:mainUrl "http://www.ebi.ac.uk/chebi/" ;
+ bridgeDB:mainUrl "https://www.ebi.ac.uk/chebi/" ;
bridgeDB:idExample "CHEBI:36927" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "metabolite" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^CHEBI:\\d+$" ;
@@ -1055,16 +1055,16 @@ bridgeDB:DataSource_ChemIDplus a bridgeDB:DataSource ;
bridgeDB:DataSource_Chemspider a bridgeDB:DataSource ;
bridgeDB:fullName "Chemspider" ;
bridgeDB:systemCode "Cs" ;
- bridgeDB:mainUrl "http://www.chemspider.com/" ;
+ bridgeDB:mainUrl "https://www.chemspider.com/" ;
bridgeDB:idExample "56586" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "metabolite" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^\\d+$" ;
dcterms:alternative "ChemSpider" ;
- bridgeDB:hasUriPattern , , , .
+ bridgeDB:hasUriPattern , , , .
bridgeDB:DataSource_Cint a bridgeDB:DataSource ;
bridgeDB:fullName "Cint" ;
@@ -2515,11 +2515,11 @@ bridgeDB:DataSource_GPCRDB a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Arabidopsis a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Arabidopsis" ;
bridgeDB:systemCode "EnAt" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "ATMG01360-TAIR-G" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:Organism bridgeDB:Organism_At ;
bridgeDB:hasRegexPattern "AT[\\dCM]G\\d{5}\\-TAIR\\-G" ;
dcterms:alternative "Grameen Arabidopsis" .
@@ -2527,11 +2527,11 @@ bridgeDB:DataSource_Gramene_Arabidopsis a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Genes_DB a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Genes DB" ;
bridgeDB:systemCode "Gg" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "GR:0060184" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^GR\\:\\d+$" ;
@@ -2543,36 +2543,36 @@ bridgeDB:DataSource_Gramene_Growth_Stage_Ontology a bridgeDB:DataSource ;
bridgeDB:idExample "GRO:0007133" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^GRO\\:\\d+$" ;
- bridgeDB:hasUriPattern .
+ bridgeDB:hasUriPattern .
bridgeDB:DataSource_Gramene_Literature a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Literature" ;
bridgeDB:systemCode "Gl" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "6200" ;
bridgeDB:primary "false"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
dcterms:alternative "Gramene Literature" .
bridgeDB:DataSource_Gramene_Maize a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Maize" ;
bridgeDB:systemCode "EnZm" ;
- bridgeDB:mainUrl "http://www.ensembl.org" ;
+ bridgeDB:mainUrl "https://www.ensembl.org" ;
bridgeDB:idExample "GRMZM2G174107" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
dcterms:alternative "Gramene Maize" .
bridgeDB:DataSource_Gramene_Pathway a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Pathway" ;
bridgeDB:systemCode "Gp" ;
- bridgeDB:mainUrl "http://www.gramene.org/pathway" ;
+ bridgeDB:mainUrl "https://www.gramene.org/pathway" ;
bridgeDB:idExample "AAH72400" ;
bridgeDB:primary "false"^^ ;
bridgeDB:type "pathway" ;
@@ -2584,7 +2584,7 @@ bridgeDB:DataSource_Gramene_protein a bridgeDB:DataSource ;
bridgeDB:idExample "78073" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^\\d+$" .
@@ -2595,7 +2595,7 @@ bridgeDB:DataSource_Gramene_QTL a bridgeDB:DataSource ;
bridgeDB:idExample "CQG5" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^\\w+$" .
@@ -2603,11 +2603,11 @@ bridgeDB:DataSource_Gramene_QTL a bridgeDB:DataSource ;
bridgeDB:DataSource_Gramene_Rice a bridgeDB:DataSource ;
bridgeDB:fullName "Gramene Rice" ;
bridgeDB:systemCode "EnOj" ;
- bridgeDB:mainUrl "http://www.gramene.org/" ;
+ bridgeDB:mainUrl "https://www.gramene.org/" ;
bridgeDB:idExample "osa-MIR171a" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
dcterms:alternative "Gramene Rice" .
bridgeDB:DataSource_Gramene_Taxonomy a bridgeDB:DataSource ;
@@ -2616,11 +2616,11 @@ bridgeDB:DataSource_Gramene_Taxonomy a bridgeDB:DataSource ;
bridgeDB:idExample "GR_tax:013681" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^GR\\_tax\\:\\d+$" ;
- bridgeDB:hasUriPattern .
+ bridgeDB:hasUriPattern .
bridgeDB:DataSource_GreenGenes a bridgeDB:DataSource ;
bridgeDB:fullName "GreenGenes" ;
@@ -3029,11 +3029,11 @@ bridgeDB:DataSource_InChI a bridgeDB:DataSource ;
bridgeDB:idExample "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^InChI\\=1S\\/[A-Za-z0-9]+(\\/[cnpqbtmsih][A-Za-z0-9\\-\\+\\(\\)\\,]+)+$" ;
- bridgeDB:hasUriPattern , , , .
+ bridgeDB:hasUriPattern , , , .
bridgeDB:DataSource_InChIKey a bridgeDB:DataSource ;
bridgeDB:fullName "InChIKey" ;
@@ -3045,7 +3045,7 @@ bridgeDB:DataSource_InChIKey a bridgeDB:DataSource ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^[A-Z]{14}\\-[A-Z]{10}(\\-[A-N])?" ;
- bridgeDB:hasUriPattern .
+ bridgeDB:hasUriPattern .
bridgeDB:DataSource_IntAct a bridgeDB:DataSource ;
bridgeDB:fullName "IntAct" ;
@@ -3101,7 +3101,7 @@ bridgeDB:DataSource_InterPro a bridgeDB:DataSource ;
bridgeDB:idExample "IPR000100" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "protein" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^IPR\\d{6}$" ;
@@ -3799,11 +3799,11 @@ bridgeDB:DataSource_MIPModDB a bridgeDB:DataSource ;
bridgeDB:DataSource_miRBase_mature_sequence a bridgeDB:DataSource ;
bridgeDB:fullName "miRBase mature sequence" ;
bridgeDB:systemCode "Mbm" ;
- bridgeDB:mainUrl "http://www.mirbase.org/" ;
+ bridgeDB:mainUrl "https://www.mirbase.org/" ;
bridgeDB:idExample "MIMAT0000001" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "MIMAT\\d{7}" ;
@@ -3816,12 +3816,12 @@ bridgeDB:DataSource_miRBase_Sequence a bridgeDB:DataSource ;
bridgeDB:idExample "MI0000001" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "gene" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "MI\\d{7}" ;
dcterms:alternative "miRBase Sequence" ;
- bridgeDB:hasUriPattern .
+ bridgeDB:hasUriPattern .
bridgeDB:DataSource_mirEX a bridgeDB:DataSource ;
bridgeDB:fullName "mirEX" ;
@@ -4608,7 +4608,7 @@ bridgeDB:DataSource_Pathway_Commons a bridgeDB:DataSource ;
bridgeDB:DataSource_Pathway_Ontology a bridgeDB:DataSource ;
bridgeDB:fullName "Pathway Ontology" ;
bridgeDB:systemCode "PW" ;
- bridgeDB:mainUrl "http://rgd.mcw.edu/rgdweb/ontology/search.html" ;
+ bridgeDB:mainUrl "https://rgd.mcw.edu/rgdweb/ontology/search.html" ;
bridgeDB:idExample "PW:0000208" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
@@ -4616,12 +4616,12 @@ bridgeDB:DataSource_Pathway_Ontology a bridgeDB:DataSource ;
bridgeDB:hasIdentifiersOrgPattern ;
bridgeDB:hasIdentifiersOrgInfoPattern ;
bridgeDB:hasRegexPattern "^PW:\\d{7}$" ;
- bridgeDB:hasUriPattern , .
+ bridgeDB:hasUriPattern , .
bridgeDB:CodeMapper_Pathway_Ontology a bridgeDB:CodeMapper ;
bridgeDB:systemCode "PW" ;
bridgeDB:xrefPrefix "PW:" ;
- bridgeDB:hasUriPattern , , , , .
+ bridgeDB:hasUriPattern , , , , .
bridgeDB:DataSource_PATO a bridgeDB:DataSource ;
bridgeDB:fullName "PATO" ;
@@ -5195,7 +5195,7 @@ bridgeDB:DataSource_Rat_Genome_Database_qTL a bridgeDB:DataSource ;
bridgeDB:idExample "1354581" ;
bridgeDB:primary "true"^^ ;
bridgeDB:type "unknown" ;
- bridgeDB:hasPrimaryUriPattern ;
+ bridgeDB:hasPrimaryUriPattern