Skip to content
forked from GMOD/jbrowse

A modern genome browser built with JavaScript and HTML5.

License

Notifications You must be signed in to change notification settings

metalhelix/jbrowse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status

Installing JBrowse

Users of JBrowse should get it from the main JBrowse site at http://jbrowse.org/install where official releases are available.

Install from github repo (for developers)

The master branch is always in line with the latest release. Features are merged into the dev branch as they are completed.

jb_run.js is a built-in express server that serves JBrowse. However, any webserver like Apache or NGINX can be used.

If you are using a 3rd party webserver, you should clone JBrowse into your web root

git clone https://github.com/GMOD/jbrowse
cd jbrowse
npm install
npm run build
./setup.sh        # (recommended -- sets up demo files such as Volvox)a
utils/jb_run.js   # (optional -- begin serving JBrowse with built-in mini web server)

If you have installed the demo (with ./jb_setup.js), you can point your browser to http://localhost/jbrowse/index.html?data=sample_data/json/volvox and you should see the volvox example data.

jb_run.js will default to a non-privileged port (8080), this can be overridden with the -p option.

When you edit JavaScript files, you must re-run the webpack build with npm run build, or you can keep webpack running in "watch" mode by running it like npm run build -- -w

Installing as an npm module

This allows JBrowse to be easily integrated into other applications. jb_setup.js and jb_run.js are copied into the application root and can be used to install the demo files and serve JBrowse, respectively.

npm install GMOD/jbrowse

Generating Packaged Builds

You can also optionally run build steps to create the minimized codebase. Extra perl dependencies Text::Markdown and DateTime are required to run the build step.

make -f build/Makefile

To build the Electron app (JBrowse desktop app), run the following

npm install -g electron-packager
make -f build/Makefile release-electron-all

To run the Electron app in debug mode run the following

npm install -g electron
electron browser/main.js

Running the developer test suites

Server-side Perl

Tests for the server-side Perl code. You must have the JBrowse Perl module prerequisites installed for them to work. Run with:

prove -Isrc/perl5 -lr tests

Client-side Unit Tests

Point your browser at http://my.dev.machine/jbrowse/tests/js_tests/index.html

You can also run them from phantomJS using

phantomjs tests/js_tests/run-jasmine.js http://my.dev.machine/jbrowse/tests/js_tests/index.html

Client-side Integration Tests

Integration tests for the client-side app. You need to have Python eggs for selenium and nose installed. Run the tests with:

MOZ_HEADLESS=1 SELENIUM_BROWSER=firefox JBROWSE_URL='http://localhost/jbrowse/index.html' nosetests

Supported browsers are 'firefox', 'chrome', 'phantom', and 'travis_saucelabs'. The Sauce Labs + Travis one will only work in a properly configured Travis CI build environment.

Manual testing

Browserstack

JBrowse has a free open source account on Browserstack for manual testing. Contact @rbuels for access.

Making a JBrowse release

NOTE: Beginning in 1.12.4,

  1. Make a tag in the repository for the release, named, e.g. 1.6.3-release. This should cause Travis CI to create a release on GitHub under https://github.com/GMOD/jbrowse/releases

  2. Add release notes to the new GitHub release that Travis created. Can just paste these from release-notes.txt, which is in Markdown format.

  3. Write a blog post announcing the release, with links to the built releases on GitHub. The SHA1 sums of the built release files can be seen near the end of the Travis build log, and the HTML version of the release notes can be gotten by running make -f build/Makefile release-notes.html.

  4. Update the latest-release code checkout on the site, which the "Latest Release" demo on the jbrowse.org points to, to be an unzipped-and-set-up copy of the latest release.

  5. Write an email announcing the release, sending to gmod-ajax. If it is a major release, add gmod-announce and make a GMOD news item.

As you can tell, this process could really use some more streamlining and automation.

About

A modern genome browser built with JavaScript and HTML5.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 67.8%
  • Perl 26.7%
  • CSS 3.3%
  • Python 1.5%
  • Shell 0.4%
  • HTML 0.1%
  • Other 0.2%