Description Usage Arguments Value Author(s) Examples
View source: R/non_existing_intervals.R
Given a list of filters, this function builds a logical
condition to query database using intervals.
The output is used in build_condition()
.
1 | non_existing_intervals(filters, interval, operator, partialmatch)
|
filters |
List of filters to be used. The names should correspond to the attribute and the values correspond to the condition for selection. |
interval |
the filters whose values will be considered as interval |
operator |
A string indicating if all the filters (AND) or some of them (OR) should be met. |
partialmatch |
name of the condition(s) with a string pattern for full or partial match in the query. |
A character(1)
with the sql logical condition to query the dataset.
Carmina Barberena Jonás, Jesús Emiliano Sotelo Fonseca, José Alquicira Hernández
1 2 3 4 5 6 7 | ## Build the SQL query for finidng non-existing intervals for the gene ara
non_existing_intervals(
filters = list(name = "ara", strand = "for"),
interval = NULL,
operator = "AND",
partialmatch = c("name", "strand")
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.