Skip to content

Commit

Permalink
implemented reviewer suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
manveerchauhan committed Nov 28, 2024
1 parent e180017 commit caabf47
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/tutorials/seurat-de/seurat-de.md
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ after.harmony | after.seuratCCA
!!! question
What do you think of the integration results now?

**Hint:** Also look at the pc1 and pc2 plots for each integration method
**Hint:** Also look at the PC1 and PC2 plots for each integration method.

### Step 6: Perform standard clustering steps after integration

Expand Down Expand Up @@ -924,7 +924,7 @@ head(treatment.response.CD16) # These are the genes that are upregulated in the

```

### Step 5: Lets plot conserved features vs DEGs between conditions
### Step 4: Lets plot conserved features vs DEGs between conditions

```r
FeaturePlot(ifnb.filtered, reduction = 'umap.cca',
Expand All @@ -934,12 +934,13 @@ FeaturePlot(ifnb.filtered, reduction = 'umap.cca',

![](./media/unnamed-chunk-16-1.png)

### Step 6: Create a Heatmap to visualise DEGs between our two conditions + cell types
### Step 5: Create a Heatmap to visualise DEGs between our two conditions + cell types

```r
# Find upregulated genes in each group (cell type and condition)
ifnb.treatVsCtrl.markers <- FindAllMarkers(ifnb.filtered,
only.pos = TRUE)
saveRDS(ifnb.treatVsCtrl.markers, "ifnb_stimVsCtrl_markers.rds")
```

```output
Expand Down

0 comments on commit caabf47

Please sign in to comment.