FlxQTL

Flexible Multivariate Linear Mixed Model based QTL Analysis for Structured Multiple Traits

StableDevBuild StatusBuild StatusCoverageCode Style: Blue

FlxQTL.jl is a a package for a multivariate linear mixed model based QTL analysis tool that supports incorporating information from trait covariates such as time or different environments. The package supports computation of one-dimensional and two-dimensional multivariate genome scans, visualization of genome scans, support for LOCO (leave-one-chromosome-out), computation of kinship matrices, and support for distributed computing.

1D Genome Scan

2D Genome Scan

The package is written in Julia and includes extensive documentation. If you are new to Julia you may want to learn more by looking at Julia documentation. Example data sets are located in the data directory. For details about the method, you may want to read our paper available as a preprint.

Paper

Flexible multivariate linear mixed models for structured multiple traits
Hyeonju Kim, Gregory Farage, John T. Lovell, John K. Mckay, Thomas E. Juenger, Śaunak Sen
doi: https://doi.org/10.1101/2020.03.27.012690

Installation

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

julia> ]
pkg> add FlxQTL

Or, equivalently,

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

Currently Julia 1.5 supports for the package.

To remove the package from the Julia REPL,

julia> ] 
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.