Update from Bioconductor and remove `fill` in `geom_text`
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: CNEr |
2 |
-Version: 1.11.5 |
|
3 |
-Date: 2016-12-01 |
|
2 |
+Version: 1.11.7 |
|
3 |
+Date: 2017-02-23 |
|
4 | 4 |
Title: CNE Detection and Visualization |
5 | 5 |
Description: Large-scale identification and advanced visualization |
6 | 6 |
of sets of conserved noncoding elements. |
... | ... |
@@ -14,7 +14,7 @@ Imports: Biostrings (>= 2.33.4), |
14 | 14 |
XVector (>= 0.5.4), |
15 | 15 |
GenomicAlignments (>= 1.1.9), |
16 | 16 |
methods, |
17 |
- S4Vectors (>= 0.9.25), |
|
17 |
+ S4Vectors (>= 0.13.13), |
|
18 | 18 |
IRanges (>= 2.5.27), |
19 | 19 |
readr (>= 0.2.2), |
20 | 20 |
BiocGenerics, |
... | ... |
@@ -5,7 +5,7 @@ import(BiocGenerics) |
5 | 5 |
### Import S4 classes defined in other packages |
6 | 6 |
### |
7 | 7 |
importClassesFrom(methods, ANY, character, integer, missing) |
8 |
-importClassesFrom(S4Vectors, List, characterORNULL, DataFrame, Pairs) |
|
8 |
+importClassesFrom(S4Vectors, List, character_OR_NULL, DataFrame, Pairs) |
|
9 | 9 |
importClassesFrom(GenomicRanges, GRanges) |
10 | 10 |
importClassesFrom(Biostrings, DNAStringSet) |
11 | 11 |
|
... | ... |
@@ -89,7 +89,6 @@ exportMethods( |
89 | 89 |
syntenicDotplot, |
90 | 90 |
|
91 | 91 |
## Axt-methods.R |
92 |
- # mismatchSummary |
|
93 | 92 |
summary |
94 | 93 |
) |
95 | 94 |
|
... | ... |
@@ -104,7 +103,6 @@ export( |
104 | 103 |
binRangesFromCoordRange, |
105 | 104 |
binRestrictionString, |
106 | 105 |
readCNERangesFromSQLite, |
107 |
- #queryAnnotationSQLite, |
|
108 | 106 |
fetchChromSizes, |
109 | 107 |
|
110 | 108 |
## Axt-class.R |
... | ... |
@@ -118,6 +116,7 @@ export( |
118 | 116 |
|
119 | 117 |
## CNE-class.R |
120 | 118 |
CNE, |
119 |
+ |
|
121 | 120 |
## GRangePairs-class.R |
122 | 121 |
GRangePairs, |
123 | 122 |
|
... | ... |
@@ -131,14 +130,7 @@ export( |
131 | 130 |
read.rmskFasta, |
132 | 131 |
|
133 | 132 |
## ceScan.R |
134 |
- |
|
135 | 133 |
blatCNE, |
136 |
- #ceScanOneStep, |
|
137 |
- |
|
138 |
- ## makeGeneDbFromUCSC.r |
|
139 |
- #supportedUCSCtables, |
|
140 |
- #queryrefGene, queryknownGene, queryensGene, |
|
141 |
- #makeGeneDbFromUCSC, |
|
142 | 134 |
|
143 | 135 |
## WholeGenomeAlignment.R |
144 | 136 |
lastz, |
... | ... |
@@ -40,8 +40,7 @@ axtMatchDistribution <- function(x, size=10000, title=NULL){ |
40 | 40 |
ggtitle(ifelse(is.null(title), "Distribution of matched bases", |
41 | 41 |
title)) + |
42 | 42 |
scale_fill_continuous(low="deepskyblue4", high="gold") + |
43 |
- geom_text(aes(fill=toPlot$percentage, |
|
44 |
- label=round(toPlot$percentage, 1))) |
|
43 |
+ geom_text(aes(label=round(toPlot$percentage, 1))) |
|
45 | 44 |
} |
46 | 45 |
|
47 | 46 |
### ----------------------------------------------------------------- |