-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Good question. There are some current limits to opening large GFF (there is actually a limit of around ~512MB which we give an error for but apparently there is a separate other issue for bigger than 2GB) I would suggest making a tabix index for your GFF To do so, see https://jbrowse.org/jb2/docs/superquickstart_web/#loading-gff3 Basically
You can skip the part where you use yourfile.sorted.gff.gz and yourfile.sorted.gff.gz.tbi And you can open this up in the "Add track" workflow We may end up making a workflow inside jbrowse desktop to perform tabix indexing on the fly so that it is easier to open large files! Let me know if this helps |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
Good question. There are some current limits to opening large GFF (there is actually a limit of around ~512MB which we give an error for but apparently there is a separate other issue for bigger than 2GB)
I would suggest making a tabix index for your GFF
To do so, see https://jbrowse.org/jb2/docs/superquickstart_web/#loading-gff3
Basically
You can skip the part where you use
jbrowse add-track
if using the desktop version. This producesyourfile.sorted.gff.gz and yourfile.s…