Usage

  1. Usage:
  2. enrichKEGG(
  3. gene,
  4. organism = "hsa",
  5. keyType = "kegg",
  6. pvalueCutoff = 0.05,
  7. pAdjustMethod = "BH",
  8. universe,
  9. minGSSize = 10,
  10. maxGSSize = 500,
  11. qvalueCutoff = 0.2,
  12. use_internal_data = FALSE
  13. )
  14. Arguments:
  15. gene: a vector of entrez gene id.
  16. organism: supported organism listed in
  17. 'http://www.genome.jp/kegg/catalog/org_list.html'
  18. keyType: one of "kegg", 'ncbi-geneid', 'ncib-proteinid' and 'uniprot'
  19. pvalueCutoff: pvalue cutoff on enrichment tests to report
  20. pAdjustMethod: one of "holm", "hochberg", "hommel", "bonferroni", "BH",
  21. "BY", "fdr", "none"
  22. universe: background genes. If missing, the all genes listed in the
  23. database (eg TERM2GENE table) will be used as background.
  24. minGSSize: minimal size of genes annotated by Ontology term for
  25. testing.
  26. maxGSSize: maximal size of genes annotated for testing
  27. qvalueCutoff: qvalue cutoff on enrichment tests to report as
  28. significant. Tests must pass i) pvalueCutoff on unadjusted
  29. pvalues, ii) pvalueCutoff on adjusted pvalues and iii)
  30. qvalueCutoff on qvalues to be reported.
  31. use_internal_data: logical, use KEGG.db or latest online KEGG data

Example