View source: R/pipeline_pathways.R
pathway_to_cell_signature | R Documentation |
This function queries for pathways based on given values, fetches genes associated with those pathways, and filters for unique cell identifiers based on specified criteria. If pathway IDs are already known, they can be directly provided to skip the query step.
pathway_to_cell_signature(
queryValues = NULL,
pathway_ids = NULL,
options = list(timeout = 10000)
)
queryValues |
A vector of query values to search for pathways. Optional if
|
pathway_ids |
A vector of pathway IDs to be used directly. Optional if |
options |
A list of options for the API call, including endpoint and timeout settings. |
A data frame of unique effect sizes, filtered by a foldChange threshold and deduplicated by cell_id.
## Not run:
pathway_to_cell_signature(
queryValues = c("Adaptive Immune System"),
options = list(timeout = 10000)
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.