getRnaQuantification: getRnaQuantification function

Description Usage Arguments Details Value References See Also Examples

View source: R/getRnaQuantification.R

Description

Get an RNA quantification by its ID.

Usage

1
getRnaQuantification(host, rnaQuantificationId)

Arguments

host

URL of GA4GH API data server.

rnaQuantificationId

ID of the RNA quantification requested.

Details

This function requests GET host/rnaquantifications/rnaQuantificationId.

Value

DataFrame object.

References

Official documentation.

See Also

DataFrame, searchRnaQuantifications

Examples

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)

labbcb/GA4GHclient documentation built on May 20, 2019, 7:32 p.m.