OpenGenomeBrowser

The solution for organizing and analysing your microbes.

Key concepts

Documentation

A shortcut: opengenomebrowser-tools

The library opengenomebrowser-tools makes loading genome-associated files into the folder structure really simple.

For example, it only takes two commands to annotate an assembly using prokka and import it into the folder structure:

export FOLDER_STRUCTURE=/path/to/folder_structure

init_folder_structure  # requires the opengenomebrowser-tools python library

prokka \
  --strain STRAIN \ 
  --locustag STRAIN.1 \
  --genus Mycoplasma --species genitalium \
  --out /prokka/out/dir \
  assembly.fasta

import_genome --import_dir=/prokka/out/dir  # requires the opengenomebrowser-tools python library

Nevertheless, it is a good idea to have some idea of how OpenGenomeBrowser works.