Add a "warning" when a argument is called with nextflow if that argument is not defined in the config.
Feature description
in the nextflow workflow config file the following arg is defined:
argument_groups:
- name: Sampling options
arguments:
- name: "--do_subsample"
type: boolean
default: false
description: "Whether or not to subsample the dataset"
- name: "--n_obs"
type: integer
description: Maximum number of observations to be kept. It might end up being less because empty cells / genes are removed.
default: 500
- name: "--n_vars"
type: integer
description: Maximum number of variables to be kept. It might end up being less because empty cells / genes are removed.
default: 500
Feature summary
Add a "warning" when a argument is called with nextflow if that argument is not defined in the config.
Feature description
in the nextflow workflow config file the following arg is defined:
running the nextflow workflow:
This should be flagged because
n_var
is not defined in the config file.Why is this feature beneficial?
It would help detect typos when providing arguments when running a nextflow workflow.
Alternatives considered
No response
Possible solution
No response
Confirmation