View source: R/pipeline_cells.R
cells_to_gene_signature | R Documentation |
Queries for cells based on given values, fetches genes associated with those cells, and filters for unique gene identifiers based on specified criteria such as fold change. This function streamlines the process of identifying significant gene signatures from cell query results. The function further filters results based on a threshold determined by the mean and standard deviation of foldChange values.
cells_to_gene_signature(
queryValues,
data,
dataMeta,
uniqueRowID = "",
options = list(timeout = 10000)
)
queryValues |
A vector of query values to search for cells. |
data |
A data frame containing gene expression data to be mapped. |
dataMeta |
A data frame containing metadata for each entry in |
uniqueRowID |
The name of the column in |
options |
A list of options for the API call, including endpoint and timeout settings. |
A list containing data
, the final data frame with gene signatures, and
mapping
, a data frame of gene to cell mappings.
## Not run:
cells_to_gene_signature(
queryValues = c("CL0001054", "CL0002397"),
data = yourData,
dataMeta = yourDataMeta,
uniqueRowID = "yourUniqueIdentifierColumnName"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.