Skip to content

Commit

Permalink
add newline
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewGhazi committed Sep 16, 2024
1 parent a2601a5 commit 067fa2f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion episodes/intro-sce.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ Depending on the object, slots can contain different types of data (e.g., numeri

:::: challenge

Try to get the data for a different sample from `WTChimeraData` (other than the fifth one)
Try to get the data for a different sample from `WTChimeraData` (other than the fifth one).

::: solution

Here we assign the sixth sample to `sce6`:
Expand All @@ -140,6 +141,7 @@ sce6 <- WTChimeraData(samples = 6)
sce6
```

:::

::::
Expand Down Expand Up @@ -252,6 +254,7 @@ my_sce
Combining two objects: The `MouseGastrulationData` package contains several datasets. Download sample 6 of the chimera experiment by running `sce6 <- WTChimeraData(samples=6)`. Use the `cbind` function to combine the new data with the `sce` object created before.

::: solution

```{r message = FALSE, warning=FALSE}
sce <- WTChimeraData(samples = 5)
Expand All @@ -261,6 +264,7 @@ combined_sce = cbind(sce, sce6)
combined_sce
```

:::


Expand Down

0 comments on commit 067fa2f

Please sign in to comment.