git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/gmapR@89880 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -11,10 +11,11 @@ Description: GSNAP and GMAP are a pair of tools to align short-read |
11 | 11 |
it provides methods to tally alignment results on a |
12 | 12 |
per-nucleotide basis using the bam_tally tool. |
13 | 13 |
Version: 1.7.3 |
14 |
-Depends: R (>= 2.15.0), methods, GenomicRanges |
|
15 |
-Imports: S4Vectors, IRanges, Rsamtools (>= 1.7.4), rtracklayer (>= 1.17.15), |
|
16 |
- GenomicFeatures, Biostrings, VariantAnnotation (>= 1.11.1), |
|
17 |
- tools, Biobase, BSgenome, GenomicAlignments |
|
14 |
+Depends: R (>= 2.15.0), methods, GenomeInfoDb (>= 1.1.3), |
|
15 |
+ GenomicRanges (>= 1.17.12) |
|
16 |
+Imports: S4Vectors, IRanges, Rsamtools (>= 1.17.8), rtracklayer (>= 1.25.5), |
|
17 |
+ GenomicFeatures, Biostrings, VariantAnnotation (>= 1.11.4), |
|
18 |
+ tools, Biobase, BSgenome, GenomicAlignments (>= 1.1.9) |
|
18 | 19 |
Suggests: RUnit, BSgenome.Dmelanogaster.UCSC.dm3, |
19 | 20 |
BSgenome.Scerevisiae.UCSC.sacCer3, org.Hs.eg.db, |
20 | 21 |
TxDb.Hsapiens.UCSC.hg19.knownGene, BSgenome.Hsapiens.UCSC.hg19, |
... | ... |
@@ -1,18 +1,18 @@ |
1 | 1 |
useDynLib(gmapR, .registration = TRUE) |
2 | 2 |
|
3 |
-importFrom(Rsamtools, path, bamPaths, "bamWhich<-", BamFile, BamFileList, |
|
4 |
- BamSampler) |
|
3 |
+import(methods) |
|
5 | 4 |
importFrom(tools, file_path_as_absolute, file_ext, file_path_sans_ext, |
6 | 5 |
list_files_with_exts) |
6 |
+importFrom(utils, packageVersion) |
|
7 |
+ |
|
8 |
+importFrom(Rsamtools, path, bamPaths, "bamWhich<-", BamFile, BamFileList, |
|
9 |
+ BamSampler) |
|
7 | 10 |
importFrom(Biobase, createPackage) |
8 | 11 |
import(S4Vectors) |
9 | 12 |
import(IRanges) |
10 |
-import(methods) |
|
13 |
+import(GenomeInfoDb) |
|
11 | 14 |
import(GenomicRanges) |
12 |
-importFrom(utils, packageVersion) |
|
13 | 15 |
importFrom(Biostrings, getSeq, readDNAStringSet, DNAStringSet) |
14 |
-importFrom(GenomicRanges, genome, seqinfo) |
|
15 |
-importMethodsFrom(GenomicRanges, seqnames, strand) |
|
16 | 16 |
importMethodsFrom(Rsamtools, asBam) |
17 | 17 |
importClassesFrom(GenomicFeatures, TranscriptDb) |
18 | 18 |
importFrom(GenomicFeatures, transcripts, exons) |