getRnaQuantification {GA4GHclient} | R Documentation |
Get an RNA quantification by its ID.
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
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)