Skip to content

Commit

Permalink
Merge pull request #119 from JoseEspinosa/fixes
Browse files Browse the repository at this point in the history
Fix "Argument list too long" issue
  • Loading branch information
JoseEspinosa authored Sep 29, 2023
2 parents 146c357 + 6d71c38 commit 37ff17f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
32 changes: 16 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Enhancements & fixes

- [#80](https://github.com/nf-core/proteinfold/pull/80) - Add `accelerator` directive to GPU processes when `params.use_gpu` is true.
- [#81](https://github.com/nf-core/proteinfold/pull/81) - Support multiline fasta for colabfold multimer predictions.
- [#89](https://github.com/nf-core/proteinfold/pull/89) - Fix issue with excessive symlinking in the pdb_mmcif database.
- [PR #91](https://github.com/nf-core/proteinfold/pull/91) - Update ColabFold version to 1.5.2 and AlphaFold version to 2.3.2
- [PR #92](https://github.com/nf-core/proteinfold/pull/92) - Add ESMFold workflow to the pipeline.
- [[#80](https://github.com/nf-core/proteinfold/pull/80)] - Add `accelerator` directive to GPU processes when `params.use_gpu` is true.
- [[#81](https://github.com/nf-core/proteinfold/pull/81)] - Support multiline fasta for colabfold multimer predictions.
- [[#89](https://github.com/nf-core/proteinfold/pull/89)] - Fix issue with excessive symlinking in the pdb_mmcif database.
- [[PR #91](https://github.com/nf-core/proteinfold/pull/91)] - Update ColabFold version to 1.5.2 and AlphaFold version to 2.3.2
- [[PR #92](https://github.com/nf-core/proteinfold/pull/92)] - Add ESMFold workflow to the pipeline.
- Update metro map to include ESMFold workflow.
- Update modules to remove quay from container url.
- [nf-core/tools#2286](https://github.com/nf-core/tools/issues/2286) - Set default container registry outside profile scope.
- [PR #97](https://github.com/nf-core/proteinfold/pull/97) - Fix issue with uniref30 missing path when using the full BFD database in AlphaFold.
- [PR #100](https://github.com/nf-core/proteinfold/pull/100) - Update containers for AlphaFold2 and ColabFold local modules.
- [PR #105](https://github.com/nf-core/proteinfold/pull/105) - Update COLABFOLD_BATCH docker container, metro map figure and nextflow schema description.
- [PR #106](https://github.com/nf-core/proteinfold/pull/106) - Add `singularity.registry = 'quay.io'` and bump NF version to 23.04.0
- [PR #108](https://github.com/nf-core/proteinfold/pull/108) - Fix gunzip error when providing too many files when downloading PDBMMCIF database.
- [PR #111](https://github.com/nf-core/proteinfold/pull/111) - Update pipeline template to [nf-core/tools 2.9](https://github.com/nf-core/tools/releases/tag/2.9).
- [PR #112](https://github.com/nf-core/rnaseq/pull/112) - Use `nf-validation` plugin for parameter and samplesheet validation.
- [#113](https://github.com/nf-core/proteinfold/pull/113) - Include esmfold dbs for full data sets.
- [PR #114](https://github.com/nf-core/rnaseq/pull/114) - Update paths to test dbs.
- [PR #117](https://github.com/nf-core/proteinfold/pull/117) - Update pipeline template to [nf-core/tools 2.10](https://github.com/nf-core/tools/releases/tag/2.10).
- [[nf-core/tools#2286](https://github.com/nf-core/tools/issues/2286)] - Set default container registry outside profile scope.
- [[PR #97](https://github.com/nf-core/proteinfold/pull/97)] - Fix issue with uniref30 missing path when using the full BFD database in AlphaFold.
- [[PR #100](https://github.com/nf-core/proteinfold/pull/100)] - Update containers for AlphaFold2 and ColabFold local modules.
- [[PR #105](https://github.com/nf-core/proteinfold/pull/105)] - Update COLABFOLD_BATCH docker container, metro map figure and nextflow schema description.
- [[PR #106](https://github.com/nf-core/proteinfold/pull/106)] - Add `singularity.registry = 'quay.io'` and bump NF version to 23.04.0
- [[#108](https://github.com/nf-core/proteinfold/issues/108)] - Fix gunzip error when providing too many files when downloading PDBMMCIF database.
- [[PR #111](https://github.com/nf-core/proteinfold/pull/111)] - Update pipeline template to [nf-core/tools 2.9](https://github.com/nf-core/tools/releases/tag/2.9).
- [[PR #112](https://github.com/nf-core/rnaseq/pull/112)] - Use `nf-validation` plugin for parameter and samplesheet validation.
- [[#113](https://github.com/nf-core/proteinfold/pull/113)] - Include esmfold dbs for full data sets.
- [[PR #114](https://github.com/nf-core/rnaseq/pull/114)] - Update paths to test dbs.
- [[PR #117](https://github.com/nf-core/proteinfold/pull/117)] - Update pipeline template to [nf-core/tools 2.10](https://github.com/nf-core/tools/releases/tag/2.10).

## 1.0.0 - White Silver Reebok

Expand Down
4 changes: 3 additions & 1 deletion modules/local/download_pdbmmcif.nf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ process DOWNLOAD_PDBMMCIF {
raw
echo "Unzipping all mmCIF files..."
find ./raw -type f -name '*.[gG][zZ]' -exec gunzip {} +
find ./raw -type f -name '*.[gG][zZ]' -print0 | while IFS= read -r -d \$'\\0' file; do
gunzip "$file"
done
echo "Flattening all mmCIF files..."
mkdir mmcif_files
Expand Down

0 comments on commit 37ff17f

Please sign in to comment.