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

Refactor for release 2.6 #310

Merged
merged 20 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ffbb623
temporarily disable neoepitopeprediction due to outdated vcf parsing
jonasscheid Jan 5, 2024
4dca345
remove not needed ifEmpty(null) from versions channel
jonasscheid Jan 5, 2024
3c8ff6b
use nf-core decoydatabase, remove local
jonasscheid Jan 5, 2024
85c61ce
remove not used fdr module
jonasscheid Jan 5, 2024
f0629fe
use nf-core peakpickerhires, remove local
jonasscheid Jan 5, 2024
ccca493
add nfcore idmerger module, remove local
jonasscheid Jan 5, 2024
460c8c0
update module patj
jonasscheid Jan 5, 2024
2136617
Use nf-core idfilter module, remove local
jonasscheid Jan 5, 2024
3af6c1b
delete custom idfilter script
jonasscheid Jan 6, 2024
d4972ca
delete pyopenms idfilter module
jonasscheid Jan 6, 2024
27c696f
replace pyopenms idfilter with nf-core openms module
jonasscheid Jan 8, 2024
8f1a411
add idscoreswitcher nf-core module
jonasscheid Jan 9, 2024
e37e9d6
add nf-core module idripper, remove local
jonasscheid Jan 12, 2024
2719b61
introduce spectra meta key for easier merge and splitting, adjust qua…
jonasscheid Jan 12, 2024
7138ff9
replace local with nf-core modules and adjust downstream channel hand…
jonasscheid Feb 23, 2024
49a5bb6
switch thermorawfileparser from local to nf-core module
jonasscheid Feb 23, 2024
5e54eb6
move thermorawfileparser config to nf-core section
jonasscheid Feb 23, 2024
200865a
remove channel view
jonasscheid Feb 24, 2024
e52085d
update changelog and readme
jonasscheid Feb 26, 2024
e7a1938
Merge branch 'dev' into refactor-for-release-2_6
jonasscheid Feb 26, 2024
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
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
Loading