The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use FindBin qw($Bin);

my $OflazerHome = $Bin.'/../Oflazer';
my $Tagger = $OflazerHome.'/prepareconllfromsentence.pl';

system ($Tagger,$ARGV[0],$OflazerHome);
#system "cut -f2 -d ' ' sample-output.txt | sed 's/\+/ /'";
system "cut -f2 -d ' ' sample-output.txt";
system "rm temp.dat temp.txt notf.dat output.txt sample-output.txt";