getRnaQuantificationSet {GA4GHclient}R Documentation

getRnaQuantificationSet function

Description

Get an RNA quantification set by its ID.

Usage

getRnaQuantificationSet(host, rnaQuantificationSetId)

Arguments

host

URL of GA4GH API data server.

rnaQuantificationSetId

ID of the RNA quantification set requested.

Details

This function requests GET host/rnaquantificationsets/rnaQuantificationSetId.

Value

DataFrame object.

References

Official documentation.

See Also

DataFrame, searchRnaQuantificationSets

Examples

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)

[Package GA4GHclient version 1.17.0 Index]