#!/usr/local/bin/perl # $Id: go2owl.pl 2010-09-29 erick.antezana $ # # Script : go2owl.pl # # Purpose : Converts GO to OWL. # # Usage : go2owl.pl gene_ontology.obo > gene_ontology.owl # # 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::Parser::OBOParser; my $my_parser = OBO::Parser::OBOParser->new(); my $ontology = $my_parser->work(shift(@ARGV)); $ontology->export('owl', \*STDOUT); exit 0; __END__ =head1 NAME go2owl.pl - Gene Ontology (in OBO) to OWL translator. =head1 DESCRIPTION This script transforms the OBO version of GO into OWL. =head1 AUTHOR Erick Antezana, Eerick.antezana -@- gmail.comE =head1 COPYRIGHT AND LICENSE Copyright (C) 2006-2011 by Erick Antezana This library 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