Skip to content
Merged
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 modules/local/msstats/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process MSSTATS {
output:
// The generation of the PDFs from MSstats are very unstable, especially with auto-contrasts.
// And users can easily fix anything based on the csv and the included script -> make optional
path "*.pdf" optional true
path "*.pdf", optional: true
path "*.csv", emit: msstats_csv
path "*.log", emit: log
path "versions.yml" , emit: version
Expand Down
2 changes: 1 addition & 1 deletion modules/local/msstatstmt/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process MSSTATSTMT {
output:
// The generation of the PDFs from MSstatsTMT are very unstable, especially with auto-contrasts.
// And users can easily fix anything based on the csv and the included script -> make optional
path "*.pdf" optional true
path "*.pdf", optional: true
path "*.csv", emit: msstats_csv
path "*.log"
path "versions.yml" , emit: version
Expand Down
16 changes: 8 additions & 8 deletions modules/local/openms/proteomicslfq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ process PROTEOMICSLFQ {
output:
path "${expdes.baseName}_openms.mzTab", emit: out_mztab
path "${expdes.baseName}_openms.consensusXML", emit: out_consensusXML
path "*msstats_in.csv", emit: out_msstats optional true
path "*triqler_in.tsv", emit: out_triqler optional true
path "debug_mergedIDs.idXML", emit: debug_mergedIDs optional true
path "debug_mergedIDs_inference.idXML", emit: debug_mergedIDs_inference optional true
path "debug_mergedIDsGreedyResolved.idXML", emit: debug_mergedIDsGreedyResolved optional true
path "debug_mergedIDsGreedyResolvedFDR.idXML", emit: debug_mergedIDsGreedyResolvedFDR optional true
path "debug_mergedIDsGreedyResolvedFDRFiltered.idXML", emit: debug_mergedIDsGreedyResolvedFDRFiltered optional true
path "debug_mergedIDsFDRFilteredStrictlyUniqueResolved.idXML", emit: debug_mergedIDsFDRFilteredStrictlyUniqueResolved optional true
path "*msstats_in.csv", emit: out_msstats, optional: true
path "*triqler_in.tsv", emit: out_triqler, optional: true
path "debug_mergedIDs.idXML", emit: debug_mergedIDs, optional: true
path "debug_mergedIDs_inference.idXML", emit: debug_mergedIDs_inference, optional: true
path "debug_mergedIDsGreedyResolved.idXML", emit: debug_mergedIDsGreedyResolved, optional: true
path "debug_mergedIDsGreedyResolvedFDR.idXML", emit: debug_mergedIDsGreedyResolvedFDR, optional: true
path "debug_mergedIDsGreedyResolvedFDRFiltered.idXML", emit: debug_mergedIDsGreedyResolvedFDRFiltered, optional: true
path "debug_mergedIDsFDRFilteredStrictlyUniqueResolved.idXML", emit: debug_mergedIDsFDRFilteredStrictlyUniqueResolved, optional: true
path "*.log", emit: log
path "versions.yml", emit: version

Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ manifest {
homePage = 'https://github.com/nf-core/quantms'
description = """Quantitative Mass Spectrometry nf-core workflow"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
nextflowVersion = '!>=25.04.0'
version = '1.2.0'
doi = '10.5281/zenodo.7754148'
}
Expand Down
Loading