Skip to content

Commit be82be0

Browse files
updated docker images for mapping_patlas and mash_screen (#131)
* updated docker images for mapping_patlas and mash_screen * updated changelog
1 parent 14b02ee commit be82be0

File tree

8 files changed

+20
-13
lines changed

8 files changed

+20
-13
lines changed

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## Changes in upcoming release (dev branch)
4+
5+
### Components changes
6+
7+
Updated images for components `mash_dist`, `mash_screen` and
8+
`mapping_patlas`
9+
310
## 1.3.0
411

512
### Features

docs/user/components/mapping_patlas.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ Default directives
6060

6161
- ``mappingBowtie``:
6262
- ``container``: flowcraft/mapping-patlas
63-
- ``version``: 1.4.1
63+
- ``version``: 1.6.0-1
6464
- ``samtoolsView``:
6565
- ``container``: flowcraft/mapping-patlas
66-
- ``version``: 1.4.1
66+
- ``version``: 1.6.0-1
6767
- ``jsonDumpingMapping``:
6868
- ``container``: flowcraft/mapping-patlas
69-
- ``version``: 1.4.1
69+
- ``version``: 1.6.0-1

docs/user/components/mash_dist.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Default directives
6565

6666
- ``runMashDist``:
6767
- ``container``: flowcraft/mash-patlas
68-
- ``version``: 1.4.1
68+
- ``version``: 1.6.0-1
6969
- ``mashDistOutputJson``:
7070
- ``container``: flowcraft/mash-patlas
71-
- ``version``: 1.4.1
71+
- ``version``: 1.6.0-1

docs/user/components/mash_screen.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Default directives
6060

6161
- ``mashScreen``:
6262
- ``container``: flowcraft/mash-patlas
63-
- ``version``: 1.4.1
63+
- ``version``: 1.6.0-1
6464
- ``mashOutputJson``:
6565
- ``container``: flowcraft/mash-patlas
66-
- ``version``: 1.4.1
66+
- ``version``: 1.6.0-1

flowcraft/generator/components/distance_estimation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ def __init__(self, **kwargs):
4343
self.directives = {
4444
"runMashDist": {
4545
"container": "flowcraft/mash-patlas",
46-
"version": "1.5.2-1",
46+
"version": "1.6.0-1",
4747
"cpus": 1,
4848
"memory": "{ 4.GB * task.attempt }"
4949
},
5050
"mashDistOutputJson": {
5151
"container": "flowcraft/mash-patlas",
52-
"version": "1.5.2-1",
52+
"version": "1.6.0-1",
5353
"cpus": 1,
5454
"memory": "'4GB'"
5555
}

flowcraft/generator/components/patlas_mapping.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ def __init__(self, **kwargs):
4747
self.directives = {
4848
"mappingBowtie": {
4949
"container": "flowcraft/mapping-patlas",
50-
"version": "1.5.2-2",
50+
"version": "1.6.0-1",
5151
"cpus": 1,
5252
"memory": "{ 4.GB * task.attempt }",
5353
"scratch": "true"
5454
},
5555
"jsonDumpingMapping": {
5656
"container": "flowcraft/mapping-patlas",
57-
"version": "1.5.2-2",
57+
"version": "1.6.0-1",
5858
"cpus": 1,
5959
"memory": "'4GB'"
6060
}

flowcraft/generator/templates/mapping_patlas.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ process jsonDumpingMapping_{{ pid }} {
5757

5858
tag { sample_id }
5959

60-
publishDir 'results/mapping/mapping_json_{{ pid }}/', mode: 'copy'
60+
publishDir 'results/mapping/mapping_json_{{ pid }}/'
6161

6262
input:
6363
set sample_id, file(depthFile) from samtoolsResults

flowcraft/generator/templates/mash_dist.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ process mashDistOutputJson_{{ pid }} {
3838

3939
tag { sample_id }
4040

41-
publishDir 'results/mashdist/mashdist_json_{{ pid }}/', mode: 'copy'
41+
publishDir 'results/mashdist/mashdist_json_{{ pid }}/'
4242

4343
input:
4444
set sample_id, fasta, file(mashtxt) from mashDistOutChannel_{{ pid }}

0 commit comments

Comments
 (0)