Browse code

resolve Windows warnings occuring in the build 'file link 'MineICAParams-class' in package 'MineICA' does not exist and so has been treated as a topic'

Anne Biton authored on 23/04/2020 18:30:14
Showing 1 changed files
... ...
@@ -25,4 +25,4 @@ SlistByGene(object)
25 25
 }
26 26
 \author{Anne Biton}
27 27
 
28
-\seealso{\code{\link{IcaSet-class}}}
28
+\seealso{\code{\link{class-IcaSet}}}
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,28 @@
1
+\name{Slist}
2
+\alias{Slist}
3
+\alias{SlistByGene}
4
+
5
+
6
+\title{Retrieve feature/gene projections stored in an \code{\link{IcaSet}} object
7
+  as a list.}
8
+\description{These generic functions retrieve, from an IcaSet object,
9
+  the feature and gene projections contained in
10
+  the attribute \code{S} and \code{SByGene}  as
11
+  a list where feature and gene IDs are preserved.
12
+}
13
+\usage{
14
+Slist(object)
15
+SlistByGene(object)
16
+}
17
+\arguments{
18
+  \item{object}{Object of class \code{IcaSet}.}
19
+}
20
+\value{
21
+  \code{Slist} and \code{SlistByGene} return a list whose length equals the number of
22
+  components contained in the \code{IcaSet} object. Each element of this
23
+  list contains a vector of feature or gene projections 
24
+  indexed by the feature or gene IDs.
25
+}
26
+\author{Anne Biton}
27
+
28
+\seealso{\code{\link{IcaSet-class}}}