You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is producing this error when running with -profile test
Usage: multiqc [OPTIONS] <analysis directory>
Error: Invalid value for '<analysis directory>': Path 'test_results/initial_fastqc/' does not exist.
This is MultiQC v1.11
For more help, run 'multiqc --help' or visit http://multiqc.info
The issue is that test_results/initial_fastqc is not a valid path relative to the work directory (pwd) in which multiqc is being run.
To solve this issue, either need to provide the directory from a path channel, or could pass the files, use collect() operator, then stage them in a local sub-dir.
The text was updated successfully, but these errors were encountered:
This is the current code:
This is producing this error when running with -profile test
The issue is that
test_results/initial_fastqc
is not a valid path relative to the work directory (pwd) in which multiqc is being run.To solve this issue, either need to provide the directory from a path channel, or could pass the files, use collect() operator, then stage them in a local sub-dir.
The text was updated successfully, but these errors were encountered: