Browse code

The path() generic has moved from Rsamtools to BiocGenerics

LiNk-NY authored on 20/12/2017 20:04:28
Showing 2 changed files

... ...
@@ -9,10 +9,10 @@ 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.21.1
12
+Version: 1.21.2
13 13
 Depends: R (>= 2.15.0), methods, GenomeInfoDb (>= 1.1.3),
14 14
         GenomicRanges (>= 1.17.12), Rsamtools (>= 1.17.8)
15
-Imports: S4Vectors (>= 0.13.13), IRanges, 
15
+Imports: S4Vectors (>= 0.13.13), IRanges, BiocGenerics (>= 0.25.1),
16 16
         rtracklayer (>= 1.31.2), GenomicFeatures (>= 1.17.13), Biostrings,
17 17
         VariantAnnotation (>= 1.11.4), tools, Biobase, BSgenome,
18 18
         GenomicAlignments (>= 1.1.9), BiocParallel
... ...
@@ -1,6 +1,7 @@
1 1
 useDynLib(gmapR, .registration = TRUE)
2 2
 
3
-importFrom(Rsamtools, path, bamPaths, "bamWhich<-", BamFile, BamFileList,
3
+importFrom(BiocGenerics, path)
4
+importFrom(Rsamtools, bamPaths, "bamWhich<-", BamFile, BamFileList,
4 5
            BamSampler)
5 6
 importFrom(tools, file_path_as_absolute, file_ext, file_path_sans_ext,
6 7
            list_files_with_exts)
... ...
@@ -12,7 +13,8 @@ import(GenomicRanges)
12 13
 import(GenomeInfoDb)
13 14
 import(BiocParallel)
14 15
 importMethodsFrom(GenomeInfoDb, genome)
15
-importFrom(utils, packageVersion)
16
+importFrom(stats, setNames)
17
+importFrom(utils, packageVersion, read.table, str)
16 18
 importFrom(Biostrings, getSeq, readDNAStringSet, DNAStringSet)
17 19
 importMethodsFrom(GenomicRanges, seqnames, strand)
18 20
 importMethodsFrom(Rsamtools, asBam)