summaryrefslogtreecommitdiff
path: root/rampion/rampion_generate_input.pl
diff options
context:
space:
mode:
authorChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2012-11-18 13:35:42 -0500
committerChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2012-11-18 13:35:42 -0500
commit8aa29810bb77611cc20b7a384897ff6703783ea1 (patch)
tree8635daa8fffb3f2cd90e30b41e27f4f9e0909447 /rampion/rampion_generate_input.pl
parentfbdacabc85bea65d735f2cb7f92b98e08ce72d04 (diff)
major restructure of the training code
Diffstat (limited to 'rampion/rampion_generate_input.pl')
-rwxr-xr-xrampion/rampion_generate_input.pl18
1 files changed, 0 insertions, 18 deletions
diff --git a/rampion/rampion_generate_input.pl b/rampion/rampion_generate_input.pl
deleted file mode 100755
index b30fc4fd..00000000
--- a/rampion/rampion_generate_input.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-die "Usage: $0 HG_DIR\n" unless scalar @ARGV == 1;
-my $d = shift @ARGV;
-die "Can't find directory $d" unless -d $d;
-
-opendir(DIR, $d) or die "Can't read $d: $!";
-my @hgs = grep { /\.gz$/ } readdir(DIR);
-closedir DIR;
-
-for my $hg (@hgs) {
- my $file = $hg;
- my $id = $hg;
- $id =~ s/(\.json)?\.gz//;
- print "$d/$file $id\n";
-}
-