| lsid-perl documentation | view source | Contained in the lsid-perl distribution. |
LS::RDF::ComplexDocument - An object that allows more complex RDF documents to be created
my $rdfDoc = LS::RDF::ComplexDocument->new; $rdfDoc->addTripleLiteral($lsid->as_string(), 'http://purl.org/dc/elements/1.1/#title', $approved_gene_name); $rdfDoc->addTripleResource($lsid->as_string(), 'urn:lsid:myauthority.org:predicates:external_link', 'urn:lsid:ncbi.nlm.nih.gov.lsid.i3c.org:pubmed:' . lc($pmid1ID)); print '<?xml version="1.0"?>' . $rdfDoc->output();
This class provides a simple interface to create RDF documents.
Adds an RDF triple which contains a resource as its object.
Copyright (c) 2002,2003 IBM Corporation. All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.opensource.org/licenses/cpl.php
| lsid-perl documentation | view source | Contained in the lsid-perl distribution. |