Browse code

for duplicated function names

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

Xiaobin Xing authored on 31/03/2016 09:38:20
Showing 2 changed files

... ...
@@ -15,8 +15,7 @@ Description: This package is to find SNV/Indel differences between two
15 15
 License: GPL (>=2)
16 16
 LazyLoad: Yes
17 17
 Depends: R (>= 3.0.0), methods, Rsamtools (>= 1.18.1), doParallel (>= 1.0.8), Biostrings (>= 2.32.1), stringr (>= 0.6.2), matrixStats
18
-               (>= 0.10.0), plyr (>= 1.8.3)
19
-Imports: foreach, IRanges, GenomicRanges
18
+               (>= 0.10.0), plyr (>= 1.8.3), GenomicRanges (>= 1.22.4), IRanges (>= 2.4.8) 
20 19
 Suggests: knitr, RUnit, BiocGenerics
21 20
 biocViews: Alignment, Sequencing, Coverage, SequenceMatching, QualityControl, DataImport, Software, SNP, VariantDetection
22 21
 VignetteBuilder: knitr
... ...
@@ -1,11 +1,10 @@
1
+import(plyr)
1 2
 import(Rsamtools)
2 3
 import(doParallel)
3 4
 import(methods)
4 5
 import(stringr)
5 6
 import(Biostrings)
6 7
 import(matrixStats)
7
-import(foreach)
8
-import(IRanges)
9
-import(plyr)
10 8
 importFrom(GenomicRanges, GRanges)
9
+importFrom(IRanges,IRanges,shift,breakInChunks)
11 10
 export(snpDiff,indelDiff)