Entering edit mode
2.4 years 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.