bolt_lmm | R Documentation |
--lmm
and returns table of association statistics.A wrapper for running BOLT-LMM's genetic association test followed by reading of the results by read_bolt_lmm()
.
In addition to the arguments listed below, the executable is run with --phenoUseFam
(so the phenotype tested can only be the one present in the input FAM file), --LDscoresUseChip
, --lmmForceNonInf
(so columns are never missing), and --maxMissingPerSnp 1 --maxMissingPerIndiv 1
(so full data is used and loci are never missing from table).
bolt_lmm(name, name_out = name, bolt_bin = "bolt", threads = 0, verbose = TRUE)
name |
The shared name of the input plink BED/BIM/FAM files without extensions (the argument to |
name_out |
The base name of the output statistics file (the argument to |
bolt_bin |
The path to the binary executable.
Default assumes |
threads |
The number of threads to use (the argument to |
verbose |
If |
The table of genetic association statistics, as a tibble
, read with read_bolt_lmm()
(see that for more info).
read_bolt_lmm()
for parsing the output of BOLT-LMM.
delete_files_bolt()
for deleting the output of BOLT-LMM.
system3()
, used (with ret = FALSE
) for executing BOLT-LMM and error handling.
## Not run:
data <- bolt_lmm( name, name_out )
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.