#!/usr/bin/perl -w use strict; my $PATCH = shift @ARGV; die "Usage: $0 tagged.en[_fr] < lexical.en_fr_al[_...]\n" unless $PATCH; open P, "<$PATCH" or die "Can't read tagged corpus $PATCH: $!"; my $first=

; close P; my @fields = split / \|\|\| /, $first; die "Bad format!" if (scalar @fields > 2); if (scalar @fields != 1) { # TODO support this die "Patching source and target not supported yet!"; } my $line = 0; open P, "<$PATCH" or die "Can't read tagged corpus $PATCH: $!"; while(my $pline =

) { chomp $pline; $line++; my $line = <>; die "Too few lines in lexical corpus!" unless $line; chomp $line; @fields = split / \|\|\| /, $line; my @pwords = split /\s+/, $pline; my @lwords = split /\s+/, $fields[1]; die "Length mismatch in line $line!\n" unless (scalar @pwords == scalar @lwords); $fields[1] = $pline; print join ' ||| ', @fields; print "\n"; }