bedCall {BED} | R Documentation |
Call a function on the BED graph
Description
Call a function on the BED graph
Usage
bedCall(f, ..., bedCheck = FALSE)
Arguments
f |
the function to call |
... |
params for f |
bedCheck |
check if a connection to BED exists (default: FALSE). |
Value
The output of the called function.
See Also
Examples
## Not run:
result <- bedCall(
cypher,
query=prepCql(
'MATCH (n:BEID)',
'WHERE n.value IN $values',
'RETURN n.value AS value, n.labels, n.database'
),
parameters=list(values=c("10", "100"))
)
## End(Not run)
[Package BED version 1.5.2 Index]