getReferenceSet {GA4GHclient} | R Documentation |
Get a reference set by its ID.
getReferenceSet(host, referenceSetId)
host |
URL of GA4GH API data server. |
referenceSetId |
The ID of the ReferenceSet to be retrieved. |
This function requests GET host/referencesets/referenceSetId
.
DataFrame
object.
DataFrame
, searchReferenceSets
host <- "http://1kgenomes.ga4gh.org/" ## Not run: referenceSetId <- searchReferenceSets(host, nrows = 1)$id getReferenceSet(host, referenceSetId) ## End(Not run)