Skip to content

Commit

Permalink
Merge pull request #92 from cribbslab/AC-droplets
Browse files Browse the repository at this point in the history
updated pipeline to handle the lower limit for empty drops and used t…
  • Loading branch information
Acribbs committed Jul 5, 2023
2 parents 7ea87ae + 8fabdc3 commit 0f67660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scpipelines/seurat/pipeline_qc-1/Rmarkdown/QC.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ for(i in 1:length(so)){
# run emptydrops
set.seed(1)
out <- DropletUtils::emptyDrops(assay(sce[[i]], "counts"), lower = 100)
out <- DropletUtils::emptyDrops(assay(sce[[i]], "counts"), lower = ini$UMI_filter)
# add emptydrops info to colData
sce[[i]]@colData$empty_drops_FDR <- out$FDR
Expand Down
2 changes: 1 addition & 1 deletion scpipelines/seurat/pipeline_qc-1/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mirror: useast
so_filter: 100

#Specificy the number of counts if more stringent filter is required
UMI_filter: 100
UMI_filter: 300

#Specify the format of output files
output: seurat_object

0 comments on commit 0f67660

Please sign in to comment.