JWAS.jl is an open-source software tool written in Julia for Bayesian multiple regression methods applied to genome-wide association studies and genomic prediction.
- Homepage: QTL.rocks
- Installation: at the Julia REPL,
using Pkg; Pkg.add("JWAS")
- Documentation: available here
- Notebooks: available here
- Authors: Hao Cheng, Rohan Fernando, Dorian Garrick
JWAS.jl
├────── build_model
├────── set_covariate
├────── set_random
├────── get_pedigree
├────── add_genotypes
├────── outputMCMCsamples
├────── showMME
├────── solve
└────── runMCMC
├──────── PedModule.jl
├──────── Datasets.jl
├──────── misc.jl
- Show this README file in REPL or notebook using
?JWAS
- For help on a specific function above, type ? followed by its name, e.g.
?runMCMC
and press enter. - Run
Pkg.add(PackageSpec(name="JWAS", rev="master"))
to get the newest unofficial JWAS. RunPkg.free("JWAS")
to go back to the offical one.