GPATree-package: GPATree: A package to implement the GPA-Tree method

Description Details Author(s) See Also Examples

Description

This package provides functions for fitting GPA-Tree, a statistical approach for integrative analysis of genome wide association studies (GWAS) data and functional annotation information within a unified framework. GPA-Tree simultaneously identifies disease risk-associated SNPs and combinations of functional annotations that potentially explain the mechanisms through which risk-associated SNPs are related with phenotypes.

Details

This package contains a main class, GPATree, which represents GPATree model fit. This package contains five main methods for the GPATree framework, GPATree, plot, assoc, prune, leaf. GPATree method fits the GPATree model and assoc method implements association mapping. leaf provided information regarding functional annotations that are enriched for the leaves in the GPATree model results. plot allows plotting the GPATree model result, and prune allows further pruning the GPATree. This package also contains a methods for the ShinyGPATree visualization, association mapping and functional annotation tree selection toolkit. ShinyGPATree opens the ShinyGPATree interface, which takes the results generated from GPATree method as input.

Author(s)

Aastha Khatiwada asthakhatiwada@gmail.com

See Also

GPATree, assoc, leaf, prune, plot, ShinyGPATree

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
## Not run: 
library(GPATree)

# load GPATree example data
data(GPATreeExampleData)

# fitting the GPATree model
fit <- GPATree(GPATreeExampleData$gwasPval, GPATreeExampleData$annMat)

# get functional annotation information
leaf(fit)

# association mapping
assoc.gpatree <- assoc(fit, FDR = 0.01, fdrControl = 'global')

# pruning the GPATree model fit
pruned.fit <- prune(fit, cp = 0.005)

# plotting the GPATree model results
plot(fit)
plot(pruned.fit)

# run the ShinyGPATree app using output from the GPATree method
ShinyGPATree(fit)

## End(Not run)

asthakhatiwada/GPATree documentation built on March 8, 2021, 5:29 a.m.