NAME
Bio::Medpost - Part of speech tagger for MEDLINE text
USAGE
use Bio::Medpost;
$r = medpost('We observed an increase in mitogen-activated protein kinase (MAPK) activity.');
# You can put options following the text.
$r = medpost($text_string, qw(-penn));
# You can input a file
$r = medpost_file($text_file);
$r = medpost_file($text_file, qw(-penn -xml));
use Data::Dumper;
print Dumper $r;
If you need to change the script path of medpost, please refer to Bio::Medpost::Var.
SEE ALSO
http://bioinformatics.oupjournals.org/cgi/content/abstract/20/14/2320
THE AUTHOR
Yung-chung Lin (a.k.a. xern) <xern@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself