Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rather than passing multiqc a directory of fastqc reports, pass it a collection of files #17

Open
stenglein-lab opened this issue Mar 28, 2023 · 1 comment
Assignees

Comments

@stenglein-lab
Copy link
Owner

This is the current code:

multiqc -n "initial_qc_report.html" -m fastqc ${params.initial_fastqc_dir}

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.

@stenglein-lab stenglein-lab self-assigned this Mar 28, 2023
@stenglein-lab
Copy link
Owner Author

Implementing #18 will accomplish this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant