Description Usage Arguments Details Value See Also Examples
View source: R/searchReadGroupSets.R
Search for read group sets (sequence alignement, e.g BAM files).
1 2 | searchReadGroupSets(host, datasetId, name = NA_character_,
biosampleId = NA_character_, nrows = Inf, responseSize = NA_integer_)
|
host |
URL of GA4GH API data server. |
datasetId |
The dataset to search. |
name |
Only return read group sets with this name (case-sensitive, exact match). |
biosampleId |
Specifying the id of a BioSample record will return only readgroups with the given biosampleId. |
nrows |
Number of rows of the data frame returned by this function. If not defined, the function will return all entries. If the number of available entries is less than the value of this this parameter, the function will silently return only the available entries. |
responseSize |
Specifies the number of entries to be returned by the
server until reach the number of rows defined in |
This function requests POST host/readgroupsets/search
DataFrame
object.
1 2 3 4 5 6 | host <- "http://1kgenomes.ga4gh.org/"
## Not run:
datasetId <- searchDatasets(host, nrows = 1)$id
searchReadGroupSets(host, datasetId, nrows = 1)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.