JWAS.jl is an open-source software tool written in Julia for Bayesian multiple regression methods applied to genomic prediction and genome-wide association studies.
using Pkg; Pkg.add("JWAS")
flowchart TD;
A["phenotypes.csv"] --> A2(CSV.read) --> D(build_model)
B["pedigree.csv"] --> B2(get_pedigree) --> D(build_model)
C["genotypes.csv"] --> C2(get_genotypes) --> D(build_model)
D --> E(set_covariate);
D --> F(set_random);
E --> H{runMCMC}
F --> H
?JWAS
?runMCMC
and press enter.Pkg.add(PackageSpec(name="JWAS", rev="master"))
to get the newest unofficial JWAS. Run Pkg.free("JWAS")
to go back to the official one.