getFeature {GA4GHclient} | R Documentation |
Get a feature set by its ID (a line of genomic feature file).
getFeature(host, featureId)
host |
URL of GA4GH API data server. |
featureId |
The ID of the feature to be retrieved. |
This function requests GET host/features/featureId
.
DataFrame
object.
host <- "http://1kgenomes.ga4gh.org/" ## Not run: datasetId <- searchDatasets(host, nrows = 1)$id featureSetId <- searchFeatureSets(host, datasetId, nrows = 1)$id featureId <- searchFeatures(host, featureSetId, nrows = 1)$id getFeature(host, featureId) ## End(Not run)