Closed hyunhwan-bcm closed 3 months ago
nextflow run . --help generated an error like this
nextflow run . --help
ERROR ~ Unknown config attribute `params.ref_dir` -- check config file: /Users/hyun-hwanjeong/Workspaces/AI_MARRVEL/nextflow.config -- Check '.nextflow.log' file for details
This was due to empty string/null variables being considered undeclared, so I put " " (string with single whitespace) to avoid the error.
" "
nextflow run . --help
generated an error like thisThis was due to empty string/null variables being considered undeclared, so I put
" "
(string with single whitespace) to avoid the error.