NAME
Webservice::InterMine::Cookbook::List::Enrichment - List Enrichment
SYNOPSIS
use Webservice::InterMine;
my $service = Webservice::InterMine->get_service('www.flymine.org/query');
my $list = $service->list('PL classIII');
my $results = $list->enrichment(
widget => 'publication_enrichment',
population => 'my-custom-background',
maxp => 0.01
);
for (<$results>) {
printf "%s (%s) - %.3f\n", $_->{identifier}, $_->{description}, $_->{p-value};
}
DESCRIPTION
You can perfom enrichment calculations on lists that you have access to.