The pipeline supports the following modes:
- GridSearch, where you can specify lists of parameters for each step to run the pipeline using all possible combinations.
- SingleImage to process a single image.
- MultiImage to process a folder of images.
To launch in the GridSearch mode, use the corresponding template grid_search_template.yaml
and type:
nextflow run grid_search.nf -profile conda -params-file templates/grid_search_template.yaml -entry Pipeline
To run in either SingleImage or MultiImage mode, choose the corresponding template (e.g. single_image.yaml
) and run:
nextflow run main.nf -profile conda -params-file templates/single_image.yaml -entry Pipeline