diegozea / MIToS.jl

A Julia package to analyze protein sequences, structures, and evolutionary information
https://diegozea.github.io/MIToS.jl/stable/
Other
75 stars 18 forks source link

FastaIO does not have precompilation enabled #32

Closed tkelman closed 8 years ago

tkelman commented 8 years ago

ref https://github.com/carlobaldassi/FastaIO.jl/blob/master/src/FastaIO.jl

This is actually a prerequisite to using __precompile__() in your package, all of your dependencies have to have it enabled first. You've been getting away without it so far, but this will become noticeable very soon on 0.5 and 0.6-dev, where it might start causing errors.

carlobaldassi commented 8 years ago

This is now fixed in FastaIO v0.2.0. It's just a matter of updating the REQUIRE file.

tkelman commented 8 years ago

Right on.

diegozea commented 8 years ago

Thanks @carlobaldassi & @tkelman !