Skip to content
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

Code review for release 2.4.0 #184

Merged
merged 2 commits into from
Nov 18, 2024
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 .github/workflows/awsfulltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
steps:
- uses: octokit/[email protected]
id: check_approvals
if: github.event_name != 'workflow_dispatch'
with:
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/reviews
env:
Expand Down
2 changes: 1 addition & 1 deletion .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ template:
outdir: .
skip_features:
- igenomes
version: 2.4.0dev
version: 2.4.0
update: null
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Dependencies`

| Tool | Previous version | New version |
| --------- | ---------------- | ----------- |
| Dfast | 1.2.20 | 1.3.2 |
| Unicycler | 0.4.8 | 0.5.0 |

### `Deprecated`

## v2.3.1 nf-core/bacass: "Navy Iron Oyster" 2024/06/24
Expand Down
2 changes: 1 addition & 1 deletion conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process {
time = { 4.h * task.attempt }

errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' }
maxRetries = 1
maxRetries = 3
maxErrors = '-1'

// Process-specific resource requirements
Expand Down
3 changes: 0 additions & 3 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,6 @@ if (!params.skip_fastp) {
if (!params.skip_kmerfinder) {
process {
withName: '.*:.*:KMERFINDER_SUBWORKFLOW:KMERFINDER' {
errorStrategy = { task.exitStatus in [1, 137, 139] ? 'retry' : 'finish'}
Daniel-VM marked this conversation as resolved.
Show resolved Hide resolved
maxRetries = 3

ext.args = ''
publishDir = [
path: { "${params.outdir}/Kmerfinder/${meta.id}" },
Expand Down
3 changes: 0 additions & 3 deletions workflows/bacass.nf
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ include { methodsDescriptionText } from '../subworkflows/local/ut
def checkPathParamList = [ params.input, params.multiqc_config, params.kraken2db, params.dfast_config ]
for (param in checkPathParamList) { if (param) { file(param, checkIfExists: true) } }

// Place config files here


/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RUN MAIN WORKFLOW
Expand Down
Loading