Skip to content
Snippets Groups Projects
Commit 2f22d315 authored by Monika Komorowska's avatar Monika Komorowska
Browse files

Updated store method to set stable id version to 1 if it's undefined.

parent c9e637c2
No related branches found
No related tags found
No related merge requests found
......@@ -341,7 +341,7 @@ sub store {
my $sth = $self->prepare( $statement );
$sth->bind_param(1,$exon->version,SQL_INTEGER);
$sth->bind_param(1,( $exon->version || 1 ),SQL_INTEGER);
$sth->bind_param(2,$exon->stable_id,SQL_VARCHAR);
$sth->bind_param(3,$exonId,SQL_INTEGER);
......
......@@ -1165,7 +1165,7 @@ sub store {
$sth = $self->prepare($statement);
$sth->bind_param( 1, $gene_dbID, SQL_INTEGER );
$sth->bind_param( 2, $gene->stable_id(), SQL_VARCHAR );
$sth->bind_param( 3, $gene->version(), SQL_INTEGER );
$sth->bind_param( 3, ($gene->version() || 1), SQL_INTEGER );
$sth->execute();
$sth->finish();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment