/usr/share/perl5/GO/IO/RDFXML.pm is in libgo-perl 0.15-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 | # $Id: RDFXML.pm,v 1.12 2008/08/14 19:02:00 girlwithglasses Exp $
#
# This GO module is maintained by Brad Marshall <bradmars@yahoo.com>
#
# see also - http://www.geneontology.org
# - http://www.godatabase.org/dev
#
# You may distribute this module under the same terms as perl itself
package GO::IO::RDFXML;
=head1 NAME
GO::IO::RDFXML - dump GO terms as xml
=head1 SYNOPSIS
my $apph = GO::AppHandle->connect(-d=>$go, -dbhost=>$dbhost);
my $term = $apph->get_term({acc=>00003677});
#### ">-" is STDOUT
my $out = new FileHandle(">-");
my $xml_out = GO::IO::XML->new(-output=>$out);
$xml_out->start_document();
$xml_out->draw_term($term);
$xml_out->end_document();
OR:
my $apph = GO::AppHandle->connect(-d=>$go, -dbhost=>$dbhost);
my $term = $apph->get_node_graph(-acc=>00003677, -depth=>2);
my $out = new FileHandle(">-");
my $xml_out = GO::IO::XML(-output=>$out);
$xml_out->start_document();
$xml_out->draw_node_graph($term, 3677);
$xml_out->end_document();
=head1 DESCRIPTION
Utility class to dump GO terms as xml. Currently you just call
start_ducument, then draw_term for each term, then end_document.
If there's a need I'll add draw_node_graph, draw_node_list, etc.
=cut
use strict;
use GO::Utils qw(rearrange);
use XML::Writer;
=head2 new
Usage - my $xml_out = GO::IO::XML->new(-output=>$out);
Returns - None
Args - Output FileHandle
Initializes the writer object. To write to standard out, do:
my $out = new FileHandle(">-");
my $xml_out = new GO::IO::XML(-output=>$out);
=cut
sub new {
my $class = shift;
my $self = {};
bless $self, $class;
my ($out) =
rearrange([qw(output)], @_);
$out = new FileHandle(">-") unless $out;
my $gen = new XML::Writer(OUTPUT=>$out);
$self->{writer} = $gen;
$gen->setDataMode(1);
$gen->setDataIndent(4);
return $self;
}
=head2 xml_header
Usage - $xml_out->xml_header;
Returns - None
Args - None
start_document prints the "Content-type: text/xml" statement.
If creating a cgi script, you should call this before start_document.
=cut
sub xml_header {
my $self = shift;
print "Content-type: text/xml\n\n";
}
=head2 start_document
Usage - $xml_out->start_document(-timestamp=>$time);
Returns - None
Args - optional: timestamp string, pre-formatted
start_ducument takes care of the fiddly bits like xml declarations,
namespaces, etc. It draws the initial tags and leaves the document
ready to add go:term nodes.
=cut
sub start_document {
my $self = shift;
my ($timestamp) =
rearrange([qw(timestamp)], @_);
$self->{writer}->xmlDecl("UTF-8");
$self->{writer}->doctype("go:go",
'-//Gene Ontology//Custom XML/RDF Version 2.0//EN',
'http://www.geneontology.org/dtd/go.dtd');
$self->{writer}->startTag('go:go',
'xmlns:go'=>'http://www.geneontology.org/dtds/go.dtd#',
'xmlns:rdf'=>'http://www.w3.org/1999/02/22-rdf-syntax-ns#');
if (defined ($timestamp)) {
#$self->{writer}->emptyTag('go:version', 'timestamp'=>$timestamp);
}
$self->{writer}->startTag('rdf:RDF');
}
=head2 end_document
Usage - $xml_out->end_document();
Call this when done.
=cut
sub end_document{
my $self = shift;
$self->{writer}->endTag('rdf:RDF');
$self->{writer}->endTag('go:go');
}
=head2 draw_node_graph
Usage - $xml_out->draw_node_graph(-graph=>$graph);
Returns - None
Args -graph=>$node_graph,
-focus=>$acc, ## optional
-show_associations=>"yes" or "no" ## optional
=cut
sub draw_node_graph {
my $self = shift;
my ($graph, $focus, $show_associations, $show_terms, $show_xrefs) =
rearrange([qw(graph focus show_associations show_terms show_xrefs)], @_);
my $is_focus;
foreach my $term (@{$graph->get_all_nodes}) {
$is_focus = $self->__is_focus(-node_list=>$graph->focus_nodes,
-term=>$term
);
$self->draw_term(-term=>$term,
-graph=>$graph,
-focus=>$is_focus,
-show_associations=>$show_associations,
-show_terms=>$show_terms,
-show_xrefs=>$show_xrefs
);
}
}
sub __is_focus {
my $self = shift;
my ($node_list, $term) =
rearrange([qw(node_list term)], @_);
foreach my $node (@$node_list) {
if ($node->acc eq $term->acc) {
return "yes";
}
}
return "no";
}
=head2 draw_term
Usage - $xml_out->draw_term();
Returns - None
Args -term=>$term,
-graph=>$graph,
-is_focus=>"yes" or "no", ## optional
-show_associations=>"yes" or "no", ## optional
-show_terms=>"yes" or "no", ## optional, just draws associations
=cut
sub draw_term {
my $self = shift;
my ($term, $graph, $is_focus, $show_associations, $show_terms, $show_xrefs) =
rearrange([qw(term graph focus show_associations show_terms show_xrefs)], @_);
$show_terms = $show_terms || "";
$is_focus = $is_focus || "";
$show_xrefs = $show_xrefs || "";
if ($show_terms ne 'no') {
if ($is_focus eq "yes") {
$self->{writer}->startTag('go:term',
'focus'=>'yes',
'rdf:about'=>'http://www.geneontology.org/go#'.$term->public_acc,
# 'n_associations'=>$term->n_deep_products
);
} else {
$self->{writer}->startTag('go:term',
'rdf:about'=>'http://www.geneontology.org/go#'.$term->public_acc,
#'n_associations'=>$term->n_deep_products
);
}
$self->{writer}->startTag('go:accession');
$self->characters($term->acc);
$self->{writer}->endTag('go:accession');
$self->dataElement('go:name', $term->name);
if ($term->synonym_list) {
foreach my $syn (sort @{$term->synonym_list}) {
$self->{writer}->startTag('go:synonym');
$self->characters($syn);
$self->{writer}->endTag('go:synonym');
}
}
if ($term->definition) {
$self->dataElement('go:definition',
$term->definition);
};
if ($term->comment) {
$self->dataElement('go:comment',
$term->comment);
};
if (defined $graph) {
foreach my $rel (sort by_acc1 @{$graph->get_parent_relationships($term->acc)}) {
if (lc($rel->type) eq 'partof') {
$self->{writer}->emptyTag('go:part-of',
'rdf:resource'=>"http://www.geneontology.org/go#"
.$self->__make_go_from_acc($rel->acc1));
} else {
$self->{writer}->emptyTag("go:".$rel->type,
'rdf:resource'=>"http://www.geneontology.org/go#"
.$self->__make_go_from_acc($rel->acc1));
}
}
}
if ($show_xrefs ne 'no') {
if ($term->dbxref_list) {
if (scalar(@{$term->dbxref_list}) > 0) {
foreach my $xref (sort by_xref_key @{$term->dbxref_list}) {
$self->{writer}->startTag('go:dbxref',
'rdf:parseType'=>'Resource');
$self->{writer}->startTag('go:database_symbol');
$self->characters($xref->xref_dbname);
$self->{writer}->endTag('go:database_symbol');
$self->{writer}->startTag('go:reference');
$self->characters($xref->xref_key);
$self->{writer}->endTag('go:reference');
$self->{writer}->endTag('go:dbxref');
}
}
}
}
}
if (defined ($term->selected_association_list)) {
foreach my $selected_ass (sort by_gene_product_symbol @{$term->selected_association_list}) {
# next if $selected_ass->is_not(); # skip negative associations
$self->__draw_association($selected_ass, 1);
}
}
if ($show_associations && $show_associations eq 'yes') {
foreach my $ass (sort by_gene_product_symbol @{$term->association_list}) {
# next if $selected_ass->is_not(); # skip negative associations
$self->__draw_association($ass, 0);
}
}
if ($show_terms ne 'no')
{ $self->{writer}->endTag('go:term');
}
}
sub by_acc1 {
lc($a->acc1) cmp lc($b->acc1);
}
sub by_xref_key {
lc($a->xref_key) cmp lc($b->xref_key);
}
sub by_gene_product_symbol {
lc($a->gene_product->symbol) cmp lc($b->gene_product->symbol);
}
sub __draw_association {
my $self = shift;
my $ass = shift;
my $is_selected = shift;
my $rdf_id = 'http://www.geneontology.org/go#'.$ass->go_public_acc;
# if the association is a 'NOT' one, use the tag 'negative_association'
my $ass_type = 'go:association';
if ( $ass->is_not() )
{ $ass_type = 'go:negative_association';
}
if ($is_selected) {
$self->{writer}->startTag($ass_type,
'selected'=>'yes',
'rdf:parseType'=>'Resource'
);
} else {
$self->{writer}->startTag($ass_type,
'rdf:parseType'=>'Resource'
);
}
foreach my $ev (@{$ass->evidence_list}) {
$self->{writer}->startTag('go:evidence', 'evidence_code'=>$ev->code);
if (defined($ev->xref)) {
$self->{writer}->startTag('go:dbxref',
'rdf:parseType'=>'Resource');
$self->{writer}->startTag('go:database_symbol');
$self->characters($ev->xref->xref_dbname);
$self->{writer}->endTag('go:database_symbol');
$self->{writer}->startTag('go:reference');##, 'type'=>$ev->xref->xref_keytype);
$self->characters($ev->xref->xref_key);
$self->{writer}->endTag('go:reference');
$self->{writer}->endTag('go:dbxref');
}
$self->{writer}->endTag('go:evidence');
}
$self->{writer}->startTag('go:gene_product',
'rdf:parseType'=>'Resource');
$self->dataElement('go:name', $ass->gene_product->symbol);
$self->{writer}->startTag('go:dbxref',
'rdf:parseType'=>'Resource');
$self->dataElement('go:database_symbol', $ass->gene_product->speciesdb);
$self->dataElement('go:reference', $ass->gene_product->acc);
$self->{writer}->endTag('go:dbxref');
$self->{writer}->endTag('go:gene_product');
# add the qualifiers (if any)
if ($ass->qualifier_list) {
foreach my $q (@{$ass->qualifier_list}) {
$self->{writer}->startTag('go:association_qualifier','rdf:parseType'=>'Resource');
$self->dataElement('go:qualifier_name', $q->name);
$self->{writer}->endTag('go:association_qualifier');
}
}
$self->{writer}->endTag($ass_type);
}
=head2
sub characters
This is simply a wrapper to XML::Writer->characters
which strips out any non-ascii characters.
=cut
sub characters {
my $self = shift;
my $string = shift;
if ($string) {
$self->{writer}->characters($self->__strip_non_ascii($string));
}
}
=head2
sub dataElement
This is simply a wrapper to XML::Writer->dataElement
which strips out any non-ascii characters.
=cut
sub dataElement {
my $self = shift;
my $tag = shift;
my $content = shift;
$self->{writer}->dataElement($tag, $self->__strip_non_ascii($content));
}
## WARNING: it is though that this code does not correctly get all
## problem encoded characters; deprecated for __strip_non_ascii.
sub __strip_non_ascii_old {
my $self = shift;
my $string = shift;
$string =~ s/\P{IsASCII}//g;
return $string;
}
## NOTE: taken from GO::Parsers::go_assoc_parser
## Meant to solve slippery encoding issues, see:
## "Re: [Software-group] RDF XML go full"
## As demonstrated in the code below, this does not actually remove unicode
## characters, but rather seems to force them down.
# push @INC, "/home/sjcarbon/local/src/svn/geneontology/go-dev/trunk/go-perl";
# use GO::IO::RDFXML;
# use FileHandle;
# $out = new FileHandle(">-");
# $x = GO::IO::RDFXML->new(-output=>$out);
# $foo = "asdf"
# $bar = "okテストay"
# print $x->__strip_non_ascii($foo);
# print $x->__strip_non_ascii($bar);
sub __strip_non_ascii {
my $self = shift;
$_ = shift;
# UNICODE causes problems for XML and DB
# delete 8th bit
tr [\200-\377]
[\000-\177]; # see 'man perlop', section on tr/
# weird ascii characters should be excluded
tr/\0-\10//d; # remove weird characters; ascii 0-8
# preserve \11 (9 - tab) and \12 (10-linefeed)
tr/\13\14//d; # remove weird characters; 11,12
# preserve \15 (13 - carriage return)
tr/\16-\37//d; # remove 14-31 (all rest before space)
tr/\177//d; # remove DEL character
return $_;
}
sub __make_go_from_acc {
my $self = shift;
my $acc = shift;
return $acc;
}
1;
|