Description Usage Arguments Value Examples
The getDEE2_bundle function fetches gene expression data from DEE2. This function will only work if all SRA runs have been successfully processed for an SRA project. This function returns a SummarizedExperiment object.
1 2 3 4 5 6 7 8 9 10 | getDEE2_bundle(
species,
query,
col,
counts = "GeneCounts",
bundles = NULL,
legacy = FALSE,
baseURL = "http://dee2.io/huge/",
...
)
|
species |
A character string matching the species of interest. |
query |
A character string, such as the SRA project accession number or the GEO series accession number |
col |
the column name to be queried, usually "SRP_accession" for SRA project accession or "GSE_accession" for GEO series accession. |
counts |
A string, either 'GeneCounts', 'TxCounts' or 'Tx2Gene'. When 'GeneCounts' is specified, STAR gene level counts are returned. When 'TxCounts' is specified, kallisto transcript counts are returned. When 'Tx2Gene' is specified, kallisto counts aggregated (by sum) on gene are returned. If left blank, "GeneCounts" will be fetched. |
bundles |
optional table of previously downloaded bundles. providing this will speed up performance if multiple queries are made in a session. If left blank, the bundle list will be fetched again. |
legacy |
Whether data should be returned in the legacy (list) format. Default is FALSE. Leave this FALSE if you want to receive data as Summarized experiment. |
baseURL |
The base URL of the service. Leave this as the default URL unless you want to download from a 3rd party mirror. |
... |
Additional parameters to be passed to download.file. |
a SummarizedExperiment object.
1 | x <- getDEE2_bundle("celegans", "SRP133403",col="SRP_accession")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.