Skip to content

Commit

Permalink
Use skos:exactmatch instead of owl:sameAs
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed May 11, 2012
1 parent a082b61 commit 653ef53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion targets.php
Expand Up @@ -60,7 +60,7 @@
if ($row['protein_accession']) {
echo data_triple( $target, $DC . "identifier", "uniprot:" . $row['protein_accession'] );
echo triple( $target, $OWL . "sameAs", "http://bio2rdf.org/uniprot:" . $row['protein_accession'] );
echo triple( $target, $OWL . "sameAs", $UNIPROT . $row['protein_accession'] );
echo triple( $target, $SKOS . "exactMatch", $UNIPROT . $row['protein_accession'] );
}
if ($row['tax_id'])
echo triple( $target, $ONTO . "hasTaxonomy", "http://bio2rdf.org/taxonomy:" . $row['tax_id'] );
Expand Down

0 comments on commit 653ef53

Please sign in to comment.