Bio::DOOP::Util::Filt - filter a cluster list.
Version 0.2
use Bio::DOOP::DOOP;
@list = ("81001020","81001110","81001200","80100006");
$db = Bio::DOOP::DBSQL->connect("username","passwd","doop-chordate-1_4","localhost");
$filt = Bio::DOOP::Util::Filt->new_by_list($db,\@list,500);
@res = @{$filt->filt_by_goid("0046872")};
for(@res){
print $_->get_cluster_id,"\n";
}
This object filters a clusterlist. It is useful to find a smaller cluster set from a
large mofext or fuzznuc search result.
Tibor Nagy, Godollo, Hungary and Endre Sebestyen, Martonvasar, Hungary
Create new Filter object from Cluster object array.
Create new Filter class from cluster id array.
Create new Filter class from cluster primary id array.
@filtered = @{$filt->filt_by_goid("0006523")};
Filter the cluster list by GO id.