More posts like this
-
Genome annotation: convert gtf to gff3 file
written by shinyjj •Hi Biostars, Are there tools to convert gtf file into gff3 file? To my knowledge, gff3 file has more information than the gtf file, so …
-
Plot read density across a normalized gene model for its each exon/intron length
written by kashiff007I know there are several tool which can plot ChIP-seq score based on annotation file (GTF/GFF3/BED), but Is there any standard tools in R/python which …
-
How to create custom gtf annotation file?
written by JohnHi I am using RSEM (with bowtie2) for alignment then gene count. Using Refseq Annotation (gff3), and genomic.fna reference Fasta file from NCBI. RSEM can …
-
reliability for the usage of merged GTF from tophat-cufflinks as an novel annotation?
written by Gabby •Hi! I want to study alternative splicing events between two different conditions using RNA-seq data of new paramecium strain [lets say "A"]. I want to …
-
Genomic feature graph
written by jb.sequence •Hello, I am rather new to bioinformatics (PhD student) and am stuck on a particular part of the pipeline my advisor and I are setting …
-
Get all intronic regions from a generic GTF file
written by alessandro.darmiento1991 •Hello, I have to make a Java program for a college course in which I have to find possible intron retention in a given sample. …
-
parsing through gtf file
written by a.rexI have the following gtf file layout, with the 'features' transcript (i.e. full length of the transcript) and the exons within that transcript. For example: …
-
C++ parse GTF file
written by scchess<p>I am looking for a library to parse a GTF file in C++. I'm using htslib for SAM/BAM, and it works well. However, I am …
-
Script for getting summary statistic of any genome using GTF or GFF3 ?
written by vahapelHi All, I am looking for a script for obtaining summary statistics such as; transcript number, base numbers, length, intron length etc., using GTF/GFF3 file(s) …
-
Easiest way to compute RNA-Seq mapping stats (exons, introns, intergenic)?
written by NickI posted this question a few days ago on [Seqanswers][1] but wasn't able to get an answer that solved my problem. Here is my use …
What kind of output do you exactly want ? A toy example could help too.
Have you searched Biostars, there are many intron related questions. However, calculating introns is not as straight forward as it might seem. You cannot just take the gaps between all annotated exons, because different introns can exist for different isoforms. If you oversimplify the task (1 transcript isoform per gene only, no overlapping genes) anyway you can get very close to a one liner in R/BioC using the IRanges, GRanges, and their interval arithmetics (e.g. gaps).