From 067fa2ffe2ccb9cac7a6b1f2605c9e11c7dea306 Mon Sep 17 00:00:00 2001 From: Andrew Ghazi <6763470+andrewGhazi@users.noreply.github.com> Date: Mon, 16 Sep 2024 14:55:25 -0400 Subject: [PATCH] add newline --- episodes/intro-sce.Rmd | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/episodes/intro-sce.Rmd b/episodes/intro-sce.Rmd index ae0da80..8ad25c8 100644 --- a/episodes/intro-sce.Rmd +++ b/episodes/intro-sce.Rmd @@ -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`: @@ -140,6 +141,7 @@ sce6 <- WTChimeraData(samples = 6) sce6 ``` + ::: :::: @@ -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) @@ -261,6 +264,7 @@ combined_sce = cbind(sce, sce6) combined_sce ``` + :::