-
Notifications
You must be signed in to change notification settings - Fork 1
/
required.jl
40 lines (37 loc) · 949 Bytes
/
required.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Activate project
using Pkg: Pkg
Pkg.activate(".")
Pkg.instantiate()
# Load required packages (sorted alphabetically)
using CSV
using DataFrames
using Dates
using DelimitedFiles
using Distributed
using Formatting
using JLD2
using Plots
using Plots.PlotMeasures
using ProgressMeter
using Random
using RCall
using Shapefile
using SimpleSDMLayers
using Statistics
using StatsBase
using StatsPlots
using ZipFile
# Load custom functions
include(joinpath("lib", "analysis.jl"))
include(joinpath("lib", "betadiv.jl"))
include(joinpath("lib", "csvdata.jl"))
include(joinpath("lib", "landcover.jl"))
include(joinpath("lib", "plotting.jl"))
include(joinpath("lib", "presence-absence.jl"))
include(joinpath("lib", "shapefiles.jl"))
# Manual version-control for oversized files
include(joinpath("lib", "version-control.jl"))
verify_raw_files()
verify_proc_files()
# verify_raw_files(; touch_placeholders=true)
# verify_proc_files(; touch_placeholders=true)