getExpressionLevel: getExpressionLevel function

Description Usage Arguments Details Value References See Also Examples

View source: R/getExpressionLevel.R

Description

Get an expression level by its ID.

Usage

1
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

1
2
3
4
5
6
7
8
9
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)

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