8000 Fix busco_clean parameter being enabled by default by prototaxites · Pull Request #419 · nf-core/mag · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix busco_clean parameter being enabled by default #419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix duplicated Zenodo badge in README (by @jfy133)
- Fix CheckM database always downloading, regardless if CheckM is selected (by @jfy133)
- Fix bug with busco_clean parameter, where it is always activated (by @prototaxites)

### `Dependencies`

Expand Down
1 change: 1 addition & 0 deletions conf/test_binrefinement.config
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ params {
refine_bins_dastool = true
refine_bins_dastool_threshold = 0
postbinning_input = 'both'
busco_clean = true
}
2 changes: 1 addition & 1 deletion modules/local/busco.nf
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ process BUSCO {
fi

# if needed delete temporary BUSCO files
if [ ${busco_clean} ]; then
if [ ${busco_clean} = "Y" ]; then
find . -depth -type d -name "augustus_config" -execdir rm -rf "{}" \\;
find . -depth -type d -name "auto_lineage" -execdir rm -rf "{}" \\;
find . -depth -type d -name "run_*" -execdir rm -rf "{}" +
Expand Down
0