Skip to content

Commit

Permalink
Merge pull request #199 from skrakau/add_and_fix_container
Browse files Browse the repository at this point in the history
Add and fix container
  • Loading branch information
skrakau authored May 26, 2021
2 parents 9ee55e4 + bbae7e0 commit 0de4b58
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
7 changes: 7 additions & 0 deletions modules/local/busco_save_download.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ process BUSCO_SAVE_DOWNLOAD {
overwrite: false,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }

conda (params.enable_conda ? "conda-forge::sed=4.7" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://containers.biocontainers.pro/s3/SingImgsRepo/biocontainers/v1.2.0_cv1/biocontainers_v1.2.0_cv1.img"
} else {
container "biocontainers/biocontainers:v1.2.0_cv1"
}

input:
path(busco_downloads)

Expand Down
8 changes: 6 additions & 2 deletions modules/local/get_software_versions.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ process GET_SOFTWARE_VERSIONS {
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'pipeline_info', publish_id:'') }

conda (params.enable_conda ? "conda-forge::python=3.8.3" : null)
container "quay.io/biocontainers/python:3.8.3"
conda (params.enable_conda ? "conda-forge::python=3.8.3" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/python:3.8.3"
} else {
container "quay.io/biocontainers/python:3.8.3"
}

cache false

Expand Down
7 changes: 7 additions & 0 deletions modules/local/quast_bins_summary.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ process QUAST_BINS_SUMMARY {
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }

conda (params.enable_conda ? "conda-forge::sed=4.7" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://containers.biocontainers.pro/s3/SingImgsRepo/biocontainers/v1.2.0_cv1/biocontainers_v1.2.0_cv1.img"
} else {
container "biocontainers/biocontainers:v1.2.0_cv1"
}

input:
path(summaries)

Expand Down

0 comments on commit 0de4b58

Please sign in to comment.