You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Author Name: Nikolay empty (Nikolay empty)
Original Redmine Issue: 1528, https://redmine.open-bio.org/issues/1528
Original Date: 2003-09-26
Original Assignee: Bioperl Guts
Hi I have been using biosql with mysql database for analyzing genetic material.
You have included the script that gets data into the database called
load_seqdatabase.pl. However, the main problem is that there doesn’t seem to
exist a safe way of REMOVING sequences from this database. Can you write a
script that cleanly removes biosequence and information about it based on
Accession Number, or simply bioentry_id. Such script would allow a greater
control and order of the database.
Of course the easiest solution is not to add those unwanted sequences in the
first place, and that’s what I’ve been doing. However, proves to be extrememly
inconvenient.
Thanx
Nikolay
The text was updated successfully, but these errors were encountered:
# delete seq and namespace
ok ($pseq->remove(), 1);
my $ns = Bio::DB::Persistent::BioNamespace->new(-identifiable => $pseq);
ok $ns = $db->get_object_adaptor($ns)->find_by_unique_key($ns);
ok $ns->primary_key();
ok ($ns->remove(), 1);
Author Name: Nikolay empty (Nikolay empty)
Original Redmine Issue: 1528, https://redmine.open-bio.org/issues/1528
Original Date: 2003-09-26
Original Assignee: Bioperl Guts
Hi I have been using biosql with mysql database for analyzing genetic material.
You have included the script that gets data into the database called
load_seqdatabase.pl. However, the main problem is that there doesn’t seem to
exist a safe way of REMOVING sequences from this database. Can you write a
script that cleanly removes biosequence and information about it based on
Accession Number, or simply bioentry_id. Such script would allow a greater
control and order of the database.
Of course the easiest solution is not to add those unwanted sequences in the
first place, and that’s what I’ve been doing. However, proves to be extrememly
inconvenient.
Thanx
Nikolay
The text was updated successfully, but these errors were encountered: