Browse code

adjustments in response to the vals -> filter renaming in GenomicFeatures

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

Herve Pages authored on 05/04/2016 22:55:27
Showing 3 changed files

... ...
@@ -9,7 +9,7 @@ Description: GSNAP and GMAP are a pair of tools to align short-read
9 9
         methods to work with GMAP and GSNAP from within R. In addition,
10 10
         it provides methods to tally alignment results on a
11 11
         per-nucleotide basis using the bam_tally tool.
12
-Version: 1.13.10
12
+Version: 1.13.11
13 13
 Depends: R (>= 2.15.0), methods, GenomeInfoDb (>= 1.1.3),
14 14
         GenomicRanges (>= 1.17.12), Rsamtools (>= 1.17.8)
15 15
 Imports: S4Vectors (>= 0.9.25), IRanges, 
... ...
@@ -39,7 +39,7 @@ exonsToGene <- range
39 39
 
40 40
 getExons <- function(txdb, orgdb, gene) {
41 41
   eg <- AnnotationDbi::select(orgdb, gene, "ENTREZID", "SYMBOL")$ENTREZID
42
-  exons(txdb, vals = list(gene_id=eg))
42
+  exons(txdb, filter = list(gene_id=eg))
43 43
 }
44 44
 
45 45
 getGeneRoi <- function(txdb, orgdb, gene, extend=1e6) {
... ...
@@ -165,7 +165,7 @@ library("org.Hs.eg.db")
165 165
 library("TxDb.Hsapiens.UCSC.hg19.knownGene")
166 166
 eg <- org.Hs.eg.db::org.Hs.egSYMBOL2EG[["TP53"]]
167 167
 txdb <- TxDb.Hsapiens.UCSC.hg19.knownGene
168
-tx <- transcripts(txdb, vals = list(gene_id = eg))
168
+tx <- transcripts(txdb, filter = list(gene_id = eg))
169 169
 roi <- range(tx) + 1e6
170 170
 strand(roi) <- "*"
171 171
 @