From d637e517919852217705a34d1355020a97af2f6a Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Fri, 11 Apr 2014 11:55:24 +0200 Subject: hashing, helper scripts --- scripts/geoquery/sigf_format.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 scripts/geoquery/sigf_format.rb (limited to 'scripts/geoquery/sigf_format.rb') diff --git a/scripts/geoquery/sigf_format.rb b/scripts/geoquery/sigf_format.rb new file mode 100755 index 0000000..9d0125b --- /dev/null +++ b/scripts/geoquery/sigf_format.rb @@ -0,0 +1,20 @@ +#!/usr/bin/env ruby + +require 'nlp_ruby' + + +gold = ReadFile.readlines_strip ARGV[0] +i = -1 +while line = STDIN.gets + i += 1 + line.strip! + a = [0, 0, 1] + if line==gold[i] + a[0] = 1 + a[1] = 1 + elsif line!='' + a[1] = 1 + end + puts a.join " " +end + -- cgit v1.2.3