Trees | Index | Help |
---|
Package Bio :: Package NeuralNetwork :: Package Gene :: Module Schema :: Class SchemaFactory |
|
Method Summary | |
---|---|
Initialize the SchemaFactory | |
Generate schema from a list of motifs. | |
from_signatures(self,
signature_repository,
num_ambiguous)
| |
Return the number of motif counts for the list of motifs. | |
Retrieve a unique schema from a motif. | |
Create a schema from a given starting motif. |
Method Details |
---|
__init__(self,
ambiguity_symbol='*')
|
from_motifs(self, motif_repository, motif_percent, num_ambiguous)Generate schema from a list of motifs. Arguments: o motif_repository - A MotifRepository class that has all of the motifs we want to convert to Schema. o motif_percent - The percentage of motifs in the motif bank which should be matches. We'll try to create schema that match this percentage of motifs. o num_ambiguous - The number of ambiguous characters to include in each schema. The positions of these ambiguous characters will be randomly selected. |
_get_num_motifs(self, repository, motif_list)Return the number of motif counts for the list of motifs. |
_get_unique_schema(self, cur_schemas, motif_list, num_ambiguous)Retrieve a unique schema from a motif. We don't want to end up with schema that match the same thing, since this could lead to ambiguous results, and be messy. This tries to create schema, and checks that they do not match any currently existing schema. |
_schema_from_motif(self, motif, motif_list, num_ambiguous)Create a schema from a given starting motif. Arguments: o motif - A motif with the pattern we will start from. o motif_list - The total motifs we have.to match to. o num_ambiguous - The number of ambiguous characters that should be present in the schema. Returns: o A string representing the newly generated schema. o A list of all of the motifs in motif_list that match the schema. |
Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Mon Aug 27 16:43:46 2007 | http://epydoc.sf.net |