Skip to content

Commit

Permalink
modificacion del los ops de los chunks
Browse files Browse the repository at this point in the history
  • Loading branch information
Erickcufe committed Aug 7, 2023
1 parent 3c648e1 commit 46d5bdb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 02_sesion5.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ Otros sitios interesantes para obtener conjuntos de datos de referencia:

## Preparación del dataset

El dataset proviene tiene el ID en GEO [GSE84465](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE84465)
El dataset proviene tiene el ID en GEO [GSE159677](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE159677)

```{r, eval=FALSE}
```{r, eval=FALSE, echo=TRUE}
library(cowplot)
library(ggplot2)
library(scater)
Expand Down Expand Up @@ -145,7 +145,7 @@ sce$Age <- md$Age[m]

Hacemos ahora un pequeño proceso de limpieza y normalización

```{r, eval=FALSE}
```{r, eval=FALSE, echo=TRUE}
#Remover genes no detectados
sce <- sce[Matrix::rowSums(counts(sce) > 0) > 0, ]
dim(sce)
Expand Down Expand Up @@ -182,7 +182,7 @@ sce <- addPerFeatureQCMetrics(sce)

Filtración de células

```{r, eval=FALSE}
```{r, eval=FALSE, echo=TRUE}
#Obtener outliers
cols <- c("total", "detected", "subsets_Mito_percent")
log <- c(TRUE, TRUE, FALSE)
Expand Down Expand Up @@ -242,7 +242,7 @@ dim(sce)

Agrupamiento, toma en cuenta que esta parte podría demorar bastante.

```{r, eval=FALSE}
```{r, eval=FALSE, echo=TRUE}
#Load packages
library(cowplot)
library(Seurat)
Expand Down

0 comments on commit 46d5bdb

Please sign in to comment.