Skip to content

Commit

Permalink
Merge pull request #310 from jonasscheid/refactor-for-release-2_6
Browse files Browse the repository at this point in the history
Refactor for release 2.6
  • Loading branch information
jonasscheid authored Feb 27, 2024
2 parents b9b2f2a + e7a1938 commit ce6ed23
Show file tree
Hide file tree
Showing 58 changed files with 1,606 additions and 682 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Added`

- Adding MS²Rescore module with the underlying python CLI [#288](https://github.com/nf-core/mhcquant/issues/288)
- Added MS²Rescore module with the underlying python CLI [#293](https://github.com/nf-core/mhcquant/pull/293)
- Template update 2.11 [#300](https://github.com/nf-core/mhcquant/pull/300)
- Template update 2.12 [#303](https://github.com/nf-core/mhcquant/pull/303)

### `Fixed`

- Create only one decoy database [#287](https://github.com/nf-core/mhcquant/issues/287)
- Create only one decoy database [#299](https://github.com/nf-core/mhcquant/pull/299)
- Use `groupKey` to streamline group-wise processing [#310](https://github.com/nf-core/mhcquant/pull/310)
- Replace `PYOPENMS_IDFILTER` with `OPENMS_IDFILTER` [#310](https://github.com/nf-core/mhcquant/pull/310)
- Added nf-core modules [#310](https://github.com/nf-core/mhcquant/pull/310)

### `Deprecated`

- Removed MS²PIP and DeepLC modules. These feature generators are now called via the MS²Rescore framework
- Removed MS²PIP and DeepLC modules. These feature generators are now called via the MS²Rescore framework [#293](https://github.com/nf-core/mhcquant/pull/293)

## v2.5.0 - nfcore/mhcquant "Angry Bird" - 2023/10/09

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Additional functionality contained by the pipeline currently includes:
- Facilitates the input to, the call of and output integration of Percolator (`PercolatorAdapter`)

> [!WARNING]
> The HLA prediction feature is outdated and will be reworked in the following releases
> The neo-epitope search and HLA prediction feature is broken and will be reworked in the following releases. See [#248](https://github.com/nf-core/mhcquant/issues/248) and [#278](https://github.com/nf-core/mhcquant/issues/278)
#### Prediction of HLA class 1 peptides

Expand Down
90 changes: 0 additions & 90 deletions bin/IDFilter.py

This file was deleted.

6 changes: 3 additions & 3 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ process {
cache = false
}
withName:TDF2MZML {
cpus = { check_max( 1 * task.attempt, 'cpus' ) }
memory = { check_max( 10.GB * task.attempt, 'memory' ) }
time = { check_max( 16.h * task.attempt, 'time' ) }
cpus = { check_max( 1 * task.attempt, 'cpus' ) }
memory = { check_max( 10.GB * task.attempt, 'memory' ) }
time = { check_max( 16.h * task.attempt, 'time' ) }
}
}
Loading

0 comments on commit ce6ed23

Please sign in to comment.