PHPackages                             tripal/tripal\_jbrowse - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. tripal/tripal\_jbrowse

ActiveDrupal-module

tripal/tripal\_jbrowse
======================

A module to integrate JBrowse instances into Tripal 4 pages.

4.x-dev(2y ago)964[10 issues](https://github.com/tripal/tripal_jbrowse/issues)GPL-2.0-or-laterPHPPHP ^8.1CI failing

Since Jan 27Pushed 2y ago7 watchersCompare

[ Source](https://github.com/tripal/tripal_jbrowse)[ Packagist](https://packagist.org/packages/tripal/tripal_jbrowse)[ Docs](https://github.com/tripal/tripal_jbrowse/tree/4.x)[ RSS](/packages/tripal-tripal-jbrowse/feed)WikiDiscussions 4.x Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

[![PHPUnit](https://github.com/tripal/tripal_jbrowse/workflows/PHPUnit/badge.svg)](https://github.com/tripal/tripal_jbrowse/workflows/PHPUnit/badge.svg)[![GitHub release (latest by date)](https://camo.githubusercontent.com/d0f771865e570a23603b76e05f7c97fb0bd7c110782356d9abbfe68a6ce4efb7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f74726970616c2f74726970616c5f6a62726f777365)](https://camo.githubusercontent.com/d0f771865e570a23603b76e05f7c97fb0bd7c110782356d9abbfe68a6ce4efb7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f74726970616c2f74726970616c5f6a62726f777365)

[![DOI](https://camo.githubusercontent.com/f4298c982ea6180ccd06a5c78255079f1a5910c77081a536e1227e4a5076793d/68747470733a2f2f7a656e6f646f2e6f72672f62616467652f34343430353639332e737667)](https://zenodo.org/badge/latestdoi/44405693)

Tripal JBrowse Integration
==========================

[](#tripal-jbrowse-integration)

This package of modules integrates [GMOD JBrowse](https://jbrowse.org/) into your [Tripal](http://tripal.info/) site providing

- Tripal page integration via **Tripal JBrowse Page** and
- *Coming soon*: a user interface for JBrowse instance creation and management via **Tripal JBrowse Management**.

This powerful combination allows you to provide seamless genome browsing to your users in an administrator-friendly manner.

Installation Instructions
-------------------------

[](#installation-instructions)

### Quickstart using Docker

[](#quickstart-using-docker)

If you do not yet have a Tripal 4 site and want to try out our module, you can use the [Tripal Docker](https://tripaldoc.readthedocs.io/en/latest/install/docker.html). By using the `Dockerfile` within this repository, you will simulate a Tripal 4 website with Tripal JBrowse already enabled. All you need to have installed on your local machine is [Docker or Docker Desktop](https://docs.docker.com/get-docker)!

1. Clone this repository and cd into it

```
git clone https://github.com/tripal/tripal_jbrowse.git
cd tripal_jbrowse

```

2. Build the docker image (this may take a few minutes)

```
docker build . --tag=tripal_jbrowse:latest

```

3. Run the docker container off the image you just built. This run command maps your current directory (ie. this repository) into the container so it will be possible to edit the repository locally (this is particularly useful if you want to help contribute to this module!). You can also change port 80 to another port if you need (ex: 9000:80).

```
docker run -dit --name=tripaljbrowse --publish=80:80 --volume=`pwd`:/var/www/drupal/web/modules/contrib/tripal_jbrowse tripal_jbrowse:latest

```

4. Restart your docker container's postgresql database

```
docker exec tripaljbrowse service postgresql restart

```

5. Now you can navigate to  to see your Tripal JBrowse docker up and running! NOTE: If you changed the port number in step 3, you will navigate to localhost:&lt;port #&gt; instead (ex: ).

From here, if you'd like to follow a tutorial on how to embed an example JBrowse, follow the instructions here: [Tutorial.md](Tutorial/Tutorial.md)

If you'd like to contribute to the module's development, refer to the [contribute section below](README.md#to-contribute-to-development-using-the-tripal_jbrowse-docker).

### If you have an existing Tripal 4 site

[](#if-you-have-an-existing-tripal-4-site)

Navigate to your site’s base directory (this is called “drupal” in the Tripal Docker – you'll want to use `cd ../` to get there after you first enter the docker via command line). Then run: `composer require tripal/tripal_jbrowse`

You can now enable the module by navigating to **Administration » Manage » Extend** and scrolling down to the “Tripal JBrowse” heading. Click the checkbox next to “Tripal JBrowse” (ignore Tripal JBrowse Management for now), scroll all the way down and click “Install”.

Congratulations, you’ve now installed Tripal JBrowse!

At present, you do not need to install JBrowse2 on the same machine that your Tripal 4 site is located. Instead, a URL to an external configuration file is used by the module to embed that instance. There are current plans to accomodate access to locally hosted JBrowse2 instances, as was done in version 7.x-3.x of this module.

Listing and Creating Instances
------------------------------

[](#listing-and-creating-instances)

To list all instances, visit **Administration » Tripal » Content » JBrowse Instances**

An alternative way to get there is **Administration » Manage » Content » JBrowse Instances**

You can create a new JBrowse instance from this page (using the “+ Add jbrowse instance” button). Note that your Tripal site will need to have an organism and genome assembly already created in order to associate it with your JBrowse instance. (Both of these can be created through **Administration » Manage » Content » Tripal Content** and clicking on **+ Add Tripal Content**)

Editing or Deleting an Instance
-------------------------------

[](#editing-or-deleting-an-instance)

On the JBrowse Instances listing, you can edit or delete an existing JBrowse instance by selecting “Edit” or “Delete”, respectively, in the dropdown menu under “Operations”.

You can also perform these operations from the Instance page itself, by selecting the Edit or Delete tab located next to the View tab at the top of the page.

To contribute to development using the tripal\_jbrowse docker
-------------------------------------------------------------

[](#to-contribute-to-development-using-the-tripal_jbrowse-docker)

Refer to the steps above in `Quickstart using Docker` to setup a docker container for development. Refer to the [Tripal Docker Documentation](https://tripaldoc.readthedocs.io/en/latest/install/docker.html) for information on how to log in and administer the site, as well as any troubleshooting.

This setup enables you to open the repository files locally in your favourite editor and any changes should show up in . You can also setup a new docker container at any time with existing code changes to your repository (useful if you need to quickly reset any configuration changes or content added to your Tripal 4 site within the docker).

If you have trouble seeing changes you've made to the code, try running a cache rebuild on the site:

```
docker exec tripaljbrowse drush cr

```

License &amp; Acknowledgements
------------------------------

[](#license--acknowledgements)

This module is open-source and licensed under GPLv3. [Read full license](LICENSE.txt).

**4.x Authors:**

- Carolyn Caron (@carolyncaron)
- Lacey-Anne Sanderson (@laceysanderson)

**7.x-3.x Authors:**

- Lacey-Anne Sanderson (@laceysanderson)
- Abdullah Almsaeed (@almasaeed2010)
- Joe West (@jwest60)
- Other contributors ([https://github.com/tripal/tripal\_jbrowse/graphs/contributors](https://github.com/tripal/tripal_jbrowse/graphs/contributors))

*Copyright 2018 University of Saskatchewan and University of Tennessee Knoxville.*

**Citation:**

Lacey-Anne Sanderson, Abdullah Almsaeed, Joe West, &amp; Yichao Shen. (2019). tripal/tripal\_jbrowse: Tripal JBrowse 3.0 (Version 7.x-3.0). Zenodo. .

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

752d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/95e4d72ce1944624c878adfd8bcb8d6d4aca53afb2fe646e346c11ff3941f623?d=identicon)[tripalproject](/maintainers/tripalproject)

---

Top Contributors

[![carolyncaron](https://avatars.githubusercontent.com/u/7927760?v=4)](https://github.com/carolyncaron "carolyncaron (38 commits)")[![laceysanderson](https://avatars.githubusercontent.com/u/1566301?v=4)](https://github.com/laceysanderson "laceysanderson (2 commits)")

---

Tags

genomehacktoberfestintegrationjbrowsetripalvisualizationvisualizationtripalbiological-datajbrowsegenome browser

### Embed Badge

![Health badge](/badges/tripal-tripal-jbrowse/health.svg)

```
[![Health](https://phpackages.com/badges/tripal-tripal-jbrowse/health.svg)](https://phpackages.com/packages/tripal-tripal-jbrowse)
```

###  Alternatives

[mbostock/d3

A JavaScript visualization library for HTML and SVG.

112.7k434.7k3](/packages/mbostock-d3)[plotly/plotly.js

The open source javascript graphing library that powers plotly

18.2k176.0k2](/packages/plotly-plotlyjs)[tripal/tripal

Tripal is a toolkit to facilitate construction of online genomic, genetic (and other biological) websites.

709.9k9](/packages/tripal-tripal)[sjaakp/yii2-gcharts

Google Charts the Yii 2.0 way

2234.6k1](/packages/sjaakp-yii2-gcharts)[professional-wiki/network

MediaWiki extension for adding interactive network visualizations to your wiki pages

3211.9k](/packages/professional-wiki-network)[madmind/state-machine-visualization-bundle

Visualization bundle for winzou/state-machine-bundle

1156.6k](/packages/madmind-state-machine-visualization-bundle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
