Skip to content

Commit

Permalink
singular project
Browse files Browse the repository at this point in the history
and normalize tokenization
  • Loading branch information
jashapiro committed May 29, 2024
1 parent 7d6ba20 commit 0a54ae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ workflow test {
}

workflow simulate {
project_ids = params.project?.tokenize(',') ?: []
project_ids = params.project?.tokenize(';, ') ?: []
run_all = project_ids.isEmpty() || project_ids[0].toLowerCase() == 'all'

project_ch = Channel.fromPath(Utils.getProjectPaths(release_dir))
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ profiles {
release_prefix = "test"
release_bucket = "s3://openscpca-test-data-release-public-access" // test bucket
results_bucket = "test/results" // local output
projects = "SCPCP000012" // a small project
project = "SCPCP000012" // a small project
}
}
batch {
Expand Down

0 comments on commit 0a54ae9

Please sign in to comment.