Skip to content

Commit

Permalink
Merge pull request #105 from mskcc/feature/offline
Browse files Browse the repository at this point in the history
fix docker location issues
  • Loading branch information
anoronh4 authored Feb 28, 2024
2 parents 79f1bd2 + 12f4cc8 commit ea6d373
Show file tree
Hide file tree
Showing 12 changed files with 117 additions and 27 deletions.
5 changes: 5 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ process {
["GRCh38","hg38"].contains(params.genome) ? 'hg38' :
["mm10","GRCm38"].contains(params.genome) ? 'mm10' :
'mm39'
storeDir = { "${params.reference_base}/${params.genome}/arriba" }
}

withName: MERGE_CFF {
Expand Down Expand Up @@ -224,6 +225,10 @@ process {
]
}

withName: AGFUSION_DOWNLOAD {
storeDir = { "${params.reference_base}/${params.genome}/agfusion" }
}

withName: ONCOKB_FUSIONANNOTATOR {
ext.when = params.run_oncokb_fusionannotator
secret = ["ONCOKB_TOKEN"]
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"gunzip": {
"branch": "master",
"git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c",
"git_sha": "3a5fef109d113b4997c9822198664ca5f2716208",
"installed_by": ["modules"]
},
"kallisto/index": {
Expand Down
2 changes: 1 addition & 1 deletion modules/local/agfusion/batch/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ process AGFUSION_BATCH {
conda 'bioconda::agfusion=1.252'
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'docker://cmopipeline/agfusion:0.0.6' :
'docker://cmopipeline/agfusion:0.0.6' }"
'docker.io/cmopipeline/agfusion:0.0.6' }"

input:
tuple val(meta), path(fusions)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/agfusion/download/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process AGFUSION_DOWNLOAD {
conda 'bioconda::agfusion=1.252'
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'docker://cmopipeline/agfusion:0.0.6' :
'docker://cmopipeline/agfusion:0.0.6' }"
'docker.io/cmopipeline/agfusion:0.0.6' }"

input:
val(ensembl_release)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/count_features/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process COUNT_FEATURES {
/// must be using singularity 3.7+
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/bioconductor-rtracklayer:1.60.0--r43ha9d7317_0' :
'https://depot.galaxyproject.org/singularity/bioconductor-rtracklayer:1.60.0--r43ha9d7317_0' }"
'biocontainers/bioconductor-rtracklayer:1.60.0--r43ha9d7317_0' }"

input:
tuple val(meta), path(abundance)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/metafusion/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process METAFUSION {

container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'docker://cmopipeline/metafusion:0.0.6' :
'docker://cmopipeline/metafusion:0.0.6' }"
'docker.io/cmopipeline/metafusion:0.0.6' }"

input:
tuple val(meta), path(cff)
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/gunzip/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 9 additions & 5 deletions modules/nf-core/gunzip/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 22 additions & 17 deletions modules/nf-core/gunzip/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions modules/nf-core/gunzip/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions modules/nf-core/gunzip/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions modules/nf-core/gunzip/tests/tags.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ea6d373

Please sign in to comment.