LOAD2DB(1) | LOAD2DB(1) |
load2db - load genome sequences and extrinsic evidence hints into a MySQL database
load2db [OPTIONS] --species=SPECIES --dbaccess=dbname,host,user,passwd inputfilename
load2db is a tool to load genome sequences and extrinsic
evidence hints into a MySQL database.
This database must be created before calling load2db.
When storing genomes/hints of multiple organisms call this program repeatedly
for each one.
inputfilename refers to a genome file in FASTA format or a hints file in GFF format.
-s, --species=SPECIES
-d, --dbaccess=dbname,host,user,passwd
-c, --chunksize=size (⇐ 1000000)
-h, --help
create database before calling load2db: $ mysql -u root -p > CREATE DATABASE vertebrates; > CREATE USER 'myuser'@'%' IDENTIFIED BY 'mypasswd'; /* or whatever the password code is*/ > GRANT ALL ON vertebrates.* TO 'myuser'@'%' IDENTIFIED BY 'mypasswd'; load2db --species=mouse --dbaccess=vertebrates,localhost,myuser,mypasswd mouse.fa load2db --species=mouse --dbaccess=vertebrates,localhost,myuser,mypasswd mouse.hints.gff load2db --species=human --dbaccess=vertebrates,localhost,myuser,mypasswd human.fa load2db --species=human --dbaccess=vertebrates,localhost,myuser,mypasswd human.hints.gff
AUGUSTUS was written by M. Stanke, O. Keller, S. König, L. Gerischer and L. Romoth.