Skip to content

Commit

Permalink
Add msgf/sage to param schema so they end up in report
Browse files Browse the repository at this point in the history
  • Loading branch information
glormph committed Jan 31, 2025
1 parent 0ae7818 commit 197f1d4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env nextflow

include { paramsSummaryMap } from 'plugin/nf-validation'
include { paramsSummaryMap } from 'plugin/nf-schema'

include { msgf_info_map; listify; stripchars_infile; get_regex_specialchars; read_header } from './modules.nf'
include { MSGFPERCO } from './workflows/msgf_perco.nf'
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import groovy.json.JsonSlurper

plugins {
id 'nf-validation'
id 'nf-[email protected]'
}

// Dont warn on withName in config without a process in running pipeline
Expand All @@ -16,7 +16,7 @@ params {
external_config_version = 'master'

name = false
input = false
input = null
tdb = false
mods = false
sage = false
Expand Down
6 changes: 6 additions & 0 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,12 @@
"overbook_cpus_factor": {
"type": "integer",
"default": 1
},
"sage": {
"type": "boolean"
},
"msgf": {
"type": "boolean"
}
}
}

0 comments on commit 197f1d4

Please sign in to comment.