Closed sjackman closed 8 years ago
It would quite useful to add additional columns for F0-f1, G, ek, λ
Will do. The first line will be prefixed by '#'.
The remaining fields will be computed by a python script and can be added on.
Thanks, Pall! I prefer no #
. The TSV tools that I use expect a header line.
Fixed in 38c20a5
Just because I had it lying around, here's a script to convert the previous kmerstream
output format to TSV.
#!/bin/sh
set -eu -o pipefail
(printf "Q\tk\tF0\tf1\tF1\n"; \
gsed 's/[^ ]* = //g;s/, /\n/' "$@" | paste -d'\t' - - - - -) \
| estimate.py /dev/stdin
Much better for importing into R and Python. e.g.