Browse code

updated

Xu Ren authored on 19/08/2018 21:03:31
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,35 @@
1
+% Generated by roxygen2: do not edit by hand
2
+% Please edit documentation in R/getDescription.R
3
+\name{getDescription}
4
+\alias{getDescription}
5
+\title{Get gene set description}
6
+\usage{
7
+getDescription(GSids, GS.type)
8
+}
9
+\arguments{
10
+\item{GSids}{A vector contains gene set IDs.}
11
+
12
+\item{GS.type}{A string. "GO", "KEGG", or "Reactome".}
13
+}
14
+\value{
15
+A vector contains gene sets description.
16
+}
17
+\description{
18
+This function gets description of gene sets.
19
+}
20
+\examples{
21
+GSids = c("GO:0007389", "GO:0000978", "GO:0043062")
22
+Description = getDescription(GSids, "GO")
23
+head(Description)
24
+}
25
+\references{
26
+Carlson M (2018). GO.db: A set of annotation maps describing 
27
+the entire Gene Ontology. R package version 3.6.0.
28
+
29
+Yu G, Wang L, Han Y, He Q (2012). clusterProfiler: an R package 
30
+for comparing biological themes among gene clusters. OMICS: A Journal 
31
+of Integrative Biology, 16(5), 284-287.
32
+
33
+Ligtenberg W (2017). reactome.db:
34
+A set of annotation maps for reactome. R package version 1.62.0.
35
+}