Description Usage Arguments Details Value References See Also Examples
View source: R/searchReferences.R
Search for references (genome sequences, e.g. chromosomes).
1 2 | searchReferences(host, referenceSetId, md5checksum = NA_character_,
accession = NA_character_, nrows = Inf, responseSize = NA_integer_)
|
host |
URL of GA4GH API data server. |
referenceSetId |
The ReferenceSet to search. |
md5checksum |
If specified, return the references for which the md5checksum matches this string (case-sensitive, exact match). See ReferenceSet::md5checksum for details. |
accession |
If specified, return the references for which the accession matches this string (case-sensitive, exact match). |
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/references/search
.
DataFrame
object.
1 2 3 4 5 6 | host <- "http://1kgenomes.ga4gh.org/"
## Not run:
referenceSetId <- searchReferenceSets(host, nrows = 1)$id
searchReferences(host, referenceSetId)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.