Hi, I was looking the list but there was no response to my questions: How do I plot the exons of a specific transcript of my gene in question using Bioconductor Genographs package?
library(GenomeGraphs)
library(biomaRt)
mart <- useMart(biomart = "ensembl", dataset = "hsapiens_gene_ensembl")
#getting the gene
gene <- makeGene(id = "ENSG00000171988",type = "ensembl_gene_id", biomart = mart)
gdPlot(gene)
I know to plot the gene, but how can i do to plot an specific transcript, let's say ENST00000399262 in order to view the exons?
Thanks in advance
Can we also draw structure of novel transcripts using biomart by adding that information in it?