#!/usr/local/bin/perl # $Id: goa2rdf.pl 2010-09-29 erick.antezana $ # # Script : goa2rdf.pl # # Purpose : Generates a simple RDF graph from a given GOA file. # # Usage : goa2rdf.pl input_file.goa > output_file.rdf # # License : Copyright (C) 2006-2011 by Erick Antezana. All rights reserved. # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # # Contact : Erick Antezana # ############################################################################## use Carp; use strict; use warnings; use OBO::APO::GoaToRDF; my $input_file = shift(@ARGV); my $goa2rdf = OBO::APO::GoaToRDF->new(); $goa2rdf->work(\*STDOUT, $input_file); exit 0; __END__ =head1 NAME goa2rdf.pl - Generates a simple RDF graph from a given GOA file. =head1 DESCRIPTION Generates a simple RDF graph from a given GOA file. =head1 AUTHOR Erick Antezana, Eerick.antezana -@- gmail.comE =head1 COPYRIGHT AND LICENSE Copyright (C) 2006-2011 by Erick Antezana This script is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available. =cut