From 9e489bcb4347575847028219fc01d885dc94feaf Mon Sep 17 00:00:00 2001 From: Wendi Bacon Date: Thu, 14 Dec 2023 17:33:50 +0000 Subject: [PATCH] minor changes --- .../single-cell/tutorials/scrna-data-ingest/tutorial.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/topics/single-cell/tutorials/scrna-data-ingest/tutorial.md b/topics/single-cell/tutorials/scrna-data-ingest/tutorial.md index 463094002a6f21..0e1dd7de4223e6 100644 --- a/topics/single-cell/tutorials/scrna-data-ingest/tutorial.md +++ b/topics/single-cell/tutorials/scrna-data-ingest/tutorial.md @@ -332,9 +332,9 @@ We will work on the same AnnData object so if you create a new history for this First, we will extract observations and the full matrix from our AnnData. -> Skip a step! +> Skip some steps! > -> If you stay in the your previous history, you can just reuse the `Barcodes` and `Transcripts` datasets from earlier on! +> If you are following this entire tutorial (rather than using a specific section necessary!), you can stay in the your previous history and just reuse outputs to build different single cell objects! {: .tip} > Inspect AnnData @@ -359,13 +359,13 @@ First, we will extract observations and the full matrix from our AnnData. > > > > > -> > If you just click on the `Matrix` dataset, you will see a preview, showing barcodes in the first column, while genes in the first row. +> > If you just click on the `Matrix` dataset, you will see a preview, showing barcodes in the first column, while genes are in the first row. > > > {: .solution} > {: .question} -To proceed with the conversion, we must have the matrix where the genes are listed in the first column while all the barcodes should be in the first row. Therefore, we need to transpose the current matrix. +However, the next tool we need expects a matrix wherein the genes are listed in the first column and the barcodes are listed in the first row. Therefore, we need to transpose the current matrix. > Transpose the matrix >