Skip to content
Robert J. Gifford edited this page Jun 24, 2024 · 6 revisions

Steps

  1. Download the DIGS tool

  2. Install required software:

  3. Set environment variables:

    export DIGS_HOME=/path/to/digs
    export DIGS_GENOMES=/path/to/genomes
    
  4. Install Perl DBI.pm module (if not already installed):

    cpan install DBI
    
  5. Create a MySQL user for DIGS::

    CREATE USER 'digs_user'@'localhost' IDENTIFIED BY 'password';
    GRANT ALL PRIVILEGES ON *.* TO 'digs_user'@'localhost';