Phil Ewels,
Thank you so much for your help!
It was too long for me to rerun fastqc due to the large number of samples, so, I renamed all archives and then their contents:
unzip SAMPLE11_R1_001_trim_fin_fastqc.zip && cd SAMPLE11.trim_fin.R1_fastqc && sed -i 's/\.trim_fin\.R1\.fastq\.gz/_R1_001_trim_fin_fastqc\.gz/' summary.txt && sed -i 's/\.trim_fin\.R1\.fastq\.gz/_R1_001_trim_fin_fastqc\.gz/' fastqc_data.txt && sed -i 's/\.trim_fin\.R1\.fastq\.gz/_R1_001_trim_fin_fastqc\.gz/' fastqc_report.html && cd .. && rm SAMPLE11_R1_001_trim_fin_fastqc.zip && zip -r SAMPLE11_R1_001_trim_fin_fastqc.zip SAMPLE11.trim_fin.R1_fastqc && rm -r SAMPLE11.trim_fin.R1_fastqc
(and similarly for other files)
Indeed, multiqc separated paired samples.
But, of course, it's not very convenient) So I have tried using the flag --fullnames, and it works!
Thanks again!
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
multiqcto combine the results obtained byfastqc(yes,fastqcreports folder contains reports for R1 and R2 separately:H_SAMPLE2.trim_fin.R1_fastqc.zip,H_SAMPLE2.trim_fin.R2_fastqc.zip).multiqcgenerates 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.R1andH_SAMPLE1.R1,H_SAMPLE2.R1andH_SAMPLE2.R2in the final table. Butmultiqcautomatically combines paired samples.