gzipped CSV files #383
Unanswered
psaffrey-biomodal
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hi! Arquero does not currently include support for gzipped CSV files. So unfortunately you will need to decompress using a separate library, then pass the resulting CSV text to Arquero. I don't have much experience with JS gzip decoders, so I don't have much more to add. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
Does anybody have a recipe or pattern for working efficiently with gzipped CSV files? I'm working in bioinformatics, where these are extremely common! I could unzip with a JS library like pako but then I would probably have to do unzip and then parse (two steps), and I'd rather do this in one go, perhaps in a stream, for speed.
Cheers,
Peter
Beta Was this translation helpful? Give feedback.
All reactions