LS::RDF::ComplexDocument - An object that allows more complex RDF documents to be created


lsid-perl documentation  | view source Contained in the lsid-perl distribution.

Index


NAME

Top

LS::RDF::ComplexDocument - An object that allows more complex RDF documents to be created

SYNOPSIS

Top

 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();

DESCRIPTION

Top

This class provides a simple interface to create RDF documents.

METHODS

Top

addTripleResource ( $subject, $predicate, $object )

Adds an RDF triple which contains a resource as its object.

COPYRIGHT

Top


lsid-perl documentation  | view source Contained in the lsid-perl distribution.