-
-
Save ypandit/2138268 to your computer and use it in GitHub Desktop.
Plack to run JBrowse locally
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## --- install plack | |
cpanm Plack | |
# -- save this file as jbrowse.plack | |
use Plack::App::Directory; | |
my $app = Plack::App::Directory->new({ root => '.'})->to_app; | |
$app; | |
## -- drop it at the top level of jbrowse folder | |
## -- start the server | |
plackup jbrowse.plack | |
## -- open your browser at localhost:5000 by default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment