Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [[#417](https://github.com/nf-core/proteinfold/issues/417)] - Add `boltz_use_kernels` parameter to enable/disable using optimized Triton-based CUDA kernels CUDA kernels for Boltz inference.
- [[#417](https://github.com/nf-core/proteinfold/issues/417)] - Handle incompatible CUDA kernel errors in Boltz by automatically retrying with `--no_kernels` false.
- [[PR #454](https://github.com/nf-core/proteinfold/pulls/454)] - Update publishdir patterns for alphafold2 modules
- [[PR #464](https://github.com/nf-core/proteinfold/pulls/464)] - Update module conf and publishdir patterns for ESMFold, pass through container args

### Parameters

Expand Down
12 changes: 6 additions & 6 deletions conf/modules_esmfold.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@

process {
withName: 'RUN_ESMFOLD' {
ext.args = {params.use_gpu ? '' : '--cpu-only'}
ext.args = ''
Comment thread
keiran-rowell-unsw marked this conversation as resolved.
Outdated
containerOptions = '--nv --env TRITON_CACHE_DIR=/tmp/triton_cache --env XDG_CACHE_HOME=/tmp'
Comment thread
keiran-rowell-unsw marked this conversation as resolved.
Outdated
publishDir = [
[
path: { "${params.outdir}/esmfold/default" },
path: { "${params.outdir}/esmfold/${meta.id}" },
mode: 'copy',
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
pattern: '*.*'
pattern: '*_plddt.tsv'
],
[
path: { "${params.outdir}/esmfold/default/top_ranked_structures" },
path: { "${params.outdir}/esmfold/top_ranked_structures" },
mode: 'copy',
saveAs: { "${meta.id}.pdb" },
pattern: '*.pdb'
pattern: '*_esmfold.pdb'
]
]
}
Expand Down