getExpressionLevel {GA4GHclient}R Documentation

getExpressionLevel function

Description

Get an expression level by its ID.

Usage

getExpressionLevel(host, expressionLevelId)

Arguments

host

URL of GA4GH API data server.

expressionLevelId

ID of the expression level.

Details

This function requests GET host/expressionlevels/expressionLevelId.

Value

DataFrame object.

References

Official documentation.

See Also

DataFrame, searchExpressionLevels

Examples

host <- "http://1kgenomes.ga4gh.org/"
## Not run: 
datasetId <- searchDatasets(host, nrows = 1)$id
rnaQuantificationSetId <- searchRnaQuantificationSets(host, datasetId, nrow = 1)$id
rnaQuantificationId <- searchRnaQuantifications(host, rnaQuantificationSetId, nrows = 1)$id
expressionLevelId <- searchExpressionLevels(host, rnaQuantificationId, nrows = 1)$id
getExpressionLevel(host, expressionLevelId)

## End(Not run)

[Package GA4GHclient version 1.12.0 Index]