-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compared with Bowtie2. #130
Comments
It seems that you are mapping single-end bulk ATAC-seq data? Can you provide more details on your data? Why is it single-end ATAC-seq? And how long are the reads? |
@haowenz Thanks for your rapid reply even though it's still the New year holiday. |
I think usually people get paired-end reads for ATAC-seq. I recall Bowtie2 very sensitive mode just sample more seeds and maybe tolerate more errors in the reads, which makes it very slow. For 76bp reads, I doubt it would makes results much more accurate than its default mode and there might be false positive mappings. Finally, the number of mappings output by Chromap is 4441998 after filtering. This includes a filter to drop those mappings with low MAPQ. This number of is roughly on par with Bowtie2's number 4217340. |
Thanks for your great software, which is much more time-saving!
we used to use bowtie2. Comparing with it, the results are different between these 2 softwares. Much appreciated if you can help me with finding the cause.
the summary of bowtie2:
bowtie2 -x $BOWTIE2_INDEXES/$bowtie_index -p 8 --very-sensitive -U $t
the summary of chromap:
chromap --preset atac -x $chromap_index -r $genome -1 $t --SAM -o t_chromap.sam"
which showed that the reads aligned 0 times of chromap are much more than those of bowtie2, and reads aligned >1times are on the contrary.
I guess the cause is the parameter of bowtie2 which I set --very-sensitive.(the same as -D 20 -R 3 -N 0 -L 20 -i S,1,0.50)
So i want to turn to you for the parameters of chromap which can be set as the --very-sensitive.
And I wonder if there are any severe influence with the differences, or I can just ignored the differences to generate bigwig files.
Expect your reply!!
Happy Chinese New Year!
The text was updated successfully, but these errors were encountered: