Hello,
I would like to do differential expression between cells expressing a specific gene and the ones not expressing it on scanpy. I cannot figure out how to do it. I know I can filter for the gene like this but that just removes all the cells not expressing it.
expressing_cells = adata[adata[: , 'gene'].X > 0, :]
Does anyone know how to do this?
Thank you