Skip to content

Commit 2a5c32a

Browse files
authored
Merge pull request #396 from nf-core/patch
Prevent bioawk overwriting input files if input and module output names the same
2 parents ec1f1b6 + d968423 commit 2a5c32a

9 files changed

Lines changed: 34 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## v1.1.6 - [2024-07-08]
7+
8+
### `Added`
9+
10+
### `Fixed`
11+
12+
- [#396](https://github.com/nf-core/funcscan/pull/396) Fixed bioawk overwriting input files. (❤️ to @Microbion for reporting, fix by @jfy133)
13+
14+
### `Dependencies`
15+
616
## v1.1.5 - [2024-03-20]
717

818
### `Added`

modules.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
},
5858
"bioawk": {
5959
"branch": "master",
60-
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
60+
"git_sha": "dee3479f3b4a828df6052d318403d2b6a87b2d2e",
6161
"installed_by": ["modules"],
6262
"patch": "modules/nf-core/bioawk/bioawk.diff"
6363
},
@@ -88,7 +88,7 @@
8888
},
8989
"fargene": {
9090
"branch": "master",
91-
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
91+
"git_sha": "a7231cbccb86535529e33859e05d19ac93f3ea04",
9292
"installed_by": ["modules"]
9393
},
9494
"gecco/run": {

modules/nf-core/bioawk/environment.yml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bioawk/main.nf

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bioawk/meta.yml

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/fargene/environment.yml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/fargene/main.nf

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/fargene/meta.yml

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nextflow.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ profiles {
269269
shifter.enabled = false
270270
charliecloud.enabled = false
271271
apptainer.enabled = false
272+
docker.runOptions = '-u $(id -u):$(id -g)'
272273
}
273274
arm {
274275
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'

0 commit comments

Comments
 (0)