ask for a CWL script to perform FASTQC to get quality control files, then use the folder of having these quality control files as input for MultiQC
I am new to CWL, I am looking for a CWL script to perform FASTQC to get quality control files, then use the folder of these files as input for MultiQC program to get the summary files. Does anyone can help me on this?
Thank you
• 1,953 views
•
link
1 answer
# This step is necessary since the input files
# must be loaded into the working directory as there
# is no way to specify the input file directly on the
# command line.
Note that you can give specific file paths to MultiQC if you want to, it doesn't _have_ to be a directory. The following should work fine:
multiqc /path/to/sample_1_fastqc.zip /path/to/sample_2_fastqc.zip
If there are a large number of files, you can also use the --file-list option. See https://multiqc.info/docs/#choosing-where-to-scan
• 0 views
•
link
Log in to answer this question.
You should attempt this yourself and then show us what you tried.
The purpose of the forum is not to simply do people's work for them, or to give them code. If we just gave you a script, you wouldn't learn anything for yourself?
I tried the following code, and got some errors, so I need a working example to figure out what how to put 2 CommandLineTool tools together.
Thank you,