... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: MultiAssayExperimentData |
2 | 2 |
Title: Exposes and makes available data from web resources such as cBioPortal |
3 |
-Version: 0.99.15 |
|
3 |
+Version: 0.99.16 |
|
4 | 4 |
Authors@R: c(person("Levi", "Waldron", email = "[email protected]", |
5 | 5 |
role = "aut"), |
6 | 6 |
person("Marcel", "Ramos", email = "[email protected]", |
... | ... |
@@ -10,7 +10,11 @@ Description: The MultiAssayExperimentData package takes compressed resources |
10 | 10 |
object with Bioconductor classes. |
11 | 11 |
Depends: R (>= 3.5.0) |
12 | 12 |
Imports: |
13 |
- S4Vectors |
|
13 |
+ MultiAssayExperiment, |
|
14 |
+ S4Vectors, |
|
15 |
+ readr, |
|
16 |
+ RTCGAToolbox, |
|
17 |
+ TCGAutils |
|
14 | 18 |
Suggests: |
15 | 19 |
BiocStyle, |
16 | 20 |
knitr |
... | ... |
@@ -1,8 +1,16 @@ |
1 | 1 |
# Generated by roxygen2: do not edit by hand |
2 | 2 |
|
3 | 3 |
export(importcBioPortal) |
4 |
+import(RTCGAToolbox) |
|
5 |
+importFrom(MultiAssayExperiment,MultiAssayExperiment) |
|
6 |
+importFrom(S4Vectors,"metadata<-") |
|
7 |
+importFrom(S4Vectors,DataFrame) |
|
4 | 8 |
importFrom(S4Vectors,SimpleList) |
5 | 9 |
importFrom(S4Vectors,isSingleString) |
6 | 10 |
importFrom(S4Vectors,metadata) |
7 | 11 |
importFrom(SummarizedExperiment,SummarizedExperiment) |
12 |
+importFrom(TCGAutils,TCGAbarcode) |
|
13 |
+importFrom(TCGAutils,generateMap) |
|
14 |
+importFrom(readr,read_delim) |
|
8 | 15 |
importFrom(readr,read_tsv) |
16 |
+importFrom(readr,type_convert) |
... | ... |
@@ -1,4 +1,7 @@ |
1 |
-#' @importFrom S4Vectors isSingleString metadata SimpleList |
|
1 |
+#' @importFrom S4Vectors isSingleString metadata metadata<- SimpleList DataFrame |
|
2 | 2 |
#' @importFrom SummarizedExperiment SummarizedExperiment |
3 |
-#' @importFrom readr read_tsv |
|
3 |
+#' @importFrom readr read_tsv read_delim type_convert |
|
4 |
+#' @importFrom MultiAssayExperiment MultiAssayExperiment |
|
5 |
+#' @importFrom TCGAutils generateMap TCGAbarcode |
|
6 |
+#' @import RTCGAToolbox |
|
4 | 7 |
NULL |