Entering edit mode
3.3 years ago
82101202089
▴
10
Recently, I needed to make a database --MySQL.
I need to import the FASTA file and annotation file for the reference genome into the database.
But I can't find a good way. I hope I can give you some suggestions. Thank you
what's your aim with such database ? because a simple
LOAD local DATA INFILE "the.gff" INTO TABLE gff COLUMNS TERMINATED BY '\t' IGNORE 1345 LINES
would work?