Skip to content

Commit

Permalink
Merge branch 'master' into carla_time
Browse files Browse the repository at this point in the history
  • Loading branch information
carlacohen committed Feb 1, 2024
2 parents 1510a14 + 0f67660 commit 8febc98
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions conda/environments/scflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ dependencies:
- bioconductor-scdblfinder
- bioconductor-singlecellexperiment
- bioconductor-biomart
- bioconductor-scuttle
- bioconductor-glmgampoi
- r-harmony
- r-seuratdisk
- r-clustree
6 changes: 4 additions & 2 deletions scpipelines/pipeline_quantcells.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ def run_kallisto_bus(infiles, outfile):

job_memory = PARAMS['bustools_memory']

P.run(statement, job_options='-t 167:00:00')

P.run(statement, job_options='-t 24:00:00')



@jobs_limit(1)
Expand Down Expand Up @@ -268,7 +270,7 @@ def bustools_count(infile, outfile):


statement = """bustools count -o %(out_dir)s -g %(tr2g)s -e %(mat)s -t %(trans)s --genecounts 2> %(out_dir)s.count.log %(infile)s"""
P.run(statement)
P.run(statement, job_options='-t 24:00:00')


@active_if(PARAMS['mixed_species'])
Expand Down
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 8febc98

Please sign in to comment.