mixmapPI(data.set, pval="pval", snp="snp", gene="gene",
coord="coord", chr="chr", alpha = 0.05)
data.frame
containing the input data. Each observation in this data set is a SNP. This file must contain, at least, the SNP name, p-value for a SNP, group name (usually a gene name) where SNP is located, SNP location coordinate, and chromMixMAP
.data.frame
with a row for each gene containing gene symbol, posterior estimates for all gene-level effects, variance used in intervals, upper bound of one sided interval, the number of SNPs in each gene, the chromsome of the SNP, the location coordinate of the SNP, the gene-level p-value, the Bonferroni adjusted gene-level p-value, and the q-value based on Banjamini-Hochberg fasle discovery rate.data.frame
with a row for each gene containing gene symbol, posterior estimates for all gene-level effects, variance used in intervals, upper bound of one sided interval, the number of SNPs in each gene, the chromsome of the SNP, the location coordinate of the SNP, the gene-level p-value, the adjusted gene-level p-value, the name of the SNP with the smallest p-value, the minimum p-value in the gene, and a 5 number summary of the p-values within each genemer
object containing all of the model output information, including parameter estimates, from the lmer
function.library(MixMAP)
#Load data
#This data has been prepared to be used as input to the MixMAP function
data(MixMAP_example)
#Run MixMAP
MixOut<-mixmapPI(MixMAP_example,pval="GC.Pvalue",snp="MarkerName",
chr="Chr",coord="Coordinate",gene="Gene")
#Display first ten detected genes
summary(MixOut)
#MixManhattan Plot
plot(MixOut)
Run the code above in your browser using DataLab