If I have a recipe file and would like to execute a specific set of steps from the recipe, with one qunex_container call, is this the correct way to do that?
qunex_container run_recipe \
--recipe_file="${STUDY_FOLDER}/processing/recipe.yaml" \
--recipe="ncanda_hcp" \
--bash_post="${BASH_POST}" \
--bind="${STUDY_FOLDER}:${STUDY_FOLDER}" \
--container="${QUNEX_CONTAINER}" \
--steps="hcp_pre_freesurfer, hcp_freesurfer, hcp_post_freesurfer"
When I tried that, it only ran the first step. In the QuNex documentation, I see that specifying the steps parameter βis an alternative to specifying the recipe file and a recipe name.β Does this mean if I specify both a recipe file and steps, the qunex command will be confused? Sorry if this is a very basic question!