galaxy-genome-annotation / docker-jbrowse

Docker image of JBrowse Genome Browser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JBrowse Docker Repository on Quay

Configurable docker image for GMOD's JBrowse.

http://jbrowse.org/

This docker image allows customisation of loaded data; by placing executable shell scripts in the mounted folder, you can easily load data on boot.

Supported tags and respective Dockerfile links

Example:

A docker-compose.yml file is provided for your convenience, allowing you to boot up the example quite quickly:

$ docker-compose up

Mount point

Data can be provided to the container via a mount:

$ docker run -v `pwd`/my-data/:/data/ quay.io/galaxy-genome-annotation/jbrowse

Startup Scripts

Running the default JBrowse instance is likely uninteresting, and you'd like to run it with your own data.

This is easy to do, just dump data in a folder and provide some .sh script(s) to load that data on boot. Here is an example of how the volvox data is loaded:

rm -rf $JBROWSE_DATA/json/yeast/;
bin/prepare-refseqs.pl \
    --fasta sample_data/raw/yeast_scaffolds/chr1.fa.gz \
    --fasta sample_data/raw/yeast_scaffolds/chr2.fa.gzip \
    --out $JBROWSE_DATA/json/yeast;

gunzip -c \
    $JBROWSE_DATA/yeast_scaffolds/chr1.fa.gz \
    $JBROWSE_DATA/raw/yeast_scaffolds/chr2.fa.gzip \
    > $JBROWSE_DATA/raw/yeast_chr1+2/yeast.fa;

bin/biodb-to-json.pl \
    --conf $JBROWSE_DATA/raw/yeast.json \
    --out $JBROWSE_DATA/json/yeast/;

bin/add-json.pl \
    '{ "dataset_id": "yeast" }' \
    $JBROWSE_DATA/json/yeast/trackList.json

bin/generate-names.pl --dir $JBROWSE_DATA/json/yeast/;

Environment Variables

There are a couple environment variables available to startup scripts:

Variable Value/Use
JBROWSE The location of the jbrowse installation, including the index.html
JBROWSE_DATA Location for the sample_data folder which contains publicised data
DATA_DIR Location of mounted data

Licence (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Docker image of JBrowse Genome Browser

License:MIT License


Languages

Language:Shell 59.4%Language:Dockerfile 40.6%