2015-03-10 09:29:58 +00:00
|
|
|
(ns pronouns.util
|
|
|
|
(:require [clojure.string :as s]))
|
|
|
|
|
|
|
|
(defn slurp-tabfile [path]
|
|
|
|
(let [lines (s/split (slurp path) #"\n")]
|
|
|
|
(map #(s/split % #"\t") lines)))
|
|
|
|
|
|
|
|
(defn table-lookup
|
|
|
|
[query-key table]
|
|
|
|
(let [arity (count query-key)
|
|
|
|
filtered-table (filter #(= query-key (take arity %)) table)]
|
|
|
|
(first filtered-table)))
|
|
|
|
|
|
|
|
(defn tabfile-lookup
|
|
|
|
[query-key tabfile]
|
|
|
|
(table-lookup query-key (slurp-tabfile tabfile)))
|
2015-03-15 05:37:15 +00:00
|
|
|
|
2015-07-04 01:19:36 +00:00
|
|
|
(defn minimum-unambiguous-path
|
|
|
|
([pronouns-table sections] (minimum-unambiguous-path pronouns-table sections 1))
|
|
|
|
([pronouns-table sections number-of-sections]
|
|
|
|
(let [sections-subset (take number-of-sections sections)
|
2015-07-04 01:27:09 +00:00
|
|
|
results (filter #(= (take number-of-sections %) sections-subset) pronouns-table)]
|
2015-07-04 01:19:36 +00:00
|
|
|
(case (count results)
|
|
|
|
0 nil
|
|
|
|
1 (clojure.string/join "/" sections-subset)
|
|
|
|
(recur pronouns-table sections (+ number-of-sections 1))))))
|
2015-07-04 01:46:21 +00:00
|
|
|
|
|
|
|
(defn abbreviate
|
|
|
|
"given a list of pronoun rows, return a list of minimum unabiguous paths"
|
|
|
|
[pronouns-table]
|
|
|
|
(map (partial minimum-unambiguous-path pronouns-table) pronouns-table))
|