cljam.io.wig

Functions to read and write the WIG (Wiggle) format. See
https://genome.ucsc.edu/goldenpath/help/wiggle.html for the detail WIG
specifications.

read-fields

(read-fields rdr)
Read sequence of WIG fields from reader

reader

(reader f)
Returns an open cljam.io.wig.WIGReader of f. Should be used inside with-open
to ensure the reader is properly closed.

wig-fields

write-fields

(write-fields wtr xs)
Write sequence of WIG fields to writer.

writer

(writer f)
Returns an open cljam.io.wig.WIGWriter of f. Should be used inside with-open
to ensure the writer is properly closed.