Description Usage Arguments Value References Examples
Analyze functional interactions of AS events using Discriminative Random Walk with Restart (DRaWR). It runs a DRaWR on a heterogeneous network containing genes, AS events, and pathways. It then performs GSEA on gene sets related to query genes.
1 2 3 4  | 
object | 
 Object of class ASpediaFI  | 
query | 
 a character vector or a data frame containing query genes  | 
expr | 
 a   | 
ppi | 
 an   | 
pathways | 
 a GMT file or a named list of pathway gene sets. If NULL, a combined list of HALLMARK, KEGG, and REACTOME pathway gene sets will be used.  | 
restart | 
 a restart probability  | 
num.folds | 
 the number of folds for cross-validation  | 
num.feats | 
 the number of feature nodes to be retained in the final subnetwork  | 
low.expr | 
 Genes with mean expression below low.expr are excluded. AS events for corresponding genes are also excluded.  | 
low.var | 
 AS events with variance below low.var are excluded. If NULL, top 10,000 variable events are used for analysis.  | 
prop.na | 
 AS events with the higher proportion of missing values than prop.na are excluded.  | 
prop.extreme | 
 AS events with the higher proportion of extreme values (0 or 1) than prop.extreme are excluded.  | 
cor.threshold | 
 a pair of AS event and gene with Spearman's correlation greather than cor.threshold are connected in a heterogeneous network.  | 
ASpediaFI object with results of functional interaction analysis
Blatti, C. et al. (2016). Characterizing gene sets using discrminative random walks with restart on heterogeneous biological networks. Bioinformatics, 32.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  | library(limma)
data(GSE114922.fpkm)
data(GSE114922.psi)
design <- cbind(WT = 1, MvsW = colData(GSE114922.psi)$condition == 'MUT')
fit <- lmFit(log2(GSE114922.fpkm + 1), design = design)
fit <- eBayes(fit, trend = TRUE)
tt <- topTable(fit, number = Inf, coef = 'MvsW')
query <- rownames(tt[tt$logFC > 1 & tt$P.Value < 0.1, ])
head(query)
## Not run: 
GSE114922.ASpediaFI <- analyzeFI(
    GSE114922.ASpediaFI, query,
    GSE114922.fpkm
)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.