Description Usage Arguments Details Value References See Also Examples
View source: R/getExpressionLevel.R
Get an expression level by its ID.
1 | 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
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.