Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ withName: 'OPENMS_PERCOLATORADAPTER' {
publishDir = [
path: { "${params.outdir}/intermediate_results/fdr_control" },
mode: params.publish_dir_mode,
pattern: '*.idXML'
pattern: '*.idparquet'
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ sp:
fn: "*_ms_info.parquet"
num_lines: 0
pmultiqc/idXML:
fn: "*.idXML"
fn: "*.idparquet"
num_lines: 0
pmultiqc/msstats:
fn: "*msstats_in.csv"
Expand Down
9 changes: 2 additions & 7 deletions conf/modules/id.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@

process {

// FDRCONSENSUSID
withName: '.*:FDR_CONSENSUSID' {
ext.args = "-PSM true -protein false"
}

// ID_SCORE_SWITCHER for phospho scoring
withName: '.*:ID:PHOSPHO_SCORING:ID_SCORE_SWITCHER' {
ext.args = [
Expand Down Expand Up @@ -47,13 +42,13 @@ process {
// PSM FDR control ID_FILTER
withName: '.*:ID:PSM_FDR_CONTROL:ID_FILTER' {
ext.args = "-score:psm \"$params.run_fdr_cutoff\""
ext.suffix = '.idXML'
ext.suffix = '.idparquet'
}

// DDA_ID PSM FDR control ID_FILTER
withName: '.*:DDA_ID:PSM_FDR_CONTROL:ID_FILTER' {
ext.args = "-score:psm \"$params.run_fdr_cutoff\""
ext.suffix = '.idXML'
ext.suffix = '.idparquet'
}

// MS2RESCORE
Expand Down
2 changes: 1 addition & 1 deletion conf/modules/shared.config
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ process {
}

// Result tables from multiple pipelines including LFQ, TMT, DDA
withName: '.*:PROTEOMICSLFQ|PROTEIN_QUANTIFIER|MSSTATS_CONVERTER' {
withName: '.*:PROTEOMICSLFQ|PROTEIN_QUANTIFIER|MSSTATS_CONVERTER|ISOBARIC_WORKFLOW' {
publishDir = [
path: { "${params.outdir}/quant_tables" },
mode: 'copy',
Expand Down
2 changes: 1 addition & 1 deletion modules/local/openms/comet/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ output:
- id_files_comet:
type: file
description: Output file
pattern: "*.idXML"
pattern: "*.idparquet"
- log:
type: file
description: log file
Expand Down
40 changes: 0 additions & 40 deletions modules/local/openms/consensusid/main.nf

This file was deleted.

40 changes: 0 additions & 40 deletions modules/local/openms/consensusid/meta.yml

This file was deleted.

2 changes: 1 addition & 1 deletion modules/local/openms/extractfeatures/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ process EXTRACTPSMFEATURES {
PSMFeatureExtractor: \$(PSMFeatureExtractor 2>&1 | grep -E '^Version(.*)' | sed 's/Version: //g' | cut -d ' ' -f 1)
END_VERSIONS
"""
}
}
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
name: false_discovery_rate
description: Estimates the false discovery rate on peptide and protein level using decoy searches.
name: EXTRACTPSMFEATURES
description: Extracts PSM features from multiple search engines for rescoring.
keywords:
- FDR
- decoy
- PSM
- feature extraction
- rescoring
- OpenMS
tools:
- FalseDiscoveryRate:
- PSMFeatureExtractor:
description: |
Tool to estimate the false discovery rate on peptide and protein level.
homepage: https://abibuilder.cs.uni-tuebingen.de/archive/openms/Documentation/nightly/html/TOPP_FalseDiscoveryRate.html
documentation: https://abibuilder.cs.uni-tuebingen.de/archive/openms/Documentation/nightly/html/TOPP_FalseDiscoveryRate.html
Tool to extract PSM features from identification results for downstream rescoring.
homepage: https://abibuilder.cs.uni-tuebingen.de/archive/openms/Documentation/nightly/html/TOPP_PSMFeatureExtractor.html
documentation: https://abibuilder.cs.uni-tuebingen.de/archive/openms/Documentation/nightly/html/TOPP_PSMFeatureExtractor.html
input:
- meta:
type: map
description: Groovy Map containing sample information
- id_file:
- id_files:
type: file
description: |
Identifications from searching a target-decoy database.
pattern: "*.idXML"
Identification files from one or multiple search engines.
pattern: "*.idparquet"
output:
- meta:
type: map
description: Groovy Map containing sample information
- id_files_idx_ForIDPEP_FDR:
- id_files_feat:
type: file
description: |
Identifications with annotated FDR.
pattern: "*.idXML"
PSM features in Parquet format for rescoring.
pattern: "*_feat.idparquet"
- log:
type: file
description: log file
Expand Down
40 changes: 0 additions & 40 deletions modules/local/openms/false_discovery_rate/main.nf

This file was deleted.

33 changes: 0 additions & 33 deletions modules/local/openms/id_conflict_resolver/main.nf

This file was deleted.

31 changes: 0 additions & 31 deletions modules/local/openms/id_conflict_resolver/meta.yml

This file was deleted.

2 changes: 1 addition & 1 deletion modules/local/openms/id_filter/main.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process ID_FILTER {
tag {task.ext.suffix == ".idXML" ? "$meta.mzml_id" : "$id_file.baseName"}
tag {task.ext.suffix == ".idparquet" ? "$meta.mzml_id" : "$id_file.baseName"}
label 'process_very_low'
label 'process_single'
label 'openms'
Expand Down
36 changes: 0 additions & 36 deletions modules/local/openms/id_mapper/main.nf

This file was deleted.

40 changes: 0 additions & 40 deletions modules/local/openms/id_mapper/meta.yml

This file was deleted.

Loading
Loading