Hello Im trying to do an enrichment analisis of a set of differential expressed genes after using DESeq2 my genes are from Hydractinia symbiolongicarpus a non conventional model cnidarian and come from an immujne challegne i did but my species dont have a annotationDBI package associated and i was trying to use clusterProfiler i saw here that is possible to develop an annotation dbi package but im very naive at programming so its possible to use clusterProfiler without the annotationDBI package?
Hello yes i saw a post someone else send me that you posted before here and i was following it but it retrieves me this error when i use enrichr
Gen is like this:
and GO its like this
And when i seach by KEGG clusterProfiler returns me this:
Im not good at coding so im quite desperate rigt now as i dont know how to fix this
You are almost there...
Yet
--> No gene can be mapped.... --> Expected input gene ID: GO:0055080, ....
): you should infer that you just will have to swap the order of the columns in your tibbleGO
.search_kegg_organism
the argumentuse_internal_data
by default is set toTRUE
. This means it will use the KEGG information provided by the packageclusterProfiler
, which likely is outdated; you better set it to FALSE (from the help page:use_internal_data: logical, use kegg_species.rda or latest online KEGG data
).Code to show it works:
Also do you know if the gaphical functions as dotplot, enrichmap and cnetplot works on this generic analysis? still sorry for bothering you
Did you try it yourselves? But the answer is yes.
Yeah i tryed last night and it returned an error, i seach and found somo functions are deprecated, tanks a lot for your help
Thank you very much for your help iu was really deseperate about this that i wasn't thinking too well yesterday im really gratefull with you
And sorry for bothering you again but do you know why this error courred?
No, I don't.
Confirm that
geneList
has the expected format. What is the outcome ofgeneList[1:5]
,str(geneList)
andclass(geneList)
?What is you
sessionInfo()
? Please make sure to use the latest versions of R, Bioconductor and (if you are using that) R-studio!