Browse code

Adds MineICA, SomatiCA and lpNet to the repos.

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/MineICA@73179 bc3139a8-67e5-0310-9ffc-ced21a209358

Marc Carlson authored on 05/02/2013 22:15:53
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,30 @@
1
+\name{annotFeatures}
2
+\alias{annotFeatures}
3
+\title{Annotation of features using an annotation package}
4
+\usage{
5
+  annotFeatures(features, type, annotation)
6
+}
7
+\arguments{
8
+  \item{features}{Feature IDs to be annotated}
9
+
10
+  \item{type}{The object from the package used to annotate
11
+  the features, must be available in
12
+  \code{ls("package:package_name")}}
13
+
14
+  \item{annotation}{An annotation package}
15
+}
16
+\value{
17
+  A vector of gene/object IDs indexed by the feature IDs.
18
+}
19
+\description{
20
+  This function annotates a set of features
21
+}
22
+\examples{
23
+library(hgu133a.db)
24
+annotFeatures(features = c("1007_s_at", "1053_at", "117_at", "121_at", "1255_g_at"),
25
+              type="SYMBOL", annotation="hgu133a.db")
26
+}
27
+\author{
28
+  Anne Biton
29
+}
30
+