Replies: 1 comment 11 replies
-
what is the error you see? Also, it is somewhat unusual to be "importing" the fa, fai, and bigwig
that behavior would be up to your particular build system how that is handled e.g. it would require an advanced "loader" system from webpack or similar, because by default you generally just import js files it does seem to be working for you with the fa and fai file (maybe because they are plaintext ?) but then it is failing on the bigwig, possibly because it is a binary format (just a guess...) in any case, it may be good to not rely on this ability to import random files: you may want to make these setup on a fileserver somewhere, and refer to them by URL (as it is done in the tutorial) |
Beta Was this translation helpful? Give feedback.
-
I was trying to visualize some data for phythopthora genomes using a react application. For that, I used the following two links as guide.
Codes are available at https://github.com/computational-genomics-lab/eumicrobe-db-client/blob/master/src/jbrowse/jbrowse.js
Somehow, here the bigwig track code is not running and giving error, I had to comment that section of the code to run the script. Here is that section of the code.
I also tried the add track option to show the same bigwig file but failed.
The code are temporarily hosted at http://97.107.139.167:3000/jbrowse/jbrowse
Any suggestion to fix the issue.
Beta Was this translation helpful? Give feedback.
All reactions