Annotate VCF variants with coding changes
Examples
if (interactive()) {
vcf = system.file("my_variants.vcf", package="pepitope")
vr = readVcfAsVRanges(vcf)
txdb = AnnotationHub::AnnotationHub()[["AH100643"]]
asm = BSgenome.Hsapiens.NCBI.GRCh38::BSgenome.Hsapiens.NCBI.GRCh38
annotate_coding(vr, txdb, asm)
}