You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add --with-missing-fields decoder option (#28)
In each cell, appends `:.` for each omitted, trailing FORMAT field. Faster than piping through `bcftools view` to achieve the same.
Spec change: never quote-encode cells whose genotypes aren't referenc…
…e-identical or non-called
This ensures all non-reference genotypes on a row can be read without reference to any previous row, a significant convenience in exchange for a negligible size increase.
Multithreaded encoder (#13)
The encoder can run multithreaded by buffering batches of input lines and processing each batch in a worker thread. In favorable circumstances this yields higher throughput than the default single-threaded approach, but there is a trade-off of greatly increased memory usage and copying. Activated with -t,--threads.