... | ... |
@@ -1,8 +1,8 @@ |
1 | 1 |
Package: OncoSimulR |
2 | 2 |
Type: Package |
3 | 3 |
Title: Forward Genetic Simulation of Cancer Progression with Epistasis |
4 |
-Version: 4.1.1 |
|
5 |
-Date: 2022-11-24 |
|
4 |
+Version: 4.1.2 |
|
5 |
+Date: 2023-02-20 |
|
6 | 6 |
Authors@R: c( |
7 | 7 |
person("Ramon", "Diaz-Uriarte", role = c("aut", "cre"), |
8 | 8 |
email = "rdiaz02@gmail.com"), |
... | ... |
@@ -48,7 +48,7 @@ import(ggplot2) |
48 | 48 |
importFrom("ggrepel", geom_text_repel, geom_label_repel) |
49 | 49 |
importFrom("utils", "read.table", "write.table") |
50 | 50 |
importFrom("stats", "rnorm") |
51 |
-importFrom("data.table", rbindlist, .rbind.data.table) |
|
51 |
+importFrom("data.table", rbindlist) |
|
52 | 52 |
importFrom(Rcpp, evalCpp) |
53 | 53 |
importFrom("igraph", igraph.to.graphNEL, graph.data.frame, V, E, |
54 | 54 |
"V<-", "E<-", plot.igraph, layout.reingold.tilford, |
... | ... |
@@ -1,3 +1,7 @@ |
1 |
+Changes in version 4.1.1 (2023-02-20): |
|
2 |
+ - NAMESPACE: do not import .rbind.data.table (no longer exported |
|
3 |
+ from data.table 1.14.8, and not needed with R >= 4.0.0). |
|
4 |
+ |
|
1 | 5 |
Changes in version 4.1 (2022-11-24): |
2 | 6 |
- Faster, cleaner, and better tests of interventions. |
3 | 7 |
|