Browse code

Adds oposSOM/ pepStat/ Polyfit/ pRolocGUI/ Pviz/ shinyMethyl/ to the repos.

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

Marc Carlson authored on 01/07/2014 20:38:11
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,34 @@
1
+#' peptideSet class
2
+#'
3
+#' This class gathers all information from gpr files, annotation data and sequence data
4
+#'
5
+#' @section Slots:
6
+#' \describe{
7
+#'  \item{featureRange}{A \code{GRanges}object. The ranges and sequences of
8
+#' the peptides and their associated annotation.}
9
+#'  \item{phenoData}{An \code{AnnotatedDataFrame}. Annotation for the samples.}
10
+#'  \item{assayData}{}
11
+#'  \item{featureData}{}
12
+#'  \item{annotation}{}
13
+#'  \item{protocolData}{Slots inherited from \code{ExpressionSet}.}
14
+#' }
15
+#'
16
+#' @details
17
+#' See \code{?`peptideSet-methods`} for a list of accessors and method associated
18
+#' with the class.
19
+#'
20
+#' @seealso \code{\link{ExpressionSet}}, \code{\link{peptideSet-methods}}
21
+#'
22
+#' @importFrom Biobase ExpressionSet
23
+#' @importClassesFrom Biobase Versioned VersionedBiobase eSet ExpressionSet
24
+#' @importClassesFrom GenomicRanges GRanges
25
+#' @name peptideSet
26
+#' @rdname peptideSet
27
+#' @aliases peptideSet-class
28
+#' @exportClass peptideSet
29
+#' @author Greg Imholte
30
+#'
31
+setClass("peptideSet",
32
+         contains=c("ExpressionSet"),
33
+         representation(featureRange="GRanges")
34
+)
0 35
\ No newline at end of file