Skip to content

Commit

Permalink
Merge pull request #396 from nf-core/patch
Browse files Browse the repository at this point in the history
Prevent bioawk overwriting input files if input and module output names the same
  • Loading branch information
jfy133 authored Jul 8, 2024
2 parents ec1f1b6 + d968423 commit 2a5c32a
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.1.6 - [2024-07-08]

### `Added`

### `Fixed`

- [#396](https://github.com/nf-core/funcscan/pull/396) Fixed bioawk overwriting input files. (❤️ to @Microbion for reporting, fix by @jfy133)

### `Dependencies`

## v1.1.5 - [2024-03-20]

### `Added`
Expand Down
4 changes: 2 additions & 2 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
},
"bioawk": {
"branch": "master",
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
"git_sha": "dee3479f3b4a828df6052d318403d2b6a87b2d2e",
"installed_by": ["modules"],
"patch": "modules/nf-core/bioawk/bioawk.diff"
},
Expand Down Expand Up @@ -88,7 +88,7 @@
},
"fargene": {
"branch": "master",
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
"git_sha": "a7231cbccb86535529e33859e05d19ac93f3ea04",
"installed_by": ["modules"]
},
"gecco/run": {
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/bioawk/environment.yml

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

4 changes: 2 additions & 2 deletions modules/nf-core/bioawk/main.nf

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

6 changes: 2 additions & 4 deletions modules/nf-core/bioawk/meta.yml

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

7 changes: 7 additions & 0 deletions modules/nf-core/fargene/environment.yml

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

2 changes: 1 addition & 1 deletion modules/nf-core/fargene/main.nf

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

6 changes: 2 additions & 4 deletions modules/nf-core/fargene/meta.yml

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

1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ profiles {
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
docker.runOptions = '-u $(id -u):$(id -g)'
}
arm {
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'
Expand Down

0 comments on commit 2a5c32a

Please sign in to comment.