Package Guide

Installation

The package can installed in following ways. In a Julia REPL, press ] to enter a package mode,

pkg> add FlxQTL

Or, equivalently,

julia> using Pkg; Pkg.add("FlxQTL")

To remove the package from the Julia REPL,

pkg> rm FlxQTL

Equivalently,

julia> using Pkg; Pkg.rm("FlxQTL")

Choice of BLAS vendors

The package can be run in either openblas (built-in Julia dense linear algebra routines) or MKL (intel MKL linear algebra). Without the intel MKL hardware, the installation of MKL.jl in Julia can slightly improve the performance. For its installation, consult with MKL.jl.