Skip to contents

List Variant Sets (Datasets)

Usage

brapi_variant_sets(con, studyDbId = NULL, ...)

Arguments

con

A brapi_connection() object.

studyDbId

Character or NULL. Filter by study.

...

Additional query parameters.

Value

A tibble with one row per variant set.

Examples

# \donttest{
con <- brapi_connection("https://test-server.brapi.org")
brapi_variant_sets(con)
#> # A tibble: 1 × 11
#>   additionalInfo   externalReferences analysis   availableFormats callSetCount
#>   <list>           <list>             <list>     <list>                  <int>
#> 1 <named list [1]> <list [1]>         <list [1]> <list [3]>                 13
#> # ℹ 6 more variables: referenceSetDbId <chr>, studyDbId <chr>,
#> #   variantCount <int>, variantSetDbId <chr>, variantSetName <chr>,
#> #   metadataFields <list>
# }