... | ... |
@@ -18,6 +18,7 @@ importMethodsFrom(Biobase, featureNames, |
18 | 18 |
|
19 | 19 |
importMethodsFrom(S4Vectors, metadata, |
20 | 20 |
"metadata<-") |
21 |
+importMethodsFrom(IRanges, match) |
|
21 | 22 |
|
22 | 23 |
importMethodsFrom(SummarizedExperiment, assays, |
23 | 24 |
colData) |
... | ... |
@@ -40,6 +41,7 @@ importFrom(utils, installed.packages, |
40 | 41 |
read.csv, |
41 | 42 |
write.csv) |
42 | 43 |
importFrom(S4Vectors, SimpleList) |
44 |
+importFrom(IRanges, CharacterList) |
|
43 | 45 |
importFrom(GSEABase, AnnoOrEntrezIdentifier, |
44 | 46 |
mapIdentifiers, |
45 | 47 |
getGmt) |
... | ... |
@@ -1,7 +1,6 @@ |
1 | 1 |
useDynLib(GSVA) |
2 | 2 |
|
3 | 3 |
import(methods) |
4 |
-import(BiocGenerics) |
|
5 | 4 |
|
6 | 5 |
importClassesFrom(Biobase, ExpressionSet) |
7 | 6 |
importClassesFrom(SummarizedExperiment, SummarizedExperiment) |
... | ... |
@@ -33,7 +32,8 @@ importMethodsFrom(BiocParallel, bpiterate, |
33 | 32 |
|
34 | 33 |
importFrom(graphics, plot) |
35 | 34 |
importFrom(stats, ecdf, |
36 |
- na.omit) |
|
35 |
+ na.omit, |
|
36 |
+ sd) |
|
37 | 37 |
importFrom(utils, installed.packages, |
38 | 38 |
setTxtProgressBar, |
39 | 39 |
txtProgressBar, |
... | ... |
@@ -58,8 +58,10 @@ importFrom(DelayedArray, rowAutoGrid, |
58 | 58 |
read_block, |
59 | 59 |
viewportReduce, |
60 | 60 |
write_block, |
61 |
- close) |
|
62 |
-importFrom(HDF5Array, HDF5RealizationSink) |
|
61 |
+ close, |
|
62 |
+ t) |
|
63 |
+importFrom(HDF5Array, HDF5RealizationSink, |
|
64 |
+ writeHDF5Array) |
|
63 | 65 |
importFrom(DelayedMatrixStats, rowSds) |
64 | 66 |
importFrom(BiocSingular, runRandomSVD) |
65 | 67 |
|
... | ... |
@@ -52,6 +52,10 @@ importFrom(BiocParallel, SerialParam, |
52 | 52 |
importFrom(SingleCellExperiment, SingleCellExperiment) |
53 | 53 |
importFrom(sparseMatrixStats, colRanks) |
54 | 54 |
importFrom(DelayedArray, rowAutoGrid, |
55 |
+ colAutoGrid, |
|
56 |
+ currentBlockId, |
|
57 |
+ read_block, |
|
58 |
+ viewportReduce, |
|
55 | 59 |
write_block, |
56 | 60 |
close) |
57 | 61 |
importFrom(HDF5Array, HDF5RealizationSink) |
... | ... |
@@ -8,6 +8,8 @@ importClassesFrom(SummarizedExperiment, SummarizedExperiment) |
8 | 8 |
importClassesFrom(GSEABase, GeneSetCollection) |
9 | 9 |
importClassesFrom(SingleCellExperiment, SingleCellExperiment) |
10 | 10 |
importClassesFrom(Matrix, dgCMatrix) |
11 |
+importClassesFrom(DelayedArray, DelayedArray) |
|
12 |
+importClassesFrom(HDF5Array, HDF5Array) |
|
11 | 13 |
|
12 | 14 |
importMethodsFrom(Biobase, featureNames, |
13 | 15 |
phenoData, |
... | ... |
@@ -48,8 +50,12 @@ importFrom(BiocParallel, SerialParam, |
48 | 50 |
multicoreWorkers, |
49 | 51 |
bpnworkers) |
50 | 52 |
importFrom(SingleCellExperiment, SingleCellExperiment) |
51 |
-importFrom(BiocSingular, runExactSVD) |
|
52 | 53 |
importFrom(sparseMatrixStats, colRanks) |
54 |
+importFrom(DelayedArray, rowAutoGrid, |
|
55 |
+ write_block, |
|
56 |
+ close) |
|
57 |
+importFrom(HDF5Array, HDF5RealizationSink) |
|
58 |
+importFrom(DelayedMatrixStats, rowSds) |
|
53 | 59 |
|
54 | 60 |
exportMethods(gsva, |
55 | 61 |
filterGeneSets, |
... | ... |
@@ -29,8 +29,6 @@ importMethodsFrom(BiocParallel, bpiterate, |
29 | 29 |
bplapply, |
30 | 30 |
"bpprogressbar<-") |
31 | 31 |
|
32 |
-importMethodsFrom(BiocSingular, runExactSVD) |
|
33 |
- |
|
34 | 32 |
importFrom(graphics, plot) |
35 | 33 |
importFrom(stats, ecdf, |
36 | 34 |
na.omit) |
... | ... |
@@ -50,6 +48,7 @@ importFrom(BiocParallel, SerialParam, |
50 | 48 |
multicoreWorkers, |
51 | 49 |
bpnworkers) |
52 | 50 |
importFrom(SingleCellExperiment, SingleCellExperiment) |
51 |
+importFrom(BiocSingular, runExactSVD) |
|
53 | 52 |
|
54 | 53 |
exportMethods(gsva, |
55 | 54 |
filterGeneSets, |
... | ... |
@@ -7,6 +7,7 @@ importClassesFrom(Biobase, ExpressionSet) |
7 | 7 |
importClassesFrom(SummarizedExperiment, SummarizedExperiment) |
8 | 8 |
importClassesFrom(GSEABase, GeneSetCollection) |
9 | 9 |
importClassesFrom(SingleCellExperiment, SingleCellExperiment) |
10 |
+importClassesFrom(Matrix, dgCMatrix) |
|
10 | 11 |
|
11 | 12 |
importMethodsFrom(Biobase, featureNames, |
12 | 13 |
phenoData, |
... | ... |
@@ -6,6 +6,7 @@ import(BiocGenerics) |
6 | 6 |
importClassesFrom(Biobase, ExpressionSet) |
7 | 7 |
importClassesFrom(SummarizedExperiment, SummarizedExperiment) |
8 | 8 |
importClassesFrom(GSEABase, GeneSetCollection) |
9 |
+importClassesFrom(SingleCellExperiment, SingleCellExperiment) |
|
9 | 10 |
|
10 | 11 |
importMethodsFrom(Biobase, featureNames, |
11 | 12 |
phenoData, |
... | ... |
@@ -45,6 +46,7 @@ importFrom(BiocParallel, SerialParam, |
45 | 46 |
MulticoreParam, |
46 | 47 |
multicoreWorkers, |
47 | 48 |
bpnworkers) |
49 |
+importFrom(SingleCellExperiment, SingleCellExperiment) |
|
48 | 50 |
|
49 | 51 |
exportMethods(gsva, |
50 | 52 |
filterGeneSets, |
... | ... |
@@ -2,7 +2,6 @@ useDynLib(GSVA) |
2 | 2 |
|
3 | 3 |
import(methods) |
4 | 4 |
import(BiocGenerics) |
5 |
-import(shiny) |
|
6 | 5 |
|
7 | 6 |
importClassesFrom(Biobase, ExpressionSet) |
8 | 7 |
importClassesFrom(SummarizedExperiment, SummarizedExperiment) |
... | ... |
@@ -46,7 +45,6 @@ importFrom(BiocParallel, SerialParam, |
46 | 45 |
MulticoreParam, |
47 | 46 |
multicoreWorkers, |
48 | 47 |
bpnworkers) |
49 |
-importFrom(shinythemes, shinytheme) |
|
50 | 48 |
|
51 | 49 |
exportMethods(gsva, |
52 | 50 |
filterGeneSets, |
... | ... |
@@ -6,16 +6,20 @@ import(shiny) |
6 | 6 |
|
7 | 7 |
importClassesFrom(Biobase, ExpressionSet) |
8 | 8 |
importClassesFrom(SummarizedExperiment, SummarizedExperiment) |
9 |
-importClassesFrom(SingleCellExperiment, SingleCellExperiment) |
|
10 | 9 |
importClassesFrom(GSEABase, GeneSetCollection) |
11 | 10 |
|
12 | 11 |
importMethodsFrom(Biobase, featureNames, |
13 | 12 |
phenoData, |
14 | 13 |
experimentData, |
15 |
- esApply, |
|
16 | 14 |
exprs, |
17 | 15 |
annotation) |
18 | 16 |
|
17 |
+importMethodsFrom(S4Vectors, metadata, |
|
18 |
+ "metadata<-") |
|
19 |
+ |
|
20 |
+importMethodsFrom(SummarizedExperiment, assays, |
|
21 |
+ colData) |
|
22 |
+ |
|
19 | 23 |
importMethodsFrom(GSEABase, geneIds, |
20 | 24 |
incidence) |
21 | 25 |
|
... | ... |
@@ -27,13 +31,16 @@ importMethodsFrom(BiocParallel, bpiterate, |
27 | 31 |
importFrom(graphics, plot) |
28 | 32 |
importFrom(stats, ecdf, |
29 | 33 |
na.omit) |
30 |
-importFrom(utils, setTxtProgressBar, |
|
34 |
+importFrom(utils, installed.packages, |
|
35 |
+ setTxtProgressBar, |
|
31 | 36 |
txtProgressBar, |
32 | 37 |
read.csv, |
33 | 38 |
write.csv) |
39 |
+importFrom(S4Vectors, SimpleList) |
|
34 | 40 |
importFrom(GSEABase, AnnoOrEntrezIdentifier, |
35 | 41 |
mapIdentifiers, |
36 | 42 |
getGmt) |
43 |
+importFrom(SummarizedExperiment, SummarizedExperiment) |
|
37 | 44 |
importFrom(parallel, splitIndices) |
38 | 45 |
importFrom(BiocParallel, SerialParam, |
39 | 46 |
MulticoreParam, |
... | ... |
@@ -5,6 +5,8 @@ import(BiocGenerics) |
5 | 5 |
import(shiny) |
6 | 6 |
|
7 | 7 |
importClassesFrom(Biobase, ExpressionSet) |
8 |
+importClassesFrom(SummarizedExperiment, SummarizedExperiment) |
|
9 |
+importClassesFrom(SingleCellExperiment, SingleCellExperiment) |
|
8 | 10 |
importClassesFrom(GSEABase, GeneSetCollection) |
9 | 11 |
|
10 | 12 |
importMethodsFrom(Biobase, featureNames, |
... | ... |
@@ -37,7 +39,6 @@ importFrom(BiocParallel, SerialParam, |
37 | 39 |
MulticoreParam, |
38 | 40 |
multicoreWorkers, |
39 | 41 |
bpnworkers) |
40 |
-importFrom(geneplotter, multidensity) |
|
41 | 42 |
importFrom(shinythemes, shinytheme) |
42 | 43 |
|
43 | 44 |
exportMethods(gsva, |
... | ... |
@@ -9,11 +9,17 @@ importClassesFrom(GSEABase, GeneSetCollection) |
9 | 9 |
|
10 | 10 |
importMethodsFrom(Biobase, featureNames, |
11 | 11 |
phenoData, |
12 |
- experimentData) |
|
12 |
+ experimentData, |
|
13 |
+ esApply, |
|
14 |
+ exprs, |
|
15 |
+ annotation) |
|
13 | 16 |
|
14 | 17 |
importMethodsFrom(GSEABase, geneIds, |
15 | 18 |
incidence) |
16 | 19 |
|
20 |
+importMethodsFrom(BiocParallel, bpiterate, |
|
21 |
+ "bpworkers<-") |
|
22 |
+ |
|
17 | 23 |
importFrom(graphics, plot) |
18 | 24 |
importFrom(stats, ecdf, |
19 | 25 |
na.omit) |
... | ... |
@@ -21,11 +27,14 @@ importFrom(utils, setTxtProgressBar, |
21 | 27 |
txtProgressBar, |
22 | 28 |
read.csv, |
23 | 29 |
write.csv) |
24 |
-importFrom(Biobase, exprs, |
|
25 |
- annotation) |
|
26 | 30 |
importFrom(GSEABase, AnnoOrEntrezIdentifier, |
27 | 31 |
mapIdentifiers, |
28 | 32 |
getGmt) |
33 |
+importFrom(parallel, splitIndices) |
|
34 |
+importFrom(BiocParallel, SerialParam, |
|
35 |
+ MulticoreParam, |
|
36 |
+ multicoreWorkers, |
|
37 |
+ bpnworkers) |
|
29 | 38 |
importFrom(geneplotter, multidensity) |
30 | 39 |
importFrom(shinythemes, shinytheme) |
31 | 40 |
|
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/GSVA@130609 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -2,6 +2,7 @@ useDynLib(GSVA) |
2 | 2 |
|
3 | 3 |
import(methods) |
4 | 4 |
import(BiocGenerics) |
5 |
+import(shiny) |
|
5 | 6 |
|
6 | 7 |
importClassesFrom(Biobase, ExpressionSet) |
7 | 8 |
importClassesFrom(GSEABase, GeneSetCollection) |
... | ... |
@@ -17,12 +18,19 @@ importFrom(graphics, plot) |
17 | 18 |
importFrom(stats, ecdf, |
18 | 19 |
na.omit) |
19 | 20 |
importFrom(utils, setTxtProgressBar, |
20 |
- txtProgressBar) |
|
21 |
-importFrom(Biobase, exprs) |
|
22 |
-importFrom(Biobase, annotation) |
|
23 |
-importFrom(GSEABase, AnnoOrEntrezIdentifier) |
|
24 |
-importFrom(GSEABase, mapIdentifiers) |
|
21 |
+ txtProgressBar, |
|
22 |
+ read.csv, |
|
23 |
+ write.csv) |
|
24 |
+importFrom(Biobase, exprs, |
|
25 |
+ annotation) |
|
26 |
+importFrom(GSEABase, AnnoOrEntrezIdentifier, |
|
27 |
+ mapIdentifiers, |
|
28 |
+ getGmt) |
|
29 |
+importFrom(geneplotter, multidensity) |
|
30 |
+importFrom(shinythemes, shinytheme) |
|
25 | 31 |
|
26 |
-exportMethods("gsva", |
|
27 |
- "filterGeneSets", |
|
28 |
- "computeGeneSetsOverlap") |
|
32 |
+exportMethods(gsva, |
|
33 |
+ filterGeneSets, |
|
34 |
+ computeGeneSetsOverlap) |
|
35 |
+ |
|
36 |
+export(igsva) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/GSVA@128904 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -5,6 +5,19 @@ import(BiocGenerics) |
5 | 5 |
|
6 | 6 |
importClassesFrom(Biobase, ExpressionSet) |
7 | 7 |
importClassesFrom(GSEABase, GeneSetCollection) |
8 |
+ |
|
9 |
+importMethodsFrom(Biobase, featureNames, |
|
10 |
+ phenoData, |
|
11 |
+ experimentData) |
|
12 |
+ |
|
13 |
+importMethodsFrom(GSEABase, geneIds, |
|
14 |
+ incidence) |
|
15 |
+ |
|
16 |
+importFrom(graphics, plot) |
|
17 |
+importFrom(stats, ecdf, |
|
18 |
+ na.omit) |
|
19 |
+importFrom(utils, setTxtProgressBar, |
|
20 |
+ txtProgressBar) |
|
8 | 21 |
importFrom(Biobase, exprs) |
9 | 22 |
importFrom(Biobase, annotation) |
10 | 23 |
importFrom(GSEABase, AnnoOrEntrezIdentifier) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/GSVA@85470 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/GSVA@64337 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,10 +1,12 @@ |
1 | 1 |
useDynLib(GSVA) |
2 | 2 |
|
3 | 3 |
import(methods) |
4 |
-importClassesFrom(Biobase) |
|
5 |
-importClassesFrom(GSEABase) |
|
4 |
+importClassesFrom(Biobase, ExpressionSet) |
|
5 |
+importClassesFrom(GSEABase, GeneSetCollection) |
|
6 | 6 |
importFrom(Biobase, exprs) |
7 | 7 |
importFrom(Biobase, annotation) |
8 |
+importFrom(GSEABase, AnnoOrEntrezIdentifier) |
|
9 |
+importFrom(GSEABase, mapIdentifiers) |
|
8 | 10 |
|
9 | 11 |
exportMethods("gsva", |
10 | 12 |
"filterGeneSets", |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/GSVA@54777 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,11 @@ |
1 |
+useDynLib(GSVA) |
|
2 |
+ |
|
3 |
+import(methods) |
|
4 |
+importClassesFrom(Biobase) |
|
5 |
+importClassesFrom(GSEABase) |
|
6 |
+importFrom(Biobase, exprs) |
|
7 |
+importFrom(Biobase, annotation) |
|
8 |
+ |
|
9 |
+exportMethods("gsva", |
|
10 |
+ "filterGeneSets", |
|
11 |
+ "computeGeneSetsOverlap") |