Description Usage Arguments Value References See Also Examples
Get dataset for a given dataset identifier and platform identifier in a specific format.
1 | getDataset(dataset, platform, ...);
|
dataset |
Valid dataset identifier: the GEO or InSilico DB accession code. |
platform |
The platform of the chip on which a measurement was done. A platform is identified by its GEO accession code. |
... |
Optional arguments can be passed to the function for more specific requests:
|
A Bioconductors ExpressionSet.
[1] MN. McCall, BM. Bolstad, and RA. Irizarry, Frozen Robust Multi-Array Analysis (fRMA), Biostatistics, vol. 11, no. 2, pp. 242-253 , 2008.
[2] SR. Piccolo, Y. Sun, JD. Campbell, ME. Lenburg, AH. Bild, and WE. Johnson, A single-sample microarray normalization method to facilitate personalized-medicine workflows, Genomics, vol. 100, no. 6, pp. 337-344, 2012.
1 2 3 4 5 6 7 8 9 10 11 12 13 | InSilicoLogin("rpackage_tester@insilicodb.com", "5c4d0b231e5cba4a0bc54783b385cc9a");
dataset.id <- "GSE4635";
platform.id <- getPlatforms(dataset.id);
eset <- getDataset(dataset.id, platform.id[[1]],
norm = "ORIGINAL", features = "PROBE");
print(dim(eset));
## Features Samples
## 22215 8
eset <- getDataset( dataset.id, platform.id[[1]],
norm = "ORIGINAL", features = "GENE");
print(dim(eset));
## Features Samples
## 12698 8
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.