summaryrefslogtreecommitdiff
path: root/rampion/rampion.pl
diff options
context:
space:
mode:
authorPatrick Simianer <simianer@cl.uni-heidelberg.de>2012-04-27 16:07:49 +0200
committerPatrick Simianer <simianer@cl.uni-heidelberg.de>2012-04-27 16:07:49 +0200
commit291e511b8f5d130b94d20caa1097deb74072dc99 (patch)
tree6014bd6ab0bc0b43bdf9d03702410047947fe9d6 /rampion/rampion.pl
parentc7ac569634c07de169a91c9f4d028ecd3899b4df (diff)
parentc5f69888943623e80478b6ba9247acc85758bedf (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'rampion/rampion.pl')
-rwxr-xr-xrampion/rampion.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/rampion/rampion.pl b/rampion/rampion.pl
index fda2bac2..9884f453 100755
--- a/rampion/rampion.pl
+++ b/rampion/rampion.pl
@@ -301,11 +301,15 @@ while (1){
my $score = 0;
my $icc = 0;
my $inweights="$dir/weights.$im1";
+ my $outweights="$dir/weights.$iteration";
$cmd="$MAPINPUT $dir/hgs > $dir/agenda.$im1";
print STDERR "COMMAND:\n$cmd\n";
check_call($cmd);
- die "PLEASE IMPL";
+ $cmd="$MAPPER $refs_comma_sep -m $metric -i $dir/agenda.$im1 -w $inweights > $outweights";
+ check_call($cmd);
+ $lastWeightsFile = $outweights;
$iteration++;
+ `rm hgs/*.gz`;
print STDERR "\n==========\n";
}