Skip Menu |

This queue is for tickets about the bioperl CPAN distribution.

Report information
The Basics
Id: 58492
Status: resolved
Priority: 0/
Queue: bioperl

People
Owner: Nobody in particular
Requestors: pysar7 [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.6.1
Fixed in: (no value)



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!";
On Thu Jun 17 12:40:43 2010, pysar wrote: Show quoted text
> 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!";
Fixed in main repo on github. Thanks!