Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The pipeline now stops on Busco failures (#194)
- Update resource requirements for BLASTN modules (#191) and BLOBTOOLKIT_WINDOWSTATS
- Fixed the `test_full` profile (Sanger only)
- Addition of `--tmpdir` to Diamond blast modules (#200)
- `--use_work_dir_as_temp` is no longer a hidden param.
- Fixed some documentation (#193 and #197)
- Made GENERATE_CONFIG more resilient to network errors (#197)

Expand Down
5 changes: 2 additions & 3 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ process {
}

withName: "DIAMOND_BLASTP" {
ext.args = "--evalue 1.0e-25 --max-target-seqs 10 --max-hsps 1"
ext.args = { "--evalue 1.0e-25 --max-target-seqs 10 --max-hsps 1" + ( params.use_work_dir_as_temp ? " --tmpdir ./blastp_tmp/" : "" ) }
}

withName: "DIAMOND_BLASTX" {
ext.args = "--evalue 1.0e-25 --max-target-seqs 10 --max-hsps 1"
ext.args = { "--evalue 1.0e-25 --max-target-seqs 10 --max-hsps 1" + ( params.use_work_dir_as_temp ? " --tmpdir ./blastx_tmp/" : "" ) }
}

withName: "BLOBTK_DEPTH" {
Expand Down Expand Up @@ -178,4 +178,3 @@ process {
}

}

19 changes: 17 additions & 2 deletions modules/nf-core/diamond/blastp/diamond-blastp.diff

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/diamond/blastp/main.nf

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

19 changes: 17 additions & 2 deletions modules/nf-core/diamond/blastx/diamond-blastx.diff

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/diamond/blastx/main.nf

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

2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ params {
skip_taxon_filtering = false

// Execution options
use_work_dir_as_temp = false
use_work_dir_as_temp = false

// MultiQC options
multiqc_config = null
Expand Down
4 changes: 2 additions & 2 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@
"properties": {
"use_work_dir_as_temp": {
"type": "boolean",
"description": "Set to true to make tools (e.g. sort, FastK, MerquryFK) use the work directory for their temporary files, rather than the system default.",
"description": "Set to true to make tools (e.g. sort, FastK, MerquryFK, BLASTP, BLASTX) use the work directory for their temporary files, rather than the system default.",
"fa_icon": "fas fa-arrow-circle-down",
"hidden": true
"hidden": false
}
},
"fa_icon": "fas fa-running"
Expand Down