different genes #372
-
|
Hi, Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Hi @wbf520qcp, thanks for trying out our tools! Great question! If you want to get the gene modules, you can use the Hope that helps. I'm going to convert this to a "Discussion". |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for replying. This is helpful. I find out from the tutorial that featureModuleTable(sce, useAssay = useAssay, altExpName = altExpName, outputFile = "modules.txt") can output the genes in each module. I wonder if the those genes in each module ranked by fold change, p-value or just random? Because I want to select top differentially genes to plot Heatmap. |
Beta Was this translation helpful? Give feedback.
-
|
Good question. They are ranked by the estimated level (i.e. probability) of that gene in that particular module. This will generally correspond to the overall expression level, so genes ranked higher will have higher overall expression. You can get these ranks directly from the results of the In this matrix, the columns are modules and it shows the estimated (and normalized) level of each gene in each module. Each gene will only have a non-zero value in the module it was assigned to. You can also use the |
Beta Was this translation helpful? Give feedback.
Good question. They are ranked by the estimated level (i.e. probability) of that gene in that particular module. This will generally correspond to the overall expression level, so genes ranked higher will have higher overall expression. You can get these ranks directly from the results of the
factorizeMatrixfunction:In this matrix, the columns are modules and it shows the estimated (and normalized) level of each gene in each module. Each gene will only have a non-zero value in the module it was assigned to.
You can also use the
moduleHeatmapfunction to quickly plot a heatmap of the modules. Cells will be ordered from those with the lowest probability of that modu…