Home | Trees | Indices | Help |
|
---|
|
|
|||
|
Test Test case |
|
|||
[str]
|
sequenceList(model) Extracts a one letter amino acid sequence list |
||
[tuples]
|
getOpCodes(seq_1,
seq_2) Compares two sequences and returns a list with the information needed to convert the first one sequence into the second. |
||
[tuple], [tuple]
|
getSkipLists(seqDiff) Extracts information about what residues that have to be removed from sequence 1 (delete code) and sequence 2 (insert code). |
||
[tuple], [tuple]
|
getEqualLists(seqDiff) Extract information about regions in the sequences that are equal. |
||
str
|
repeateInMatch(deletedRes) Takes a string and returns a list of strings containing internal repeates. |
||
[str],[int]
|
delete(seqAA,
seqNr,
delList) Takes a amino acid and a sequence list and deletes positions according to the information given in the delList. |
||
[str], [int]
|
getEqual(seqAA,
seqNr,
equalList) Gets only the postions of the sequences that are equal according to the OpCodes. |
||
[str], [int], [str], [int]
|
iterate(seqAA_1,
seqNr_1,
seqAA_2,
seqNr_2,
del_1,
del_2) Delete residues until no more deletions are indicated by the sequence matcher. |
||
([1|0...],[1|0...])
|
compareModels(model_1,
model_2) Initiates comparison of the sequences of two structure objects and returns two equal sequence lists (new_seqAA_1 and new_seqAA_2 should be identical) and the corresponding residue position lists. |
|
Extracts a one letter amino acid sequence list
|
Compares two sequences and returns a list with the information needed to convert the first one sequence into the second.
|
Extracts information about what residues that have to be removed from sequence 1 (delete code) and sequence 2 (insert code). Returns deletion codes in the format (start_pos, length).
|
Extract information about regions in the sequences that are equal. Returns deletion codes in the format (start_pos, length).
|
Takes a string and returns a list of strings containing internal repeates.
|
|
Gets only the postions of the sequences that are equal according to the OpCodes. This should not be nessesary but might be usefull to skip 'replace' OpCode.
|
Delete residues until no more deletions are indicated by the sequence matcher. Return the final sequences
|
Initiates comparison of the sequences of two structure objects and returns two equal sequence lists (new_seqAA_1 and new_seqAA_2 should be identical) and the corresponding residue position lists.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0alpha3 on Tue May 1 22:34:50 2007 | http://epydoc.sourceforge.net |