-
Notifications
You must be signed in to change notification settings - Fork 1
/
20080623a.py
55 lines (50 loc) · 1.77 KB
/
20080623a.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""Use neighbor joining to make a newick tree from a distance matrix.
"""
import numpy as np
from SnippetUtil import HandlingError
import Util
import MatrixUtil
import NewickIO
import NeighborJoining
import Form
import FormOut
def get_form():
"""
@return: the body of a form
"""
# define the default distance matrix
# this is from figure 2 of a paper called why neighbor joining works
D = np.array([
[0.0, 3.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0],
[3.0, 0.0, 3.0, 3.0, 3.0, 2.0, 2.0, 2.0],
[2.0, 3.0, 0.0, 0.1, 0.4, 3.0, 3.0, 3.0],
[2.0, 3.0, 0.1, 0.0, 0.4, 3.0, 3.0, 3.0],
[2.0, 3.0, 0.4, 0.4, 0.0, 3.0, 3.0, 3.0],
[3.0, 2.0, 3.0, 3.0, 3.0, 0.0, 0.1, 0.4],
[3.0, 2.0, 3.0, 3.0, 3.0, 0.1, 0.0, 0.4],
[3.0, 2.0, 3.0, 3.0, 3.0, 0.4, 0.4, 0.0]])
labels = list('xyabcmnp')
# define the form objects
form_objects = [
Form.Matrix('matrix', 'distance matrix',
D, MatrixUtil.assert_predistance),
Form.MultiLine('labels', 'ordered labels',
'\n'.join(labels))]
return form_objects
def get_form_out():
return FormOut.Newick()
def get_response_content(fs):
# read the matrix
D = fs.matrix
if len(D) < 3:
raise HandlingError('the matrix should have at least three rows')
# read the ordered labels
ordered_labels = Util.get_stripped_lines(fs.labels.splitlines())
if len(ordered_labels) != len(D):
msg_a = 'the number of ordered labels should be the same '
msg_b = 'as the number of rows in the matrix'
raise HandlingError(msg_a + msg_b)
# get the newick tree
tree = NeighborJoining.make_tree(D.tolist(), ordered_labels)
# return the response
return NewickIO.get_newick_string(tree) + '\n'