Skip to content

Julia package to integrate common transcoders with the Formats package

License

Notifications You must be signed in to change notification settings

ofisette/FormatCodecs.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FormatCodecs

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.

License

You can use FormatCodecs under the terms of the MIT “Expat” License; see LICENSE.md.

Installation

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"))

Usage

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)

See also

  • Formats: Read, write and detect formatted data, based on MIME types (dependency).

About

Julia package to integrate common transcoders with the Formats package

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages