-
Notifications
You must be signed in to change notification settings - Fork 6
Installation
Robert J. Gifford edited this page Jun 24, 2024
·
6 revisions
-
Download the DIGS tool
-
Install required software:
-
Set environment variables:
export DIGS_HOME=/path/to/digs export DIGS_GENOMES=/path/to/genomes
-
Install Perl DBI.pm module (if not already installed):
cpan install DBI
-
Create a MySQL user for DIGS::
CREATE USER 'digs_user'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'digs_user'@'localhost';