Skip to content

Commit 3f450fd

Browse files
authored
Merge pull request #139 from sanger-tol/busco_bug_full_test
Updated BTK container to ensure the right Busco ID is used
2 parents 81d26b4 + e33ca14 commit 3f450fd

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Upload linting log file artifact
101101
if: ${{ always() }}
102-
uses: actions/upload-artifact@v3
102+
uses: actions/upload-artifact@v4
103103
with:
104104
name: linting-logs
105105
path: |

.github/workflows/sanger_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
"use_work_dir_as_temp": true,
2727
}
2828
profiles: test,sanger,singularity,cleanup
29-
- uses: actions/upload-artifact@v3
29+
- uses: actions/upload-artifact@v4
3030
with:
3131
name: Tower debug log file
3232
path: |

.github/workflows/sanger_test_full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
"outdir": "${{ secrets.TOWER_WORKDIR_PARENT }}/results/${{ github.repository }}/results-${{ env.REVISION }}",
3535
}
3636
profiles: test_full,sanger,singularity,cleanup
37-
- uses: actions/upload-artifact@v3
37+
- uses: actions/upload-artifact@v4
3838
with:
3939
name: Tower debug log file
4040
path: |

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note, since the pipeline is using Nextflow DSL2, each process will be run with i
2222
| Dependency | Old version | New version |
2323
| ----------- | ----------------- | --------------- |
2424
| blast | 2.14.1 and 2.15.0 | only 2.15.0 |
25-
| blobtoolkit | 4.3.9 | 4.4.0 |
25+
| blobtoolkit | 4.3.9 | 4.4.4 |
2626
| busco | 5.5.0 | 5.7.1 |
2727
| multiqc | 1.20 and 1.21 | 1.20 and 1.25.1 |
2828
| samtools | 1.18 and 1.19.2 | 1.20 and 1.21 |

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ List of tools for any given dataset can be fetched from the API, for example htt
272272

273273
| Dependency | Snakemake | Nextflow |
274274
| ----------------- | --------- | -------- |
275-
| blobtoolkit | 4.3.2 | 4.4.0 |
275+
| blobtoolkit | 4.3.2 | 4.4.4 |
276276
| blast | 2.12.0 | 2.14.1 |
277277
| blobtk | 0.5.0 | 0.5.1 |
278278
| busco | 5.3.2 | 5.5.0 |

modules/local/blobtoolkit/chunk.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_CHUNK {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_CHUNK module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta) , path(fasta)

modules/local/blobtoolkit/countbuscos.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_COUNTBUSCOS {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_COUNTBUSCOS module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta), path(table, stageAs: 'dir??/*')

modules/local/blobtoolkit/createblobdir.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_CREATEBLOBDIR {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_BLOBDIR module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta), path(window, stageAs: 'windowstats/*')

modules/local/blobtoolkit/extractbuscos.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_EXTRACTBUSCOS {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_EXTRACTBUSCOS module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta), path(fasta)

modules/local/blobtoolkit/summary.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_SUMMARY {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_SUMMARY module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta), path(blobdir)

modules/local/blobtoolkit/unchunk.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_UNCHUNK {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_UNCHUNK module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta), path(blast_table)

modules/local/blobtoolkit/updateblobdir.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_UPDATEBLOBDIR {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_BLOBDIR module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta), path(input, stageAs: "input_blobdir")

modules/local/blobtoolkit/updatemeta.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ process BLOBTOOLKIT_UPDATEMETA {
55
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
66
exit 1, "BLOBTOOLKIT_UPDATEMETA module does not support Conda. Please use Docker / Singularity / Podman instead."
77
}
8-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
8+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
99

1010
input:
1111
tuple val(meta), path(input)

modules/local/blobtoolkit/windowstats.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ process BLOBTOOLKIT_WINDOWSTATS {
44
if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
55
exit 1, "BLOBTOOLKIT_WINDOWSTATS module does not support Conda. Please use Docker / Singularity / Podman instead."
66
}
7-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
7+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
88

99
input:
1010
tuple val(meta), path(tsv)

modules/local/generate_config.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ process GENERATE_CONFIG {
33
label 'process_single'
44

55
conda "conda-forge::requests=2.28.1 conda-forge::pyyaml=6.0"
6-
container "docker.io/genomehubs/blobtoolkit:4.4.0"
6+
container "docker.io/genomehubs/blobtoolkit:4.4.4"
77

88
input:
99
tuple val(meta), val(fasta)

0 commit comments

Comments
 (0)