Browse code

fix a check warning and a windows build error

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

Daniel Jones authored on 13/10/2011 18:02:34
Showing 3 changed files

... ...
@@ -1,5 +1,5 @@
1 1
 Package: seqbias
2
-Version: 1.1.3
2
+Version: 1.1.4
3 3
 Date: 25-12-2010
4 4
 Title: Estimation of per-position bias in high-throughput sequencing data
5 5
 Description: This package implements a model of per-position sequencing bias in
... ...
@@ -11,6 +11,7 @@ Maintainer: Daniel Jones <dcjones@cs.washington.edu>
11 11
 Depends: R (>= 2.13.0), GenomicRanges (>= 0.1.0),
12 12
          Biostrings (>= 2.15.0), methods 
13 13
 LinkingTo: Rsamtools
14
+Imports: zlibbioc
14 15
 biocViews: Sequencing, HighThroughputSequencing
15 16
 LazyLoad: yes
16 17
 License: LGPL-3
... ...
@@ -1,2 +1,3 @@
1 1
 exportPattern("^[^\\.]")
2 2
 useDynLib(seqbias)
3
+import(zlibbioc)
... ...
@@ -3,7 +3,7 @@
3 3
 \title{Counting reads across intervals}
4 4
 \description{Counts the number of reads starting at each position across given
5 5
 genomic intervals}
6
-\usage{count.reads(reads_fn, I, sb=NULL, binary=FALSE, sum.counts=TRUE)}
6
+\usage{count.reads(reads_fn, I, sb=NULL, binary=FALSE, sum.counts=FALSE)}
7 7
 \arguments{
8 8
   \item{reads_fn}{filename of aligned reads in BAM format}
9 9
   \item{I}{a GRanges object giving valid genomic intervals}