Skip to content

Commit

Permalink
Merge pull request #217 from nf-core/dev
Browse files Browse the repository at this point in the history
Prepare for release 2.3.1
  • Loading branch information
marissaDubbelaar authored May 10, 2022
2 parents b24db1e + 83c79fa commit bc0a2dd
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# nf-core/mhcquant: Changelog

## v2.3.1 nfcore/mhcquant "White Gold Swallow" - 2022/05/10

### `Added`

- [#210](https://github.com/nf-core/mhcquant/pull/210) - Icons to the different parameters in the `nextflow_schema.json`

### `Fixed`

- [#211](https://github.com/nf-core/mhcquant/issues/211) Resolved the problem that there was no output from `OPENMS_MZTABEXPORTER_QUANT`
- [#212](https://github.com/nf-core/mhcquant/issues/212) - Altered the CometAdapter functionalities for resolve the issue with the `fixed_mods`

### `Dependencies`

### `Deprecated`

## v2.3.0 nfcore/mhcquant "White Gold Swallow" - 2022/04/05

### `Added`
Expand Down
10 changes: 9 additions & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,18 @@ process {
]
}

withName: 'OPENMS_DECOYDATABASE|OPENMS_THERMORAWFILEPARSER|OPENMS_PEAKPICKERHIRES|OPENMS_PEPTIDEINDEXER|OPENMS_FALSEDISCOVERYRATE|OPENMS_IDMERGER|OPENMS_MAPRTTRANSFORMER.*ML|OPENMS_FEATURE.*|OPENMS_IDCONFLICTRESOLVER|OPENMS_MZTABEXPORTER' {
withName: 'OPENMS_DECOYDATABASE|OPENMS_THERMORAWFILEPARSER|OPENMS_PEAKPICKERHIRES|OPENMS_PEPTIDEINDEXER|OPENMS_FALSEDISCOVERYRATE|OPENMS_IDMERGER|OPENMS_MAPRTTRANSFORMER.*ML|OPENMS_FEATURE.*|OPENMS_IDCONFLICTRESOLVER' {
publishDir = [ enabled: false ]
}

withName: 'OPENMS_MZTABEXPORTER_QUANT' {
publishDir = [
path: { "${params.outdir}/Intermediate_Results" },
mode: params.publish_dir_mode,
pattern: '*.mzTab'
]
}

withName: 'OPENMS_TEXTEXPORTER_UNQUANTIFIED|OPENMS_TEXTEXPORTER_QUANTIFIED' {
ext.args = [
"-id:add_metavalues 0"
Expand Down
2 changes: 1 addition & 1 deletion modules/local/openms_cometadapter.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ process OPENMS_COMETADAPTER {
def prefix = task.ext.prefix ?: "${mzml.baseName}"
def args = task.ext.args ?: ''

def mods = params.fixed_mods != " " ? "-fixed_modifications ${params.fixed_mods.tokenize(',').collect { "'${it}'"}.join(" ")}" : ""
def mods = params.fixed_mods != " " ? "-fixed_modifications ${params.fixed_mods.tokenize(',').collect { "'${it}'"}.join(" ")}" : "-fixed_modifications"
def xions = params.use_x_ions ? "-use_X_ions true" : ""
def zions = params.use_z_ions ? "-use_Z_ions true" : ""
def aions = params.use_a_ions ? "-use_A_ions true" : ""
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ manifest {
description = 'Identify and quantify peptides from mass spectrometry raw data'
mainScript = 'main.nf'
nextflowVersion = '!>=21.10.3'
version = '2.3.0'
version = '2.3.1'
}

// Function to ensure that resource requirements don't go beyond
Expand Down
Loading

0 comments on commit bc0a2dd

Please sign in to comment.