Description Usage Arguments Examples
Search for Feature Sets
1 2 | search_feature_sets(client, dataset_id = NULL, page_size = NULL,
page_token = NULL)
|
client |
A ga4gh_client object |
dataset_id |
The ID of the Dataset to search within |
page_size |
Specifies the maximum number of results to return in a single page. If unspecified, the client default will be used. |
page_token |
The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ref_client <- ga4gh_client("http://1kgenomes.ga4gh.org", api_location = "")
## Not run:
library(magrittr)
## Find a dataset to search in
datasets <- ref_client %>% search_datasets() %>% content()
d_id <- datasets$datasets[[1]]$id
## Search for feature sets in the dataset
feature_sets <- ref_client %>% search_feature_sets(d_id) %>% content()
feature_sets
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.