Hi there,
I'm sorry for the newbie question but I'm confusing and getting lost in my thoughts.
Having WES
data, until the moment I have been using DNASeq
aligner such as BWA MEM
. But I'm wondering whether it makes sense to use RNASeq
mapping algorithm (STAR
...) or not and why.
For other hand lets say that I want to consider the alignment of the reads against only the exons of some genes. How this would affect the aligner algorithm decision?
Thank you in advance,
Thank you for the answer, it is very clear now. Could you help me with my second question, about aligning against previously extracted exons?
If you only want to consider some genes in your alignment (I'm not sure why you'd do this), then when building your alignment index, you'd need to restrict the fasta file (using BWA-MEM as an example) to only those regions. So if you build your BWA index using the hg19 fasta file, you'd need to subset that fasta file to only the bases in genes x, y, and z, instead.
Overall though, you shouldn't really "cherry pick" loci to align against, you should be completely agnostic, and let the reads align where they align.