getCallSet {GA4GHclient} | R Documentation |
Get a call set by its ID.
getCallSet(host, callSetId)
host |
URL of GA4GH API data server. |
callSetId |
The ID of the CallSet to be retrieved. |
This request maps to GET host/callsets/callSetId
.
DataFrame
object.
host <- "http://1kgenomes.ga4gh.org/" ## Not run: datasetId <- searchDatasets(host, nrows = 1)$id variantSetId <- searchVariantSets(host, datasetId, nrows = 1)$id callSetId <- searchCallSets(host, variantSetId, nrows = 1)$id getCallSet(host, callSetId) ## End(Not run)