Good morning,
Could you please advise how to generate multiqc
report without merging R1 and R2 pair-end files?
My files look like H_SAMPLE2_S29.trim_fin.R1_fastqc.zip
,
H_SAMPLE2_S29.trim_fin.R2_fastqc.zip
. Multiqc generates H_SAMPLE2_S29
stats in the report. But I expect to have stats for R1 and R2 separately.
v1.12 and v1.14 versions give the same result. I have tried --file-list
, but it didn't help. I also tried to rename zips, but, as I understand it, renaming the contents of the files in zips is required. Maybe there is an easy way to set a specific multiqc
flag? --fn_as_s_name
doesn't lead to the desired result.
Thank you in advance!
Best regards,
Poecile
Hi Poecile,
Isn't that what multiqc is supposed to do? Maybe you should run fastQC to get separate results.
SushiRoll,
Thanks for the answer!
I use
multiqc
to combine the results obtained byfastqc
(yes,fastqc
reports folder contains reports for R1 and R2 separately:H_SAMPLE2.trim_fin.R1_fastqc.zip
,H_SAMPLE2.trim_fin.R2_fastqc.zip
).multiqc
generates the report with tables and graphs in which the individual units are rows likeH_SAMPLE1, H_SAMPLE2
. For example, %GC forH_SAMPLE1
, %GC forH_SAMPLE2
. I would like to see %GC separately forH_SAMPLE 1.R1
andH_SAMPLE1.R1
,H_SAMPLE2.R1
andH_SAMPLE2.R2
in the final table. Butmultiqc
automatically combines paired samples.