getReferenceSet {GA4GHclient}R Documentation

getReferenceSet function

Description

Get a reference set by its ID.

Usage

getReferenceSet(host, referenceSetId)

Arguments

host

URL of GA4GH API data server.

referenceSetId

The ID of the ReferenceSet to be retrieved.

Details

This function requests GET host/referencesets/referenceSetId.

Value

DataFrame object.

References

Official documentation.

See Also

DataFrame, searchReferenceSets

Examples

host <- "http://1kgenomes.ga4gh.org/"
## Not run: 
referenceSetId <- searchReferenceSets(host, nrows = 1)$id
getReferenceSet(host, referenceSetId)

## End(Not run)

[Package GA4GHclient version 1.8.0 Index]