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
I am planning to use pyfastx within Nextstrain's Augur to support a new data curation command and it would be really helpful to be able to support xz-compressed files. Would you be open to extending pyfastx to support xz-compressed files?
With the condition that the file was originally compressed in multiple short blocks, it is possible to randomly access xz-compressed files. python-xz is an example of this in pure Python and xz-random-access is an example of this in C.
Thank you!
The text was updated successfully, but these errors were encountered:
Hello @lmdu,
I am planning to use
pyfastx
within Nextstrain's Augur to support a new data curation command and it would be really helpful to be able to support xz-compressed files. Would you be open to extendingpyfastx
to support xz-compressed files?Groups working with large files are using
xz
to save space becausexz
has a better compression ratio thangzip
. For example, Nextstrain hosts a file of all GenBank SARS-CoV-2 genomes that is xz-compressed.With the condition that the file was originally compressed in multiple short blocks, it is possible to randomly access xz-compressed files. python-xz is an example of this in pure Python and xz-random-access is an example of this in C.
Thank you!
The text was updated successfully, but these errors were encountered: