Spaces:
Running
Running
Update PFCdevApp.qmd
Browse files- PFCdevApp.qmd +20 -5
PFCdevApp.qmd
CHANGED
|
@@ -55,7 +55,11 @@ Spatial data
|
|
| 55 |
</p>
|
| 56 |
|
| 57 |
<p style="font-size: 20px; text-align: justify;">
|
| 58 |
-
We collected the whole brain stereo-seq datasets of P1 and Adult mice from [(Han et al., Neuron, 2025)](https://doi.org/10.1016/j.neuron.2025.02.015
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
</p>
|
| 60 |
|
| 61 |
- Spatial Clustering: Select different cell subtypes to view their spatial distribution
|
|
@@ -224,10 +228,21 @@ output$gene_plot <- renderPlot({
|
|
| 224 |
|
| 225 |
|
| 226 |
output$vln_plot <- renderPlot({
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 231 |
})
|
| 232 |
```
|
| 233 |
|
|
|
|
| 55 |
</p>
|
| 56 |
|
| 57 |
<p style="font-size: 20px; text-align: justify;">
|
| 58 |
+
We collected the whole brain stereo-seq datasets of P1 and Adult mice from [(Han et al., Neuron, 2025)](https://doi.org/10.1016/j.neuron.2025.02.015
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
, extracted and analyzed the PFC brain region. Users can browse the following content through the spatial page:
|
| 63 |
</p>
|
| 64 |
|
| 65 |
- Spatial Clustering: Select different cell subtypes to view their spatial distribution
|
|
|
|
| 228 |
|
| 229 |
|
| 230 |
output$vln_plot <- renderPlot({
|
| 231 |
+
FeaturePlot(
|
| 232 |
+
seu(),
|
| 233 |
+
features = input$gene,
|
| 234 |
+
reduction = 'umap',
|
| 235 |
+
split.by = "orig.ident",
|
| 236 |
+
ncol=4,
|
| 237 |
+
order = T,
|
| 238 |
+
pt.size = 0.5
|
| 239 |
+
) &
|
| 240 |
+
theme_bw(base_size = 15) &
|
| 241 |
+
theme(panel.grid = element_blank(), plot.title = element_text(hjust = 0.5),
|
| 242 |
+
strip.text = element_text(size = 20, face = "bold"),
|
| 243 |
+
legend.position = c(0.1,0.25)) &
|
| 244 |
+
coord_fixed() &
|
| 245 |
+
scale_color_gradientn(colours = c("lightblue3", "lightblue", "white", "red", "red4"), limits=c(0,2), breaks=c(0,2), na.value = "red4")
|
| 246 |
})
|
| 247 |
```
|
| 248 |
|