Skip to content

Commit 501cc1e

Browse files
committed
Gave a non-empty default project name since Seurat doesn't accept empty project names anymore.
1 parent 01073c8 commit 501cc1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/Import10X.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#' Export10X(SeuratObject, "MyDir", c("nFeature_RNA", "mito.content"), c("pca","umap"), gzip=FALSE)
2121
#' NewSeuratObject <- Import10X("MyDir","MyProject","mRNA3p")
2222

23-
Import10X <- function(dir, project_name="", assay="RNA", gene.column=1, cell.column=1, unique.features=T, strip.suffix=T){
23+
Import10X <- function(dir, project_name="Project", assay="RNA", gene.column=1, cell.column=1, unique.features=T, strip.suffix=T){
2424

2525
# Get rid of terminal slash to be a bit more robust to folder input style.
2626
if(substr(dir, nchar(dir), nchar(dir))=="/"){

0 commit comments

Comments
 (0)