From b6ea6dcf113625c8001756b372fdacc71959f696 Mon Sep 17 00:00:00 2001 From: Emmanuel Mongin <mongin@sanger.ac.uk> Date: Wed, 10 Oct 2001 12:47:40 +0000 Subject: [PATCH] Went back to the previous version --- modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm index c2b8658b31..d55f07ec2c 100644 --- a/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm +++ b/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm @@ -379,9 +379,9 @@ sub store { my $sth = $self->prepare(" INSERT INTO supporting_feature( - exon_id,seq_start,seq_end,score, + exon_id,contig_id,seq_start,seq_end,score, strand,analysis,name,hstart,hend,hid,hstrand) - VALUES(?,?,?,?,?,?,?,?,?,?,?) + VALUES(?,?,?,?,?,?,?,?,?,?,?,?) "); @@ -409,6 +409,7 @@ sub store { if ($f->isa("Bio::EnsEMBL::FeaturePair")) { $sth->execute($exon->dbID(), + $f->seqname, $f->start, $f->end, $f->score, -- GitLab