Skip to content

Commit

Permalink
Merge pull request #30 from PlantandFoodResearch/dev
Browse files Browse the repository at this point in the history
Increased time limit for longer tasks
  • Loading branch information
GallVp authored May 9, 2024
2 parents 18dc82c + dc3db4a commit e49e94c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.1.0"
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier
additional_dependencies:
- [email protected]
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: "2.7.3"
hooks:
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
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).

## 0.3.1 - [10-May-2024]

### `Added`

### `Fixed`

1. Increased time limit for REPEATMODELER_REPEATMODELER to 3 days, REPEATMASKER to 2 days, EDTA_EDTA to 7 days, BRAKER3 to 7 days and EGGNOGMAPPER to 1 day

### `Dependencies`

1. NextFlow!>=23.04.4
2. nf-validation=1.1.3

### `Deprecated`

## 0.3.0 - [30-April-2024]

### `Added`
Expand Down
15 changes: 15 additions & 0 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,21 @@ process {
memory = { check_max( 200.GB * task.attempt, 'memory' ) }
}

withName:REPEATMODELER_REPEATMODELER {
time = { check_max( 3.days * task.attempt, 'time' ) }
}
withName:REPEATMASKER {
time = { check_max( 2.days * task.attempt, 'time' ) }
}
withName:EDTA_EDTA {
time = { check_max( 7.days * task.attempt, 'time' ) }
}
withName:BRAKER3 {
time = { check_max( 7.days * task.attempt, 'time' ) }
}
withName:EGGNOGMAPPER {
time = { check_max( 1.day * task.attempt, 'time' ) }
}
withName:CUSTOM_DUMPSOFTWAREVERSIONS {
cache = false
}
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ manifest {
description = """A NextFlow pipeline for pan-genome annotation"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.4'
version = '0.3.0'
version = '0.3.1'
doi = ''
}

Expand Down

0 comments on commit e49e94c

Please sign in to comment.