check_gene
Verify the presence of genes in adata.var_names to ensure accurate gene expression visualizations and color-coding in single-cell RNA sequencing analysis.
Instructions
Check if genes exist in adata.var_names. This tool should be called before gene expression visualizations or color by genes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
var_names | No | gene names. |
Input Schema (JSON Schema)
{
"description": "ListObsModel",
"properties": {
"var_names": {
"default": null,
"description": "gene names.",
"items": {
"type": "string"
},
"title": "Var Names",
"type": "array"
}
},
"title": "VarNamesModel",
"type": "object"
}