Skip to content

Commit

Permalink
fixed execution of versions file generation
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida committed Feb 24, 2024
1 parent a108dc2 commit de97097
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 39 deletions.
6 changes: 1 addition & 5 deletions conf/docker.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,4 @@ singularity.enabled = false
docker.enabled = true
docker.runOptions = '-u \$(id -u):\$(id -g)'
fixOwnership = true
process {
withName: '.*' {
container = "fmalmeida/mpgap@sha256:6cd3680958574a8a6c427ea7f31172c44d50cdb960d71e85a6b44eae3c7afc80"
}
}
process.container = "fmalmeida/mpgap@sha256:6cd3680958574a8a6c427ea7f31172c44d50cdb960d71e85a6b44eae3c7afc80"
6 changes: 1 addition & 5 deletions conf/singularity.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,4 @@ params.selected_profile = "singularity"
docker.enabled = false
singularity.enabled = true
singularity.autoMounts = true
process {
withName: '.*' {
container = "docker://fmalmeida/mpgap@sha256:6cd3680958574a8a6c427ea7f31172c44d50cdb960d71e85a6b44eae3c7afc80"
}
}
process.container = "docker://fmalmeida/mpgap@sha256:6cd3680958574a8a6c427ea7f31172c44d50cdb960d71e85a6b44eae3c7afc80"
7 changes: 6 additions & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ includeConfig 'conf/base.config'
params.hybrid_strategy = params.hybrid_strategy.toString()

// not save version by default
process { publishDir = [ saveAs: { filename -> filename.equals('versions.yml') ? null : filename } ] }
process {
publishDir = [
path: params.output,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}


// Nextflow management
Expand Down
2 changes: 1 addition & 1 deletion workflows/assembly_qc.nf

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

28 changes: 14 additions & 14 deletions workflows/hybrid.nf

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

18 changes: 9 additions & 9 deletions workflows/long-reads-only.nf

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

8 changes: 4 additions & 4 deletions workflows/short-reads-only.nf

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

0 comments on commit de97097

Please sign in to comment.