Skip to content
Snippets Groups Projects
Commit d6f444d7 authored by Simon Belak's avatar Simon Belak
Browse files

fixed remmaping

parent 7e3fc9f9
No related branches found
No related tags found
No related merge requests found
......@@ -26,11 +26,12 @@
"Transuce each column in given dataset with corresponding fingerprinter."
[opts {:keys [rows cols]}]
(transduce identity
(apply redux/juxt (map-indexed (fn [i field]
(redux/pre-step
(f/fingerprinter opts field)
#(nth % i)))
cols))
(->> cols
(remove :remapped_to)
(map-indexed (fn [i field]
(redux/pre-step (f/fingerprinter opts field)
#(nth % i))))
(apply redux/juxt))
rows))
(defmulti
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment