group_GO: Calculates the GO profile of a vector of genes/proteins at a...

Description Usage Arguments Value Author(s) Examples

View source: R/bioAnalysis.R

Description

This function is a wrappper to the function groupGO from the package clusterProfiler. Given a vector of genes/proteins, it returns the GO profile at a specific level. It returns a groupGOResult instance.

Usage

1
group_GO(data, idFrom, orgdb, ont, level, readable = FALSE)

Arguments

data

A vector of ID (among ENSEMBL, ENTREZID, GENENAME, REFSEQ, UNIGENE, UNIPROT -can be different according to organisms)

idFrom

character indicating the input ID format (among ENSEMBL, ENTREZID, GENENAME, REFSEQ, UNIGENE, UNIPROT)

orgdb

annotation Bioconductor package to use (character format)

ont

on which ontology to perform the analysis (MF, BP or CC)

level

level of the ontolofy to perform the analysis

readable

TRUE or FALSE (default FALSE)

Value

GO profile at a specific level

Author(s)

Florence Combes

Examples

1
2
3
utils::data(Exp1_R25_prot, package='DAPARdata')
ggo<-group_GO(data=Biobase::fData(Exp1_R25_prot)$Protein.IDs, idFrom="UNIPROT", 
orgdb="org.Sc.sgd.db", ont="MF", level=2)

DAPAR documentation built on April 11, 2021, 6 p.m.