Open akmg6 opened 4 years ago
Hi @akmg6,
I'm not personally familiar with the Chado command-line tools as I use the built-in Tripal Importers. However, based on your error messages, I would guess that the chado.cvterm table does not include the terms in the 3rd column of your GFF3.
Have you heard of Tripal? It's a great solution for creating a website associated with your chado database (see http://tripal.info/ and https://tripal.readthedocs.io). Regarding the Tripal Importers, there is a great tutorial for loading fasta and gff3 here: https://tripal.readthedocs.io/en/latest/user_guide/example_genomics/genomes_genes.html.
Hello @akmg6 ,
You can check the cvterm constraints here https://laceysanderson.github.io/chado-docs/tables/cvterm.html. That error means that there exist in the database that cvterm that you are trying to import from de Chado XML. What I do to solve this problem is to delete the existing cvterms from the database and then executing the stag-storenode.pl again. If your database is empty this won't corrupt the previous version of your database since the cvterm being inserted is the same as the previous. The only thing you have to matter of is to update all the cv_id references of the cvterm you are deleting to point to the new inserted one.
@akmg6 Did either of these suggestions help you?
Hi, Following the assembly of various genomes, now I have to propose dedicated visualization tools. I installed a Chado database, which is accessible with a dedicated user that I named Chado. I can connect to this database and view the tables and their contents. When installing Chado, I created my organism, which is present in the "organism" table. Now, I want to integrate the sequence of my genome (a fasta file with chromosomes) as well as the associated genes annotation (gff3 file). Whether it's for the refseq or the gff3, I'm having problems. Since I'm not yet familiar with how Chado works, I don't understand the errors I'm getting.
What i do with my fasta :
bp_genbank2gff3.pl sequences.genbank
https://raw.githubusercontent.com/GMOD/Chado/fix_shift_if_defined/chado/lib/Bio/GMOD/DB/Adapter.pm
gmod_bulk_load_gff3.pl --gfffile sequences.genbank.gff --organism "organism" --dbname chado
And I got the following error : MSG: no cvterm for region
For the genes annotation file (gff3), I followed the instructions and I got the error : MSG: no cvterm for gene
So, I followed instructions specified in the installation file that I did not do initially :
And I had some errors with stag_storenode.pl :
Could someone explain to me what I'm missing? What is the problem with these errors ?
Thank you very much. Best A.