- revise vignette to reflect working with short reads, not alignments
- update example data
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ShortRead@82095 bc3139a8-67e5-0310-9ffc-ced21a209358
This changes the manual pages etc. so that the detail function and
generic can be moved to the Biostrings package.
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ShortRead@49981 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -51,8 +51,8 @@ |
51 | 51 |
\item{show}{\code{signature(object = "ExperimentPath")}: briefly |
52 | 52 |
summarize the file paths of \code{object}.} |
53 | 53 |
|
54 |
- \item{detail}{\code{signature(object = "ExperimentPath")}: summarize |
|
55 |
- file paths of \code{object}.} |
|
54 |
+ \item{detail}{\code{signature(x = "ExperimentPath")}: summarize |
|
55 |
+ file paths of \code{x}.} |
|
56 | 56 |
} |
57 | 57 |
} |
58 | 58 |
|
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ShortRead@33714 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -39,7 +39,7 @@ |
39 | 39 |
\describe{ |
40 | 40 |
\item{\code{basePath}}{See above.} |
41 | 41 |
} |
42 |
- The slot is accessed with \code{basePath} or \code{experimentPath}. |
|
42 |
+ The slot is accessed with \code{experimentPath}. |
|
43 | 43 |
} |
44 | 44 |
\section{Extends}{ |
45 | 45 |
Class \code{"\linkS4class{.ShortReadBase}"}, directly. |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ShortRead@33712 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,63 @@ |
1 |
+\name{ExperimentPath-class} |
|
2 |
+\docType{class} |
|
3 |
+\alias{ExperimentPath-class} |
|
4 |
+% constructors |
|
5 |
+\alias{ExperimentPath} |
|
6 |
+% etc |
|
7 |
+\alias{show,ExperimentPath-method} |
|
8 |
+\alias{detail,ExperimentPath-method} |
|
9 |
+ |
|
10 |
+\title{"ExperimentPath" class representing a file hierarchy of data |
|
11 |
+ files} |
|
12 |
+ |
|
13 |
+\description{ |
|
14 |
+ |
|
15 |
+ Short read technologies often produce a hierarchy of output files. The |
|
16 |
+ content of the hierarchy varies. This class represents the root of the |
|
17 |
+ file hierarchy. Specific classes (e.g., |
|
18 |
+ \code{\linkS4class{SolexaPath}}) represent different technologies. |
|
19 |
+ |
|
20 |
+} |
|
21 |
+\section{Objects from the Class}{ |
|
22 |
+ |
|
23 |
+ Objects from the class are created by calls to the constructor: |
|
24 |
+ |
|
25 |
+ \code{ExperimentPath(experimentPath)} |
|
26 |
+ |
|
27 |
+ \describe{ |
|
28 |
+ \item{experimentPath}{\code{character(1)} object pointing to the |
|
29 |
+ top-level directory of the experiment; see specific technology |
|
30 |
+ classes for additional detail.} |
|
31 |
+ \item{verbose=FALSE}{(optional) logical vector which, when |
|
32 |
+ \code{TRUE} results in warnings if paths do not exist.} |
|
33 |
+ } |
|
34 |
+ All paths must be fully-specified. |
|
35 |
+} |
|
36 |
+\section{Slots}{ |
|
37 |
+ \code{ExperimentPath} has one slot, containing a fully |
|
38 |
+ specified path to the corresponding directory (described above). |
|
39 |
+ \describe{ |
|
40 |
+ \item{\code{basePath}}{See above.} |
|
41 |
+ } |
|
42 |
+ The slot is accessed with \code{basePath} or \code{experimentPath}. |
|
43 |
+} |
|
44 |
+\section{Extends}{ |
|
45 |
+ Class \code{"\linkS4class{.ShortReadBase}"}, directly. |
|
46 |
+} |
|
47 |
+\section{Methods}{ |
|
48 |
+ Methods include: |
|
49 |
+ \describe{ |
|
50 |
+ |
|
51 |
+ \item{show}{\code{signature(object = "ExperimentPath")}: briefly |
|
52 |
+ summarize the file paths of \code{object}.} |
|
53 |
+ |
|
54 |
+ \item{detail}{\code{signature(object = "ExperimentPath")}: summarize |
|
55 |
+ file paths of \code{object}.} |
|
56 |
+ } |
|
57 |
+} |
|
58 |
+ |
|
59 |
+\author{Michael Lawrence} |
|
60 |
+\examples{ |
|
61 |
+showClass("ExperimentPath") |
|
62 |
+} |
|
63 |
+\keyword{classes} |