annotating a vcf file containing Structural Variants
1
0
Entering edit mode
Bogdan ▴ 670
@bogdan-2367
Last seen 6 months ago
Palo Alto, CA, USA

Dear all,

would welcome any suggestion regarding a  package I could use for annotating the structural variants (especially duplications, inversions, translocations). Many thanks,

 

-- bogdan

 

 

vcf • 1.3k views
ADD COMMENT
0
Entering edit mode

Can you be more specific about the type of data you have (e.g., have you already identified variant type?) and what annotations you're after?

Valerie

ADD REPLY
0
Entering edit mode
Bogdan ▴ 670
@bogdan-2367
Last seen 6 months ago
Palo Alto, CA, USA

HI Valerie,

 

thank you for your reply. Talking about the structural variants, in principle, I would like to do the following :

-- for inversions, duplications, deletions (and insertions) : to know the genes that are affected by these chromosomal alterations (and if the chromosomal alteration impacts on exons, introns, or intergenic regions), 

-- for translocations: to know the closest genes (or the closest exons) that are impacted by the translocation.

any suggestions are welcome. many thanks,

--~ bogdan

 

 

ADD COMMENT
0
Entering edit mode

With the genomic location of the variants, you can use VariantAnnotation::locateVariants() to get associated information out of a TxDb or any gene model you provide as a GRangesList. For example, from the ?locateVariants man page 'loc_all' is the GRanges output from a call to locateVariants(..., region=AllVariants()). It has the following metadata columns:

> names(mcols(loc_all))
[1] "LOCATION"  "LOCSTART"  "LOCEND"    "QUERYID"   "TXID"      "CDSID"    
[7] "GENEID"    "PRECEDEID" "FOLLOWID" 

This provides the gene the variant falls in (if any), the closest preceding and following genes, the transcript etc. Not sure if that helps you. Maybe others will jump in with their suggestions.

Valerie

 

ADD REPLY
0
Entering edit mode

Thanks Valerie !

ADD REPLY

Login before adding your answer.

Traffic: 670 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