/ Processing / src / Processing.jl
Processing.jl
 1  @doc """ Module for data resampling, cleaning, aligning, etc.
 2  
 3  """
 4  module Processing
 5  
 6  if get(ENV, "JULIA_NOPRECOMP", "") == "all"
 7      __init__() = begin
 8          include(joinpath(@__DIR__, "module.jl"))
 9      end
10  else
11      occursin(string(@__MODULE__), get(ENV, "JULIA_NOPRECOMP", "")) && __precompile__(false)
12      include("module.jl")
13      include("precompile.jl")
14  end
15  
16  
17  end # module Processing