Skip to content

Commit

Permalink
Fix container paths
Browse files Browse the repository at this point in the history
  • Loading branch information
grst committed Jun 20, 2023
1 parent 97b910b commit 4163e2b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions modules/nf-core/cellranger/count/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_COUNT {
tag "$meta.id"
label 'process_high'

container "nf-core/cellranger:7.1.0"
container "nfcore/cellranger:7.1.0"

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand All @@ -24,7 +24,7 @@ process CELLRANGER_COUNT {
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
def reference_name = reference.name
template: "cellranger_count.py"
template "cellranger_count.py"

stub:
def prefix = task.ext.prefix ?: "${meta.id}"
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/cellranger/mkgtf/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_MKGTF {
tag "$gtf"
label 'process_low'

container "nf-core/cellranger:7.1.0"
container "nfcore/cellranger:7.1.0"

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/cellranger/mkref/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_MKREF {
tag "$fasta"
label 'process_high'

container "nf-core/cellranger:7.1.0"
container "nfcore/cellranger:7.1.0"

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/cellranger/mkvdjref/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_MKVDJREF {
tag "$fasta"
label 'process_high'

container "nf-core/cellranger:7.1.0"
container "nfcore/cellranger:7.1.0"

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/cellranger/multi/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_MULTI {
tag "$meta.id"
label 'process_high'

container "nf-core/cellranger:7.1.0"
container "nfcore/cellranger:7.1.0"

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/cellranger/vdj/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process CELLRANGER_VDJ {
tag "${meta.id}"
label 'process_high'

container "nf-core/cellranger:7.1.0"
container "nfcore/cellranger:7.1.0"

// Exit if running this module with -profile conda / -profile mamba
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
Expand Down

0 comments on commit 4163e2b

Please sign in to comment.