gIDR-package: Generalized irreproducible discovery rate

Description Details Author(s) Examples

Description

Reproducibility is essential for reliable scientific discovery. Assessment of reproducibility often involves characterizing the concordance of ranked candidate lists from replicate experiments. Li et al (2011) developed a copula mixture model to assess the reproducibility of findings from high-throughput experiments. The R package 'idr' implemented the method. Despite its broad application, it is not applicable when a large number of ties are present or when a considerable proportion of candidates are unobserved in one replicate, for example, being truncated by a significance threshold. Here we present 'gIDR', that implements a method to handle discreteness and truncation in the ranked lists using a latent variable approach. The generalized method not only allows ties and partially replicated candidates, but also is able to identify substantially more real signals and produce better calibrated error rate than the existing method.

Details

The main function is est.IDR.distrete(). est.IDR.distrete estimates the copula mixture model for discrete data and compute the posterior probability for each observation to be irreproducible. With the function select.IDR() from idr-package, one can select the reproducible observations.

Author(s)

Qunhua Li, Tao Yang

Maintainer: Tao Yang <xadmyangt@gmail.com>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#load chip_seq data
data(chip_seq)
x = chip_seq[,1]
y = chip_seq[,2]

# Initiation
mu <- 2.6
sigma <- 1.3
rho <- 0.8
p <- 0.7
eps <- 0.001
n.missing <- 0

# Estimate parameters of mixture model
gidr.out <- est.IDR.discrete(x, y, mu, sigma, rho, p, eps, n.missing,
                             miss.sym = 0, as.single.loglik = 1,
                             as.single.em = 1, common.only=TRUE, labels=NULL)

names(gidr.out)

# Select reproducible observations
library(idr)
select.IDR(chip_seq, gidr.out$IDR.obs, 0.01)

qunhualilab/gIDR documentation built on May 14, 2019, 10:38 a.m.