http://biit.cs.ut.ee/gprofiler/page/citing 其主要功能包含四大块: g:GOSt:功能富集分析工具 g:Convert:基因ID、蛋白名、转录本等ID相互转换 g:Orth:跨物种同源性分析 g:SNPense:定位SNP的rs识别染色体位置,基因信息和变异类型 1) g:GOSt 包含了常见的物种,高级参数中包含了选择
library(gprofiler) ``` 然后,使用`gconvert`函数将gProfiler ID转换为基因名称: ```R # 创建一个包含gProfiler ID的向量 gprofiler_ids <- c("ENSG00000136997", "ENSG00000157764", "ENSG00000228253") # 将gProfiler ID转换为基因名称 gene_names <- gconvert(gprofiler_ids, org="hsapiens", from_typ...