What is the best way to load gene annotations and make them searchable? #3875
-
Greetings, I cannot get searchable genes to work in JBrowse2 and am seeking recommendations. Here is what I've tried (in @jbrowse/cli/2.6.3 win32-x64 node-v16.16.0) OPTION 1 Loaded in a bed file with simple gene model:
OPTION 2 Tried to load Is there a best practice or working solution for getting in gene annotations and being able to search them? Appreciate any guidance or leads. Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
the best way is to use tabix indexed gff. we do not support text indexing from either gtf or bed files currently. one "easy-ish" way to convert gtf to gff is
after those steps, your instance should be text searchable using the little 'location box', you can enter gene names there see quickstart here for these steps outlined https://jbrowse.org/jb2/docs/quickstart_web/#adding-a-gff3-file-with-gff3tabix your post did make me reconsider the idea of loading BED and GTF better in JBrowse, and also we can work on removing that 512Mb limit...I had fixed removing that limit in another file type. it is somewhat of a warning to the user because it is trying to unpack a large amount of data in memory, but we should allow it still. the tabix indexed gff allows the program to only unpack small amounts of data at a time in memory which is nice, but it is a tricky process to prepare the tabix indexed gffs. |
Beta Was this translation helpful? Give feedback.
the best way is to use tabix indexed gff. we do not support text indexing from either gtf or bed files currently.
one "easy-ish" way to convert gtf to gff is
after those steps, your instance should be text searchable using the little 'locatio…