Conversion of VCF file to Vranges
I am using SomaticSignature Package for analysis of TCGA data. I have VCF file and need to convert it in vranges. How can I do this conversion.
• 3,253 views
•
link
1 answer
The following code should do it:
vcf <- readVcf(x, genome = genome)
vr <- as(vcf, "VRanges")
• 0 views
•
link
Log in to answer this question.