Dear all,
Is it possible to run MultiQC for a few files in a folder and not all of them?
For example:
file1_fastqc.html
file1_fastqc.zip
file2_fastqc.html
file2_fastqc.zip
file3_fastqc.html
file3_fastqc.zip
file4_fastqc.html
file4_fastqc.zip
I want to run MultiQC only for 1 and 2 and then only for 3 and 4 without moving them from the folder
Any help is highly appreciated
I don't think you can do this looking at the in-line help for MultiQC (which you may have already seen). You can add more than one directory but not exclude files from one directory.
You can use
--ignore
and--ignore-samples
but yeah, I don't think that you can exclude from one search path but not another in the same run. I don't think anyone has ever asked to do this 😅I missed
--ignore-samples
. Thanks!Why not put the files you want to run it on in a separate (new) folder en run multiQC on that folder?
Or if you don't want to move them, you can softlink them to a new directory (
ln -s file1* ../run_1
)