Annovar annotation with refGene Database How to Dismiss Exon number and Gene Symbol from AAchange Column?
0
0
Entering edit mode
6.2 years ago
mhmtgenc85 ▴ 50

Dear all,

I use annovar annotation with refGene database as gene annotation. In the output column AAchange the format is like this;

GeneSymbol:Transcript:ExonNo:baseChange:AAchange

But I would like this not to include Gene Symbol and Exon No. So is there a way to manipulate this column of the annotation?

Thanks in advance.

annovar refGene database Variant calling AAchange • 2.3k views
ADD COMMENT
1
Entering edit mode

Hi, if you can use bash and awk and your output is always delimiter by ":" and have same position, you can use one-liner like this: echo "GeneSymbol:Transcript:ExonNo:baseChange:AAchange" | awk '{split($1,arr1,":"); print arr1[2]":"arr1[4]":"arr1[5]}'

ADD REPLY
0
Entering edit mode

Hi, does it work for you? Can I change my comment to an answer?

ADD REPLY

Login before adding your answer.

Traffic: 1988 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6