We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 935ccbc + 2fa0b97 commit e214e07Copy full SHA for e214e07
inst/templates/singlecell/pre-process-w-cellranger.md
@@ -211,7 +211,7 @@ for (i in 3:length(seurat_ID)) {
211
212
seurat_merge <- merge(x = get(seurat_ID[1]),
213
y = u,
214
- add.cell.ids = all_samples,
+ add.cell.ids = samples,
215
project = "my_scRNA_project")
216
217
```
@@ -262,6 +262,8 @@ seurat_merge$Log10GenesPerUMI <- log10(seurat_merge$nFeature_RNA) / log10(seurat
262
263
# Import experimental metadata
264
metaexp <- read.csv("/path/to/experimental/metadata/meta.csv")
265
+metadata <- seurat_merge@meta.data
266
+metadata$barcode <- rownames(metadata)
267
268
# Check matching of IDs
269
all(metaexp$sample %in% metadata$orig.ident)
0 commit comments