I have lines of data in a sequence of sequences and each sequence is different but follows the general pattern as follows:
("44999" "186300" "194300" "0" "380600" "325" "57" "0")
When I write the sequence of sequences out to a file using
(defn write-csv-file
"Writes a csv file using a key and an s-o-s"
[out-sos out-file]
(if (= dbg 1)
(println (first out-sos), "\n", out-file))
(spit out-file "" :append false)
(with-open [out-data (io/writer out-file)]
(csv/write-csv out-data out-sos)))
.
.
.
(write-csv-file out-re "re_values.csv")
the data comes out like this
44999,186300,194300,0,380600,325,57,0
That is exactly the way I want it (unquoted), except, I'd like a unquoted ',' at the end of each sequence.
I've tried (concat one-row (list \,)) and trying to add a ',' at the end of each sequence in a (list function, but I cannot get an unquoted ',' at the end of each sequence. How can I do this?
As a workaround, I can run files like this through sed to add the trailing comma, but I'd like to do it all in Clojure.