isoLQNO: Differential expression between two groups using LQNO model

Description Usage Arguments Details Value Author(s) References Examples

Description

Differential expression between two groups using LQNO model

Usage

1
isoLQNO(counts, groups = NULL, long = FALSE)

Arguments

counts

Count matrix.

groups

Character vector to indicate the group of each sample.

long

Whether matrix is in long format. Default FALSE.

Details

Methods adapted from Argyropoulos et al (2017).

Value

data.frame with estimates and p-values.

Author(s)

Christos Argyropoulos and Lorena Pantano

References

Argyropoulos, Christos, et al. "Modeling bias and variation in the stochastic processes of small RNA sequencing." Nucleic Acids Research (2017).

Examples

1
2
3
4
5
6
options(warn = -1) # this is only for tiny example
data(dat286)
datRat<-subset(dat286.long,(Series=="Equi" | Series =="RatioA") & Amount=="100 fmoles")
datRat$SampleID<-factor(datRat$SampleID)
datRat$Series<-factor(datRat$Series)
res <- isoLQNO(datRat, long=TRUE)

lpantano/scounts documentation built on May 27, 2019, 2:01 a.m.