Note that genes have many transcripts, and while each transcript should have exactly one biotype, different transcripts for the same gene might very well have different biotypes.
How to view if a gene is protein-coding?
I have a list of genes, I'm not experience with bioinformatics tools so I'm look to see if all of these genes are protein coding or if they are of any other gene types - is there a tool where I am input a gene list to check this? My gene list is 200 genes of HGNC gene symbols.
• 2,822 views
•
link
2 answers
You can use biomaRt, and the gene_biotype attribute.
library("biomaRt")
mart <- useMart(biomart="ensembl", dataset="hsapiens_gene_ensembl")
myResult <- getBM(values = yourListofGenes, attributes = c("ensembl_gene_id", "gene_biotype"), mart=mart)
I am a bit rusty with biomaRt, but the syntax should be crrect.
• 0 views
•
link
• 0 views
•
link
biomaRt can give you all the transcripts. You need to play with the attributes values, and add the transcripts (ensemble_transcript_id not sure of the spelling). Have a look the listAttributes() and all the ?getBM options.
• 0 views
•
link
Log in to answer this question.