Load RefSeq Into Chado

From GMOD
Revision as of 18:45, 11 March 2007 by Bosborne (Talk | contribs)

Jump to: navigation, search

Abstract

This HOWTO describes a method for loading the sequence data in Genbank RefSeq files into the Chado database.

Authors


Copyright

This document is copyright Scott Cain, 2007. For reproduction other than personal use please contact <cain@cshl.edu>


Revision History

Revision 1.0 2007-02-07 BIO First version


Download the Sequence Files

Download the Genbank genome record of interest. A good source for Genbank files is NCBI's FTP site (ftp://ftp.ncbi.nih.gov/genomes/), look for the *.gbk files, they will probably be compressed (*.gbk.gz).


Convert Genbank to GFF

Use the BioPerl script genbank2gff3.pl, found in scripts/Bio-DB-GFF/ within the BioPerl distribution. If you've actually installed BioPerl then the installed script will have been renamed bp_genbank2gff3.pl. Note that there's also an older genbank2gff.pl script, don't use it.

 >bp_genbank2gff3.pl <filename>

This will create a GFF version 3 file. It may give several warnings about unrecognized feature types. If the feature types are not part of SOFA, you will have to hand edit the resulting GFF file to change the feature type. Any skipped features will be printed at the end. If you want those to be part of the GFF file, you will have to add those manually as well, fixing any non-SOFA feature types.

Add an Entry for Your Organism

You will need to have an entry for your species in the Chado organism table. If you are unsure if this entry exists log into your database and execute this SQL command:

 select * from organism;

If you do not see your organism listed, execute a command equivalent to this: <sql>

 insert into organism (abbreviation, genus, species, common_name, organism_id)
               values ('H.sapiens', 'Homo', 'sapiens', 'Human', 9606);

</sql> Substitute in the appropriate values for your own organism.

Load the GFF

Run the load/bin/gmod_load_gff3.pl script from the GMOD distribution:

  >gmod_load_gff3.pl --organism <your org common name>  --srcdb DB:genbank --gfffile <your gfffile>

This will load your data into the Chado database. Note that if there are non-SOFA feature types remaining in the GFF file the load will fail when they are encountered. If that happens, edit the file to fix the incorrect term and load again. Only the previously unloaded data will load (i.e. you won't have duplicate rows).

More Information

Please send questions to the GMOD developers list:

gmod-devel@lists.sourceforge.net