Julia package to integrate common transcoders with the Formats package.
Using FormatCodecs, you can transparently read and write formatted data compressed with the gzip, bzip2 and xz codings.
You can use FormatCodecs under the terms of the MIT “Expat” License; see
LICENSE.md
.
FormatCodecs is not a registered package. You can add it to your Julia environment by giving the URL to its repository:
using Pkg
Pkg.add(PackageSpec(url="https:://github.com/ofisette/FormatCodecs.jl"))
Simply load the package to activate the transcoders:
using FormatCodecs
You can then read/write data using the functions provided by Formats:
mol = read(infer("insulin.pdb.gz"))
write(infer("insulin.gro.bz2"), mol)
- Formats: Read, write and detect formatted data, based on MIME types (dependency).