getCallSet: getCallSet function

Description Usage Arguments Details Value References See Also Examples

View source: R/getCallSet.R

Description

Get a call set by its ID.

Usage

1
getCallSet(host, callSetId)

Arguments

host

URL of GA4GH API data server.

callSetId

The ID of the CallSet to be retrieved.

Details

This request maps to GET host/callsets/callSetId.

Value

DataFrame object.

References

Official documentation.

See Also

DataFrame, searchCallSets

Examples

1
2
3
4
5
6
7
8
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)

labbcb/GA4GHclient documentation built on May 20, 2019, 7:32 p.m.