GINA | R Documentation |
Performs GINA
GINA(
Y,
SNPs,
kinship,
FDR_Nominal = 0.05,
maxiterations = 400,
runs_til_stop = 40
)
Y |
The observed numeric phenotypes |
SNPs |
The SNP matrix, where each column represents a single SNP encoded as the numeric coding 0, 1, 2. This is entered as a matrix object. |
kinship |
The observed kinship matrix, has to be a square positive semidefinite matrix. Defaulted as the identity matrix. The function used to create the kinship matrix used in the BICOSS paper is A.mat() from package rrBLUP. |
FDR_Nominal |
The nominal false discovery rate for which SNPs are selected from in the screening step. |
maxiterations |
The maximum iterations the genetic algorithm in the model selection step iterates for. Defaulted at 400 which is the value used in the BICOSS paper simulation studies. |
runs_til_stop |
The number of iterations at the same best model before the genetic algorithm in the model selection step converges. Defaulted at 40 which is the value used in the BICOSS paper simulation studies. |
The column indices of SNPs that were in the best model identified by BICOSS.
library(GWAS.BAYES)
GINA(Y = Y, SNPs = SNPs, kinship = kinship,
FDR_Nominal = 0.05,
maxiterations = 400,runs_til_stop = 40)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.