Skip to content

Commit

Permalink
Use the new Uniprot RDF for EC classification too
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed May 11, 2012
1 parent 653ef53 commit ef32310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions namespaces.php
Expand Up @@ -23,6 +23,7 @@
$VO = $OBO;
$CL = $OBO;
$UNIPROT = "http://purl.uniprot.org/uniprot/";
$ENZYME = "http://purl.uniprot.org/enzyme/";

$ONTO = "http://rdf.farmbio.uu.se/chembl/onto/#";
$ACT = $rooturi . "activity/";
Expand Down
1 change: 1 addition & 0 deletions targets.php
Expand Up @@ -56,6 +56,7 @@
if ($row['ec_number']) {
echo data_triple( $target, $DC . "identifier", $row['ec_number'] );
echo triple( $target, $OWL . "sameAs", "http://bio2rdf.org/ec:" . $row['ec_number'] );
echo triple( $target, $SKOS . "exactMatch", $ENZYME . $row['ec_number'] );
}
if ($row['protein_accession']) {
echo data_triple( $target, $DC . "identifier", "uniprot:" . $row['protein_accession'] );
Expand Down

0 comments on commit ef32310

Please sign in to comment.