And grep the rev comp
• 0 views
•
link
I have a unique chimera RNA nucleotide sequence. Is there a script I can use to to search my RNA seq bam files for that specific nucleotide motif.
If you just want the reads containing the specific sequence, you could use grep;
$ samtools view in.bam | grep 'your sequence' > out.sam
Log in to answer this question.