getExpressionLevel {GA4GHclient} | R Documentation |
Get an expression level by its ID.
getExpressionLevel(host, expressionLevelId)
host |
URL of GA4GH API data server. |
expressionLevelId |
ID of the expression level. |
This function requests GET host/expressionlevels/expressionLevelId
.
DataFrame
object.
DataFrame
, searchExpressionLevels
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)