findings start and stop position of a intron
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Finding mutational burden in TCGA dataset
written by Jamie Watson •I have list of SNVs in TCGA dataset and I want to find mutation burden in TCGA dataset mapped to 5'UTR. So for each SNV/variant …
-
Panther Database: how to find start and end position of a Panther ID?
written by Chat-ra •Hello everyone! I’ve downloaded a file from the Ensembl Biomart here : https://www.ensembl.org/biomart/martview/4cab87e631cda01b9def14f09cc2021f The chosen database is: “Ensembl Genes 95” and the chosen dataset is …
-
Affymetrix Human Genome U133 Plus 2.0 Array - probe annotation with biomaRt
written by sujasubramanianHello , I am using *biomaRt* package for getting geneid, chromosome_name ..etc getBM(attributes = c('affy_hg_u133_plus_2','hgnc_symbol','chromosome_name','start_position','end_position','band'), filters = 'affy_hg_u133_plus_2', values = (affyids), mart=ensembl) but the start_position …
-
gene involved in cancer onset to progression
written by rajeshi want the coordinate of gene(start and stop, including promoter and enahncer region) which are linked to human cancer. can anybody suggest me that where …
-
adding SNP proxies to a plink dataset
written by avariI have run a SNP pathway analysis on one dataset (dataset A) and now I want to test if the significant pathway I have replicates …
-
extracting protein coding genes from NCBI seq_gene.md file
written by avariHi all, I want to extract a list of protein coding genes from the seq_gene.md file. ftp://ftp.ncbi.nlm.nih.gov/genomes/Homo_sapiens/ARCHIVE/BUILD.37.1/mapview/seq_gene.md.gz I have already selected all rows where the …
-
PLINK and 1000 Genome browser
written by 786I''m naive in **PLINK** and want to **search 1000 Genome Browser through PLINK to obtain snps** related to my Genes. I have a file having …
-
Non-synonomous mutations fall on CDS and (Intron/UTR) due to alternative transcripts of same gene
written by Chirag NepalHi there, Some of the annotated non synonymous SNPs (from annovar or polyphen), fall on both intron/CDS. This is possible due to alternative splicing of …
-
How to compare two genomes at nucleotide level
written by ujwalachowdary91 •Hello, I just started to learn Biopython. Please help me with this. Compare both genomes NC_019495.1 and NC_019491.1 on a nucleotide level. For that purpose …
-
Question On The Construction Of Gene Coexpression Networks
written by avari<p>Hi all, </p> <p>Firstly, I am a total newbie to this area so apologies if this is an obvious question. </p> <p>I want to look …
I would do following
bedtools intersectfunction on these two BED files to find out SNPs falling in intronic regions.Thanks for the instructions, that seems useful but a little complicated! I'm afraid I don’t have a bioinformatics background so I am unfamiliar with some of these tools. I take it there is no quick and dirty way of searching for this in some database? Just looking for the start/stop base pair positions.
My suggestion would be to get familiar with these tools & UNIX environment. I can't say its not possible to do these tasks without learning those tools (Though I'm a bit biased to the end of 'not possible'), it would be much more easy to do such things if you are familiar.
And take a look at this link: How do I get the position of a SNP when it is located in an intron?. It may help but I am not sure whether its a perfect solution.
If you have the SNP coordinates and the alleles e.g. 15 2233 2233 A/G (ref/alt), you can use the Variant Effect Predictor to find out where your SNPs map to (intronic regions or not) and what is their effect on proteins, transcripts, regulatory elements, etc. If your species is not in Ensembl, you could go about building a cache from GTF or GFF file..
Thanks, that might work actually as I can extract all the SNPs for the gene in Plink first and then feed them in. Will give it a try. I am specifically interested in the third intron, so hopefully the intron number is specified.
You can do this without programming using UCSC Genome Browser. Navigate to the region of interest (your intron). Then go to Tools > Table Browser. Under "region", select "position" to limit yourself to that region. Under "group" and "track", select the appropriate SNP track.
Thanks, that sounds useful too!