Class SchemaDNAAlphabet
Alphabet
--+
|
SchemaDNAAlphabet
Alphabet of a simple Schema for DNA sequences.
This defines a simple alphabet for DNA sequences that has a single
character which can match any other character.
o G,A,T,C - The standard unambiguous DNA alphabet.
o * - Any letter
Class Variable Summary |
dict |
alphabet_matches = {'A': 'A', 'C': 'C', '*': 'GATC', 'T'...
|
list |
letters = ['G', 'A', 'T', 'C', '*']
|
Inherited from Alphabet |
NoneType |
size = None |
alphabet_matches
-
- Type:
-
dict
- Value:
{'A': 'A', 'C': 'C', '*': 'GATC', 'T': 'T', 'G': 'G'}
|
|
letters
-
- Type:
-
list
- Value:
['G', 'A', 'T', 'C', '*']
|
|