Usage

  1. Usage:
  2. enrichGO(
  3. gene,
  4. OrgDb,
  5. keyType = "ENTREZID",
  6. ont = "MF",
  7. pvalueCutoff = 0.05,
  8. pAdjustMethod = "BH",
  9. universe,
  10. qvalueCutoff = 0.2,
  11. minGSSize = 10,
  12. maxGSSize = 500,
  13. readable = FALSE,
  14. pool = FALSE
  15. )
  16. Arguments:
  17. gene: a vector of entrez gene id.
  18. OrgDb: OrgDb
  19. keyType: keytype of input gene
  20. ont: One of "BP", "MF", and "CC" subontologies, or "ALL" for all
  21. three.
  22. pvalueCutoff: pvalue cutoff on enrichment tests to report
  23. pAdjustMethod: one of "holm", "hochberg", "hommel", "bonferroni", "BH",
  24. "BY", "fdr", "none"
  25. universe: background genes. If missing, the all genes listed in the
  26. database (eg TERM2GENE table) will be used as background.
  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. minGSSize: minimal size of genes annotated by Ontology term for
  32. testing.
  33. maxGSSize: maximal size of genes annotated for testing
  34. readable: whether mapping gene ID to gene Name
  35. pool: If ont='ALL', whether pool 3 GO sub-ontologies

Example