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