Dear all,
I want to align my ChIP-Seq samples but with two strategies:
- Align the
fastq.gz
files and remove the reads that match to more than one site - Align the
fastq.gz
files and, for those reads that are duplicated that match more than one site, assign a random site for them.
Can someone tell me hoe to do this?
As far as I know, I can use bowtie2
: For second situation (random assign multi-matching reads):
- Use the
-a
argument forbowtie2
to look for all the "best" sites for a read and selects the binding randomly from the "best" sites.
But I don't know how to perform the first situation (delete multi-matching reads).