Subject: | Synopsis of Bio::DB::SeqFeature::Store |
Synopsis of Bio::DB::SeqFeature::Store has the following piece of code.
# change the feature and update it
$f->start(100);
$db->update($f) or die "Couldn't update!";
The module doesn't have "update" function. Function "store" is used to
update features, i.e.
# change the feature and update it
$f->start(100);
$db->store($f) or die "Couldn't update!";