Gene Length
Is there any efficient way to get the full gene length for my list of genes?
gene
length
• 1,490 views
•
link
updated
by
raphael.B •
•
written
by
phoenix.sum13 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Extracting most significant core enrichment genes after performing GSEA
written by biagio.dipietro •Dear all, I am trying to extract a list of the 10 most significant leading-edge/core enrichment genes after performing GSEA, and visualizing the gene sets …
-
Export list of full length DNA gene sequences
written by David •Hi all, I'm trying to export a list of genes of multiple species from genome browser using the table browser tool. I want to export …
-
Adding flanking regions to a gene for primer design
written by eli_bayat •Hi, I am designing primers for pcr using primer3. the amplicon range should be between 1kb-2kb, however some of my genes that I am designing …
-
How to get uniprot ID or protein length from Entrez gene id or gene name?
written by eranga114 •Hi, I have to calculate the protein length from a list of Entrez gene ids and gene names. I also need to get the uniprot …
-
Mapping gene list with chromosome location
written by imrankhanbioinfo •Hi there, Is there any way to map a list of genes with chromosome "start" and "end" intervals? My list of the gene is like …
-
Convertion from Uniprot ID to Gene Symbol does not work well.
written by entropyThis seems to be a basic process but somehow I could not find the best answer yet. I am trying to convert Uniprot IDs into …
-
How to get publications associated with list of genes
written by raya.girish •Hi , I have list of genes with information whether the genes is deleted or duplicated. I want to know is there any easiest way …
-
transcript assembly and full length
written by qudratHello folks! I have a transcript which is partial in length (obtained by TopHat/Cufflinks analysis) and I want to get its full length. Is there …
-
Ensembl ID gene length GC content
written by cwhitfield •<p>Hi - Is there a way to get a list of ensembl ID, gene length (transcript length) and GC content.</p> <p>Thanks</p>
-
Extract Human Gene Sequences Based On Kegg Gene Name
written by Dejian<p>Hi, I have a list of human gene names from KEGG database, for example, ALDOA, BHLHB3, PKM2, P4HA1, EPO. I can get a list of …
More info is required, what organism? do you have accession numbers?
For humans, I don't have accession numbers sorry. Any guidance will be really helpful. Thank you!
Hello! You can use the ucsc table browser.. If you want the whole gene length, introns included you can just download the knownGenes table from the GENCODE38 (for HG38) track and do an
awk '{print $18,$3-$2}' <gene file>. If you are only interested in coding regions you can take a look at the blockSizes column.