Skip to content
Snippets Groups Projects
README.md 1.07 KiB
Newer Older
Anthony Bretaudeau's avatar
Anthony Bretaudeau committed
# BIPAA theme for Tripal
Anthony Bretaudeau's avatar
Anthony Bretaudeau committed

Written for use with the ![the official tripal docker image](https://github.com/erasche/docker-tripal)

## Configuration

The theme can be configured using environment variables, which can be configured from the docker-compose.yml file.

```yaml
version: "2"
services:
  web:
    image: tripal:latest
    [...]
    environment:
Anthony Bretaudeau's avatar
Anthony Bretaudeau committed
      THEME_GIT_CLONE: "https://gitlab.inria.fr/abretaud/tripal_bipaa.git"
      THEME: "bipaa"
Anthony Bretaudeau's avatar
Anthony Bretaudeau committed
      SITE_NAME: "Spodoptera frugiperda" # Set this to the name of the species
      ENABLE_BLAST: 1 # 1 to add links to blast form, 0 to disable it
      ENABLE_JBROWSE: 1 # 1 to add links to jbrowse, 0 to disable it
      ENABLE_APOLLO: 1 # 1 to add links to apollo, 0 to disable it
      JBROWSE_LINKS: "SFRU_RICE>rice" # correspondance between contig name prefix and jbrowse dataset id, example: "SFRU_RICE>rice_1;SFRU_CORN>corn_2"
      # By default APOLLO_LINKS == JBROWSE_LINKS
      APOLLO_LINKS: "SFRU_RICE>rice" # correspondance between contig name prefix and apollo dataset id, example: "SFRU_RICE>rice_1;SFRU_CORN>corn_2"
    [...]
```