Browse code

DESCRIPTION and NAMESPACE updates, and version bump

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

Martin Morgan authored on 04/09/2012 21:08:33
Showing 2 changed files

... ...
@@ -1,21 +1,21 @@
1 1
 Package: Streamer
2 2
 Type: Package
3 3
 Title: Enabling stream processing of large files
4
-Version: 1.3.11
4
+Version: 1.3.12
5 5
 Author: Martin Morgan, Nishant Gopalakrishnan
6 6
 Maintainer: Martin Morgan <mtmorgan@fhcrc.org>
7 7
 Description: Large data files can be difficult to work with in R,
8
-  where data generally resides in memory. This package encourages a
9
-  style of programming where data is 'streamed' from disk into R via a
10
-  `producer' and through a series of `consumers' that, typically
11
-  reduce the original data to a manageable size. The package provides
12
-  useful Producer and Consumer stream components for operations such
13
-  as data input, sampling, indexing, and transformation; see
14
-  package?Streamer for details.
8
+    where data generally resides in memory. This package encourages a
9
+    style of programming where data is 'streamed' from disk into R via
10
+    a `producer' and through a series of `consumers' that, typically
11
+    reduce the original data to a manageable size. The package
12
+    provides useful Producer and Consumer stream components for
13
+    operations such as data input, sampling, indexing, and
14
+    transformation; see package?Streamer for details.
15 15
 License: Artistic-2.0
16 16
 LazyLoad: yes
17
-Imports: methods, graph, parallel, BiocGenerics
18
-Suggests: RUnit, Rsamtools (>= 1.5.53)
17
+Imports: methods, graph, RBGL, parallel, BiocGenerics
18
+Suggests: RUnit, Rsamtools (>= 1.5.53), Rgraphviz
19 19
 biocViews: Infrastructure, DataImport
20 20
 Collate: 
21 21
   AllGenerics.R 
... ...
@@ -23,7 +23,7 @@ Collate:
23 23
   ConnectionProducer-classes.R RawInput-class.R Seq-class.R
24 24
   Downsample-class.R FunctionProducerConsumer-classes.R
25 25
   ParallelParam-classes.R Team-class.R Team-methods.R Reducer-class.R
26
-  Utility-classes.R ParallelConnector-class.R TConnector-class.R
27
-  YConnector-class.R
28
-  lapply-methods.R stream-methods.R
26
+  DAGParam-class.R DAGParam-methods.R DAGTeam-class.R
27
+  Utility-classes.R
28
+  lapply-methods.R stream-methods.R plot-methods.R
29 29
   zzz.R
... ...
@@ -9,16 +9,27 @@ importClassesFrom(BiocGenerics, connection)
9 9
 ## only exported on unix
10 10
 ## importFrom(parallel, mccollect, mcparallel)
11 11
 
12
-importFrom(graph, graphBAM)
12
+importClassesFrom(graph, graphNEL)
13 13
 
14
-importMethodsFrom(graph, degree)
14
+importFrom(graph, ftM2graphNEL)
15
+
16
+importMethodsFrom(graph, numNodes, numEdges, nodes, edges, inEdges)
17
+
18
+importFrom(RBGL, tsort)
15 19
 
16 20
 exportPattern("^[^\\.]")
17 21
 
18 22
 exportMethods(lapply, sapply)
19 23
 
20
-exportClasses(Streamer,
21
-              Producer, RawInput, Seq, 
22
-              Consumer, RawToChar, Rev, Reducer, Team, Downsample,
23
-              Stream, ConnectionProducer, ParallelConnector,
24
-              TConnector, YConnector)
24
+exportClasses(
25
+    Streamer,
26
+    Stream,
27
+    Producer,
28
+        RawInput, Seq,
29
+        FunctionProducer,
30
+        ConnectionProducer,
31
+    Consumer,
32
+        RawToChar, Rev, Downsample, Reducer,
33
+        FunctionConsumer,
34
+        Team, ParallelParam, MulticoreParam,
35
+        DAGTeam, DAGParam)