Browse code

fix default (NULL) for gmap-mode argument to gsnap

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

Michael Lawrence authored on 09/09/2013 21:59:47
Showing 2 changed files

... ...
@@ -10,7 +10,7 @@ Description: GSNAP and GMAP are a pair of tools to align short-read
10 10
     to work with GMAP and GSNAP from within R. In addition, it provides 
11 11
     methods to tally alignment results on a per-nucleotide basis using 
12 12
     the bam_tally tool.
13
-Version: 1.3.5
13
+Version: 1.3.6
14 14
 Depends: R (>= 2.15.0), methods, GenomicRanges
15 15
 Imports: IRanges, Rsamtools (>= 1.7.4), rtracklayer (>= 1.17.15), GenomicRanges,
16 16
          GenomicFeatures, Biostrings, VariantAnnotation (>= 1.7.34), tools,
... ...
@@ -27,7 +27,7 @@ setClass("GsnapParam",
27 27
                         nofails = "logical", 
28 28
                         split_output = "logical",
29 29
                         terminal_threshold = "integer",
30
-                        gmap_mode = "character",
30
+                        gmap_mode = "characterORNULL",
31 31
                         extra = "list"))
32 32
 
33 33
 ### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -