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
{{ message }}
This repository has been archived by the owner. It is now read-only.
The CZIReader and LSMReader assume at the moment that the data is stored in uncompressed format. It would be nice to implement in the reading the function the possibility to read compressed data and uncompress it on the fly... it would allow us to save compressed files and occupy less space on the data server.
The two file format specifications describe in detail how the files are compressed, it shouldn't be difficult to implement a method to uncompress the data (basically, check the size of the compressed chunk, read that amount of data from disk, apply the decompression algorithm)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The CZIReader and LSMReader assume at the moment that the data is stored in uncompressed format. It would be nice to implement in the reading the function the possibility to read compressed data and uncompress it on the fly... it would allow us to save compressed files and occupy less space on the data server.
The two file format specifications describe in detail how the files are compressed, it shouldn't be difficult to implement a method to uncompress the data (basically, check the size of the compressed chunk, read that amount of data from disk, apply the decompression algorithm)
The text was updated successfully, but these errors were encountered: