Skip to content

Commit e49e94c

Browse files
authored
Merge pull request #30 from PlantandFoodResearch/dev
Increased time limit for longer tasks
2 parents 18dc82c + dc3db4a commit e49e94c

File tree

4 files changed

+34
-2
lines changed

4 files changed

+34
-2
lines changed

.pre-commit-config.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
repos:
22
- repo: https://github.com/pre-commit/mirrors-prettier
3-
rev: "v3.1.0"
3+
rev: "v4.0.0-alpha.8"
44
hooks:
55
- id: prettier
6+
additional_dependencies:
7+
- prettier@3.2.5
68
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
79
rev: "2.7.3"
810
hooks:

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
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+
## 0.3.1 - [10-May-2024]
7+
8+
### `Added`
9+
10+
### `Fixed`
11+
12+
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
13+
14+
### `Dependencies`
15+
16+
1. NextFlow!>=23.04.4
17+
2. nf-validation=1.1.3
18+
19+
### `Deprecated`
20+
621
## 0.3.0 - [30-April-2024]
722

823
### `Added`

conf/base.config

+15
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,21 @@ process {
6666
memory = { check_max( 200.GB * task.attempt, 'memory' ) }
6767
}
6868

69+
withName:REPEATMODELER_REPEATMODELER {
70+
time = { check_max( 3.days * task.attempt, 'time' ) }
71+
}
72+
withName:REPEATMASKER {
73+
time = { check_max( 2.days * task.attempt, 'time' ) }
74+
}
75+
withName:EDTA_EDTA {
76+
time = { check_max( 7.days * task.attempt, 'time' ) }
77+
}
78+
withName:BRAKER3 {
79+
time = { check_max( 7.days * task.attempt, 'time' ) }
80+
}
81+
withName:EGGNOGMAPPER {
82+
time = { check_max( 1.day * task.attempt, 'time' ) }
83+
}
6984
withName:CUSTOM_DUMPSOFTWAREVERSIONS {
7085
cache = false
7186
}

nextflow.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ manifest {
5858
description = """A NextFlow pipeline for pan-genome annotation"""
5959
mainScript = 'main.nf'
6060
nextflowVersion = '!>=23.04.4'
61-
version = '0.3.0'
61+
version = '0.3.1'
6262
doi = ''
6363
}
6464

0 commit comments

Comments
 (0)