query.run | R Documentation |
Run a query instance using any restrictions that have been added to it.
query.run(query, result.type = "results", verbose = FALSE)
query |
A query instance object. |
result.type |
A string specifying what type of results to return. Possible values: "count", "dataframe", "variantsApproximateCount" and "variantsDataFrame". |
verbose |
Flag to display additional runtime information. |
Description of result.type values
"count": Single count indicating the number of matching records
"dataframe": DataFrame containing the matching records
"variantsApproximateCount": Single estimated count of the number of matching variants
"variantsDataFrame": DataFrame of the matching variants
#' @param verbose Flag to display additional runtime information.
# myconn <- picsure::connect(url="http://your.server/PIC-SURE/", token="your-security-token") # myres <- hpds::get.resource(connection=myconn, resourceUUID="YOUR-UUID-0000") # myquery <- hpds::new.query(resource=myres) ## ...modify the query by adding search criteria... ## # results <- hpds::query.run(query=myquery)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.