Group Genes by Protein Coding/Non-coding feature
Hi,
I have converted human ENSEMBL gene ids to GENE SYMBOL using AnnotationDbi package. So, I have a list of genes names like "TSPAN6","PDE11A". Is there any tool to group genes by protein coding and non-coding features? It could be a more detailed grouping also, but this broad grouping would also work for me.
Thanks in advance.
• 2,441 views
•
link
1 answer
extract only geneID and gene symbol from GTF file
For the above example, 4th column consists of gene_type (gene_class). You can use this information to group your list.
• 0 views
•
link
Log in to answer this question.
Get Ensembl GTF file for human here. Uncompress using
gunzip.Protein coding genes:
You can look at
gene_biotypefield and create other groups.Thanks for the awk pipes! But I don't look for something like extracting information from GTF. I assumed there is already a tool which gives out the gene feature in gene_biotype given the gene symbol.
You could use Ensembl BioMart to get that information then.
please post example input, expected output and tried code (if there is any).