-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re: Reading GTF file #3
Comments
Hi @mdhe1248, can you provide us with the file you are trying to read? This is a file format error thrown from the reader. This might mean several things, maybe something is not standard about the formatting of the file, or maybe there is a bug in the reader, or maybe the GFF3 grammer we use to generate the reader is too strict. |
Hi @benjward , GTF is a bit different from GFF3. That may be the reason why I get such errors above. Gencode combined manual annotations from HAVANA group and automatic annotations from Ensembl. https://en.wikipedia.org/wiki/GENCODE This is the result from
GTF is also widely used and is more close to GFF2. Maybe, it would be okay to make I downloaded Comprehensive gene annotation from https://www.gencodegenes.org/mouse_releases/current.html |
Hi @mdhe1248 I'm surprised that we don't already have a GTF parser! |
Oh, My PI must be there, probably talking about debugger. :) Thank you for your help. |
Is your PI Tim Holy? If you can I'd try to convert GTF to GFF3 if you use it with BioJulia, whilst a proper GFF2 parser is worked out. |
Maybe this could be useful : https://github.com/mmkim1210/GeneticsMakie.jl/blob/master/src/parsegtf.jl |
Background
I am trying to read/load a GTF file, so that I can compute coverage of my sequencing reads on each gene. However, I obtained errors during reading and couldn't access to my GTF file. How could I open a GTF file?
By the way, my GTF file was downloaded from Gencode and contains mouse genome annotations.
Current Behavior
I tried to read my gtf file, but I got an error message.
I tried
open
, and this time I didn't get any error message.Then, I executed
IntervalCollection
, but obtained an errorYour Environment
The text was updated successfully, but these errors were encountered: