Description Usage Arguments Value Examples
kegg_summary produces a summary table of the output of calculate_kegg function with including the qvalues.
1 | kegg_summary(dataset)
|
dataset |
A output dataset of calculate_kegg. |
A data frame containg 7 colums as following:
column1: map_numbers, the map numbers of the KEGG pathway.
column2: pathway_description, the discription the the pathway.
column3: background_gene_numbers, number of all genes
included in the pathway.
column4: deg_gene_numbers, number of
differentially expressed genes in the pathway.
column5: pvalue, p-values of the hypergeometric test for the pathway.
column6: adjusted_pvalue, the Bonferroni method adjustment of p-values.
column7: qvalue, q-values of the pvalues of column5.
1 2 3 4 5 | a <- list_species("arachis")
b <- grep_datasets(c("adu","aip"))
deg_list <- as.matrix(b[b$kegg_pathways=='00061',1])[,1]
c <- calculate_kegg(b,deg_list)
d <- kegg_summary(c)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.