Description Usage Arguments Details Value References See Also Examples
View source: R/getRnaQuantification.R
Get an RNA quantification by its ID.
1 | getRnaQuantification(host, rnaQuantificationId)
|
host |
URL of GA4GH API data server. |
rnaQuantificationId |
ID of the RNA quantification requested. |
This function requests GET host/rnaquantifications/rnaQuantificationId
.
DataFrame
object.
DataFrame
, searchRnaQuantifications
1 2 3 4 5 6 7 8 | host <- "http://1kgenomes.ga4gh.org/"
## Not run:
datasetId <- searchDatasets(host, nrows = 1)$id
rnaQuantificationSetId <- searchRnaQuantificationSets(host, datasetId, nrows = 1)$id
rnaQuantificationId <- searchRnaQuantifications(host, rnaQuantificationSetId, nrows = 1)$id
getRnaQuantification(host, rnaQuantificationId)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.