1GO::Utils::General(3) User Contributed Perl DocumentationGO::Utils::General(3)
2
3
4

NAME

6       GO::Utils::General - provides some general utilities for clients of
7       other GO classes
8

SYNOPSIS

10         use GO::Utils::General qw (CategorizeGenes);
11
12         CategorizeGenes(annotation  => $annotation,
13                         genes       => \@genes,
14                         ambiguous   => \@ambiguous,
15                         unambiguous => \@unambiguous,
16                         notFound    => \@notFound);
17
18   CategorizeGenes
19       CategorizeGenes categorizes a set of genes into three categories,
20       whether they are ambiguous, whether they are not found, or whether they
21       are unambiguous.  The category to which they belong is determined by
22       using an annotation provider.
23
24       Usage:
25
26         use GO::Utils::General qw (CategorizeGenes);
27
28         CategorizeGenes(annotation  => $annotation,
29                         genes       => \@genes,
30                         ambiguous   => \@ambiguous,
31                         unambiguous => \@unambiguous,
32                         notFound    => \@notFound);
33
34       All the above named arguments are required:
35
36       annotation : A GO::AnnotationProvider concrete subclass instance genes
37       : A reference to an array of gene names
38
39       The remaining arguments should be empty arrays, passed in by reference,
40       that will be populated by this function.
41
42
43
44perl v5.28.0                      2008-07-09             GO::Utils::General(3)
Impressum