Hello,
- I have a list of SNP variations(
chr:pos:rsid if present:reference nucleotide:alternate nucleotide
) - I want to map these variations to their corresponding position on the protein like Variation chr1:1234 maps to Amino Acid 33 on protein XYZ
- Then output the protein sequence along with the mutated amino acid due to this variation.
- I initially assumed there might be many tools to do this but upon looking I haven't been able to find any. I could also create my own solution but I need to reliably know which position each variant maps to in the protein.
- I don't just have variants with known rsids, there are some variants which are novel.
Can anyone who has done something similar help me out on how to go about this?