More posts like this
-
Sheep reference genome remapping coordinates
written by valentinatsar •Hi everyone, The latest sheep genome assemblies (Ramb_v1.0, Ramb_v2.0) are not available at liftover (https://genome.ucsc.edu/cgi-bin/hgLiftOver) while the NCBI Remap tool has been unfortunately retired. Do …
-
Convert variant coordinates from one genome build to the other
written by Gene_MMP8I have a list of variants (Chromosome/Position/Ref/Alt) based on the GrCh38 build of the human genome. To reproduce the results from a paper, I have …
-
Ideas on how to evaluate genomic coordinates remapping tools?
written by juliette •Hi, I know about the various remapping tools that allow you to remap features and coordinates from one genome assembly to another. I was wondering …
-
protein domain start-stop codons database
written by cocchi.e89I'm working on some variations (exome, human) and I got their domain feature with VEP. e.g. of a result: `Pfam_domain:PF01762&hmmpanther:PTHR11214&hmmpanther:PTHR11214:SF28&Low_complexity_(Seg):seg` I need to get back …
-
GO terms from keywords in R
written by kakukeshiHi, I'm looking for a way to retrieve go terms programmatically in R using a set of keywords. Any ideas? Thanks
-
Get aminoacid sequence and position from genomic coordinates
written by joangibert14 •Hi! I have some coordinates bellow a given coverage from DNA seq experiments. Something like : chr2 212578373 212578415 I would like to obtain the …
-
Visualize a genome
written by ahmad •Hi, I have a set of genomic coordinates (e.g., gene identifier, start position, end position). For each gene identifier, I have quantitative values which describe …
-
Get The Dna Sequence From The Human Genome
written by ftp<p>I have hundreds of genomic coordinates that I want to retrieve their dna sequences in the human genome. e.g. chr1 11355 11391 +</p> <p>Is there …
-
Converting Coordinates Of Peak File From Hg18 To Hg19
written by DataminerHi! I have a peak file generated using MACS and human genome18, what I want is to convert/update the coordinates of this file to human …
-
Annotation Of Affymetrix Human Exon St. 1.0 In R
written by Paul<p>Hi I'm wondering how I can convert my Affymetrix exon array metaprobeset IDs to Entrez gene Ids. I've tried using DAVID gene ID conversion but …
Maybe I should do a preliminary step to find from circRNA to transcript and then from transcript to gene SYMBOL? Something like that?
If you can go from circRNA to transcript (I am sure there will be a way to do this, I am unaware of this though), then you could use the REST-API of Ensembl to get the transcript specific coordinates. For example for the transcript - ENST00000496384, you could do something like this (code copied from Ensembl REST-API page):
The "target URL" looks something like this - https://rest.ensembl.org/lookup/id/ENST00000496384?expand=1;content-type=application/json. For multiple transcripts, you could consider using POST method instead of GET (refer to the code) - https://grch37.rest.ensembl.org/documentation/info/lookup_post - here you can ask for information on multiple ids in a single request.