Question is about function enrichKEGG. Input data is a vector of entrez gene ids. Please see, page 12 of manual at
https://bioconductor.org/packages/release/bioc/manuals/clusterProfiler/man/clusterProfiler.pdf. But for parameter keyType=entrezid is not supported. Its default value is kegg.
That means when one input data it should be in entrezgene ids but downloaded data from Kegg website will consist of kegg ids (not entrez gene ids), can it has any problem during enrichment analysis?
What is the proper command
1)
enrichKEGG( enzids , organism="mmu", keyType = "ENTREZID", use_internal_data = FALSE,
pAdjustMethod = "BH", pvalueCutoff = 0.05, qvalueCutoff = 0.1)
OR
2)
enrichKEGG( enzids , organism="mmu", keyType = "kegg", use_internal_data = FALSE,
pAdjustMethod = "BH", pvalueCutoff = 0.05, qvalueCutoff = 0.1)