getRnaQuantificationSet {GA4GHclient} | R Documentation |
Get an RNA quantification set by its ID.
getRnaQuantificationSet(host, rnaQuantificationSetId)
host |
URL of GA4GH API data server. |
rnaQuantificationSetId |
ID of the RNA quantification set requested. |
This function requests GET host/rnaquantificationsets/rnaQuantificationSetId
.
DataFrame
object.
DataFrame
, searchRnaQuantificationSets
host <- "http://1kgenomes.ga4gh.org/" ## Not run: datasetId <- searchDatasets(host, nrows = 1)$id rnaQuantificationSetId <- searchRnaQuantificationSets(host, datasetId, nrows = 1)$id getRnaQuantificationSet(host, rnaQuantificationSetId) ## End(Not run)