git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Streamer@69054 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,12 +1,14 @@ |
1 |
-setGeneric("stream", |
|
2 |
- function(x, ..., verbose=FALSE) standardGeneric("stream"), |
|
3 |
- signature="x") |
|
4 |
- |
|
5 | 1 |
setGeneric("reset", function(x, ...) standardGeneric("reset")) |
6 | 2 |
|
7 | 3 |
setGeneric("yield", function(x, ...) standardGeneric("yield")) |
8 | 4 |
|
9 | 5 |
setGeneric("status", function(x, ...) standardGeneric("status")) |
10 | 6 |
|
7 |
+setGeneric("Stream", |
|
8 |
+ function(x, ..., verbose=FALSE) standardGeneric("Stream"), |
|
9 |
+ signature="x") |
|
10 |
+ |
|
11 |
+setGeneric("DAGParam", function(x, ...) standardGeneric("DAGParam")) |
|
12 |
+ |
|
11 | 13 |
setGeneric("Team", function(FUN, ..., param) standardGeneric("Team"), |
12 | 14 |
signature = "param") |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Streamer@68831 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -7,3 +7,6 @@ setGeneric("reset", function(x, ...) standardGeneric("reset")) |
7 | 7 |
setGeneric("yield", function(x, ...) standardGeneric("yield")) |
8 | 8 |
|
9 | 9 |
setGeneric("status", function(x, ...) standardGeneric("status")) |
10 |
+ |
|
11 |
+setGeneric("Team", function(FUN, ..., param) standardGeneric("Team"), |
|
12 |
+ signature = "param") |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Streamer@68814 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,9 @@ |
1 |
+setGeneric("stream", |
|
2 |
+ function(x, ..., verbose=FALSE) standardGeneric("stream"), |
|
3 |
+ signature="x") |
|
4 |
+ |
|
5 |
+setGeneric("reset", function(x, ...) standardGeneric("reset")) |
|
6 |
+ |
|
7 |
+setGeneric("yield", function(x, ...) standardGeneric("yield")) |
|
8 |
+ |
|
9 |
+setGeneric("status", function(x, ...) standardGeneric("status")) |