It is weird there are no reads less than 100 bp in qualimap.
2
0
Entering edit mode
22 months ago
Dan ▴ 180

For ATAC-seq, I trimmed the reads using

trim_galore --illumina --paired --fastqc \ 
fastq/${FILE}/*R1_001.fastq.gz fastq/${FILE}/*R2_001.fastq.gz \
-o trim/${FILE}

When I run Bowtie2 using

bowtie2 --local --very-sensitive-local --no-mixed --no-discordant \
-x Bowtie2_index/mm10/mm10 \
-1 trim/${FILE}/*val_1.fq.gz \
-2 trim/${FILE}/*val_2.fq.gz \
| samtools view -Sb | samtools sort > Bowtie2_output/${FILE}_sort.bam

and qualimap qualimap bamqc -bam, It is weird there are no reads less than 100 bp. There should be less than 100 bp reads I think. Can anyone tell me what is wrong?

Thanks a lot.

enter image description here

qualimap • 671 views
ADD COMMENT
2
Entering edit mode
22 months ago
Dan ▴ 180

I tried bamsormadup combined with bowtie2

bowtie2 --local --very-sensitive-local --no-mixed --no-discordant -p 24 \
-x /lila/data/chen/dan/Bowtie2_index/mm10/mm10 \
-1 trim/${FILE}/*val_1.fq.gz \
-2 trim/${FILE}/*val_2.fq.gz \
| bamsormadup inputformat=sam threads=24 SO=coordinate outputformat=bam \
indexfilename=bam/${FILE}"_mm10.bam.bai" > bam/${FILE}"_mm10.bam"

Now the reads length are correct enter image description here

ADD COMMENT
0
Entering edit mode
22 months ago
Trivas ★ 1.7k

This sounds like a problem with TrimGalore. The default functionality is to remove reads or read pairs where the length of the sequence after trimming is 20 nt or shorter. Try adding --length 0 to turn this feature off and see if that corrects anything.

ADD COMMENT

Login before adding your answer.

Traffic: 2407 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6