From 02426e681bccc8f833c1215fac1467ca1da7bc24 Mon Sep 17 00:00:00 2001 From: Morgan Astra Date: Wed, 21 Sep 2016 21:36:39 -0700 Subject: [PATCH] add docstrings to functions in util and remove unused function, fixes #58 --- src/pronouns/util.clj | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/src/pronouns/util.clj b/src/pronouns/util.clj index 5086634..fcea811 100644 --- a/src/pronouns/util.clj +++ b/src/pronouns/util.clj @@ -18,21 +18,25 @@ (:require [clojure.string :as s])) (defn slurp-tabfile [path] + "read a tabfile from a filesystem as a table" (let [lines (s/split (slurp path) #"\n")] (map #(s/split % #"\t") lines))) (defn table-front-filter + "filter a to the rows which begin with " [query-key table] (let [arity (count query-key)] (filter #(= query-key (take arity %)) table))) (defn table-end-filter + "filter a
to the rows which end with " [query-key table] (let [table-arity (count (first table)) query-arity (count query-key)] (filter #(= query-key (drop (- table-arity query-arity) %)) table))) (defn table-lookup + "find the row corresponding to in
" [query-key table] (if (some #(= "..." %) query-key) (let [[query-front query-end-] (split-with #(not= "..." %) query-key) @@ -41,25 +45,26 @@ (first (table-end-filter query-end front-matches))) (first (table-front-filter query-key table)))) -(defn tabfile-lookup - [query-key tabfile] - (table-lookup query-key (slurp-tabfile tabfile))) - (defn minimum-unambiguous-path - ([table columns] (minimum-unambiguous-path table columns 1)) - ([table columns number-of-columns] - (let [columns-subset (take number-of-columns columns) - results (filter #(= (take number-of-columns %) columns-subset) + "compute the shortest (in number of path elements) path which refers to + a specific in a
unambiguously." + ([table row] (minimum-unambiguous-path table row 1)) + ([table row number-of-row] + (let [row-subset (take number-of-row row) + results (filter #(= (take number-of-row %) row-subset) table)] (case (count results) 0 nil - 1 (clojure.string/join "/" columns-subset) - (recur table columns (+ number-of-columns 1)))))) + 1 (clojure.string/join "/" row-subset) + (recur table row (+ number-of-row 1)))))) (defn abbreviate - "given a list of pronoun rows, return a list of minimum unabiguous paths" + "return the list of minimum unabiguous paths from a
" [table] (map (partial minimum-unambiguous-path table) table)) (defn vec-coerce [x] + "wrap a value in a vector if it is not already in one. note that if + is already in a sequence for which vector? is false, this will add + another layer of nesting." (if (vector? x) x [x]))