cpbayes_uncor {CPBayes} | R Documentation |
Run uncorrelated version of CPBayes.
Description
Run uncorrelated version of CPBayes when the main genetic effect (beta/log(odds ratio)) estimates across studies/traits are uncorrelated.
Usage
cpbayes_uncor(
BetaHat,
SE,
Phenotypes,
Variant,
UpdateSlabVar = TRUE,
MinSlabVar = 0.6,
MaxSlabVar = 1,
MCMCiter = 7500,
Burnin = 500
)
Arguments
BetaHat |
A numeric vector of length K where K is the number of phenotypes. It contains the beta-hat values across studies/traits. No default is specified. |
SE |
A numeric vector with the same dimension as BetaHat providing the standard errors corresponding to BetaHat. Every element of SE must be positive. No default is specified. |
Phenotypes |
A character vector of the same length as BetaHat providing the name of the phenotypes. Default is specified as trait1, trait2, . . . , traitK. Note that BetaHat, SE, and Phenotypes must be in the same order. |
Variant |
A character vector of length one specifying the name of the genetic variant. Default is ‘Variant’. |
UpdateSlabVar |
A logical vector of length one. If TRUE, the variance of the slab distribution that presents the prior distribution of non-null effects is updated at each MCMC iteration in a range (MinSlabVar – MaxSlabVar) (see next). If FALSE, it is fixed at (MinSlabVar + MaxSlabVar)/2. Default is TRUE. |
MinSlabVar |
A numeric value greater than 0.01 providing the minimum value of the variance of the slab distribution. Default is 0.6. |
MaxSlabVar |
A numeric value smaller than 10.0 providing the maximum value of the variance of the slab distribution. Default is 1.0. **Note that, a smaller value of the slab variance will increase the sensitivity of CPBayes while selecting the optimal subset of associated traits but at the expense of lower specificity. Hence the slab variance parameter in CPBayes is inversely related to the level of false discovery rate (FDR) in a frequentist FDR controlling procedure. For a specific dataset, an user can experiment different choices of these three arguments: UpdateSlabVar, MinSlabVar, and MaxSlabVar. |
MCMCiter |
A positive integer greater than or equal to 2200 providing the total number of iterations in the MCMC. Default is 7500. |
Burnin |
A positive integer greater than or equal to 200 providing the burn in period in the MCMC. Default is 500. Note that the MCMC sample size (MCMCiter - Burnin) must be at least 2000, which is 7000 by default. |
Value
The output produced by the function is a list which consists of various components.
variantName |
It is the name of the genetic variant provided by the user. If not specified by the user, default name is ‘Variant’. |
log10_BF |
It provides the log10(Bayes factor) produced by CPBayes that measures the evidence of the overall pleiotropic association. |
locFDR |
It provides the local false discovery rate (posterior probability of null association) produced by CPBayes which is a measure of the evidence of the aggregate-level pleiotropic association. Bayes factor is adjusted for prior odds, but locFDR is solely a function of the posterior odds. locFDR can sometimes be small indicating an association, but log10_BF may not indicate an association. Hence, always check both log10_BF and locFDR. |
subset |
It provides the optimal subset of associated/non-null traits selected by CPBayes. It is NULL if no phenotype is selected. |
important_traits |
It provides the traits which yield a trait-specific posterior probability of association (PPAj) > 20%. Even if a phenotype is not selected in the optimal subset of non-null traits, it can produce a non-negligible value of trait-specific posterior probability of association (PPAj). Note that, ‘important_traits’ is expected to include the traits already contained in ‘subset’. It provides both the name of the important traits and their corresponding values of PPAj. Always check 'important_traits' even if 'subset' contains a single trait. It helps to better explain an observed pleiotropic signal. |
auxi_data |
It contains supplementary data including the MCMC data which is used later
by
|
runtime |
It provides the runtime (in seconds) taken by |
References
Majumdar A, Haldar T, Bhattacharya S, Witte JS (2018) An efficient Bayesian meta analysis approach for studying cross-phenotype genetic associations. PLoS Genet 14(2): e1007139.
See Also
analytic_locFDR_BF_uncor
, post_summaries
, forest_cpbayes
, analytic_locFDR_BF_cor
, cpbayes_cor
, estimate_corln
Examples
data(ExampleDataUncor)
BetaHat <- ExampleDataUncor$BetaHat
BetaHat
SE <- ExampleDataUncor$SE
SE
traitNames <- paste("Disease", 1:10, sep = "")
SNP1 <- "rs1234"
result <- cpbayes_uncor(BetaHat, SE, Phenotypes = traitNames, Variant = SNP1)
str(result)