Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
csangara committed Dec 12, 2023
1 parent c8ac850 commit b6c3a9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ profiles {

// Script parameters
params {
rootdir = "$VSC_DATA/spotless-benchmark"
rootdir = "$VSC_DATA_VO_USER/spotless-benchmark"
outdir = [props: "${params.rootdir}/deconv_proportions",
metrics: "${params.rootdir}/results",
synthspot: "${params.rootdir}/synthetic_data/"]
Expand Down
4 changes: 2 additions & 2 deletions standards/standard.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ params {
file_type = 'rds'

// If there is a hyphen, we only run one scenario (and for sc_input only get number before hyphen)
// If there is no hyphen, run all eight scenarios at once
// If there is no hyphen, run all scenarios at once
sc_input = (params.standard =~ /-/ ? "standards/reference/${params.standard.split('-')[0]}*.${params.file_type}" :
"standards/reference/${params.standard}*.${params.file_type}")
sp_input = (params.standard =~ /(-|gold)/ ? "standards/$params.standard/*.${params.file_type}" :
"standards/$params.standard-[0-9]/*.${params.file_type}")
"standards/$params.standard-*/*.${params.file_type}")
annot = "celltype"
sampleID = "none"
skip_metrics = (file_type =~ /rds/ ? false : true)
Expand Down
2 changes: 2 additions & 0 deletions subworkflows/deconvolution/stride/run_method.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
process runSTRIDE {
tag "stride_${sp_file_basename}"
label "retry"
label "longer_time"
container 'csangara/sp_stride:latest'
echo true

Expand Down Expand Up @@ -52,6 +53,7 @@ process runSTRIDE {
process buildSTRIDEModel {
tag "stride_build_$tag_suffix"
label "retry"
label "longer_time"
container 'csangara/sp_stride:latest'
echo true

Expand Down

0 comments on commit b6c3a9a

Please sign in to comment.