getMat-methods: Extract tissue/geneset enrichment matrix from query result

Description Usage Arguments Value Examples

Description

This function extracts the enrichment matrix from eQTL list query result. The rows of the matrixs are pathways; and the columns of the matrixs are tissues/cell lines of the eQTL sets. P-Values from enrichment tests are summarized in this matrix

Usage

1
2
3
4
5
getMat(res, ...)

## S4 method for signature 'loci2pathResult'
getMat(res, test.method = c("gene", "eqtl",
  "glm"), filter.quantile = 0.5, max.ptw.gene = 5000)

Arguments

res

query result from function query.egset.list()

...

additional params

test.method

Choose which enrichment test should be used to retrive p-values from. Options include:"gene"(default, gene-based fisher's exact test),"eqtl" (eqtl based fisher's exact test), "glm" (ordered query)

filter.quantile

Filter option; choose the max quantile of all p-values being kept in the matrix; default is 0.5, which means p-values larger than median p-values are discarded

max.ptw.gene

Filter option; minimum number of genes in a pathway; default is 5000 (pathway with >5000 genes are not included in the matrix)

Value

p-value matrix collected from enrichment result table

Examples

1
2
3
result <- query(query.gr=query.gr, 
  loci=eset.list, path=biocarta)
mat <- getMat(result, test.method="gene")

StanleyXu/egquery documentation built on Sept. 12, 2019, 9:35 a.m.