File size: 15,881 Bytes
84ff331
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
import json
import os
from collections import defaultdict

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.ticker import MaxNLocator


THIS_SCRIPT_PATH = os.path.abspath(__file__)
DATA_PATH = os.path.join(os.path.dirname(THIS_SCRIPT_PATH), "data")
OUTPUT_FOLDER = os.path.join(os.path.dirname(THIS_SCRIPT_PATH), "output", "figure3")


def draw_scatter(name1, name2, x, y, output_path):
    fig, ax = plt.subplots(figsize=(2.25, 1.75), dpi=600)
    ax.scatter(x, y, alpha=0.4, s=10, edgecolor='none', color="#1f78b4")
    ax.xaxis.set_major_locator(MaxNLocator(6))
    ax.yaxis.set_major_locator(MaxNLocator(6))
    plt.yticks(fontsize=8)
    plt.xticks(fontsize=8)
    plt.xlabel(name1, fontsize=11)
    plt.ylabel(name2, fontsize=11)
    p = np.poly1d(np.polyfit(x, y, 1))
    x_lin_space = np.linspace(min(x), max(x), 100)
    plt.plot(x_lin_space, p(x_lin_space), color="#ff7f00", linewidth=1, linestyle="--")
    plt.gca().spines['top'].set_visible(False)
    plt.gca().spines['right'].set_visible(False)

    equation = f'$\\rho = {np.corrcoef(x, y)[0][1]:.2f}$'
    plt.annotate(equation, xy=(0.05, 0.9), xycoords='axes fraction', fontsize=8,
                 bbox=dict(boxstyle='square', facecolor='white', edgecolor="black", lw=0.5, pad=0.2))

    plt.savefig(output_path, bbox_inches='tight', dpi=300)


def get_connectivity_groups(pairs_scores, all_names, dockq_th: float = 0.23, pae_th: float = 0):
    subunits_groups = {subunit_name: i for i, subunit_name in enumerate(all_names)}
    for subunit_pair, scores in pairs_scores.items():
        subunit_name1, subunit_name2 = subunit_pair.split("_plus_")
        if subunits_groups[subunit_name1] == subunits_groups[subunit_name2]:
            continue
        for score in scores:
            if score["dockq"] > dockq_th and score["pae_score"] > pae_th:
                group_to_change = subunits_groups[subunit_name2]
                for subunit_name in subunits_groups.keys():
                    if subunits_groups[subunit_name] == group_to_change:
                        subunits_groups[subunit_name] = subunits_groups[subunit_name1]
                break
    group_to_subunit = defaultdict(list)
    for subunit, group_id in subunits_groups.items():
        group_to_subunit[group_id].append(subunit)
    connectivity_groups = sorted(list(group_to_subunit.values()), key=len, reverse=True)
    return connectivity_groups


def main():
    os.makedirs(OUTPUT_FOLDER, exist_ok=True)

    # load benchmark info
    pdb_to_subunits = {}
    benchmark_path = os.path.join(DATA_PATH, "benchmark3")
    ignored_pdb_ids = {"1JYM", "1NLX", "1RVV", "1S3Q", "2E6G", "2EWC", "2VYC", "3HHW", "3KIF", "3R90", "4RSU", "5K2M",
                       "5NFR", "6E7D", "6X04", "6ZEE", "7AJP", "6LNI", "6MST", "6OSJ", "6SDZ", "7NRQ"}

    for filename in os.listdir(os.path.join(benchmark_path, "pdb_infos")):
        jobname = filename.split(".")[0]
        if not filename.endswith(".json") or jobname in ignored_pdb_ids:
            continue
        pdb_to_subunits[jobname] = json.load(open(os.path.join(benchmark_path, "pdb_infos", filename), "rb"))

    print("Benchmark size ", len(pdb_to_subunits), "PDB ids: ", list(pdb_to_subunits.keys()))

    homomers = [k for k, v in pdb_to_subunits.items() if len(v) == 1]
    homodimers = [k for k, v in pdb_to_subunits.items() if len(v) == 2]

    print("Homomers: ", len(homomers), "Homodimers: ", len(homodimers))

    # load combfold results
    combfold_results = json.load(open(os.path.join(benchmark_path, "combfold_results.json"), "r"))
    combfold_results = {k: v for k, v in combfold_results.items() if v is not None and k in pdb_to_subunits}
    combfold_parsed_results = {}
    for jobname, results in combfold_results.items():
        if not results["scores"]:
            continue
        tm_and_scores = [(result['weighted_trans_score'], result['tm_score']) for result in results["scores"].values()]
        combfold_parsed_results[jobname] = [i[1] for i in sorted(tm_and_scores, reverse=True)]

    pairs_validation = json.load(open(os.path.join(benchmark_path, "pairs_validation.json"), "r"))

    print("CombFold able to assemble ", len(combfold_parsed_results))
    print("CombFold able to assemble correctly (TM-score > 0.7) ", len([i for i in combfold_parsed_results.values()
                                                                        if max(i) > 0.7]))

    # load MoLPC results
    mcts_results1_path = os.path.join(benchmark_path, "FD_all_trimer_mmscores.csv")
    mcts_results2_path = os.path.join(benchmark_path, "AFM_v2_all_trimer_mmscores.csv")

    mcts_results1 = {i.split(",")[1]: float(i.split(",")[4]) for i in
                     open(mcts_results1_path, "r").read().split("\n")[1:-1] if i.split(",")[2] == i.split(",")[3]}
    mcts_results2 = {i.split(",")[1]: float(i.split(",")[4]) for i in
                     open(mcts_results2_path, "r").read().split("\n")[1:-1] if i.split(",")[2] == i.split(",")[3]}
    mcts_results = {}
    for k in set(list(mcts_results1.keys()) + list(mcts_results2.keys())):
        if k not in pdb_to_subunits:
            continue
        mcts_results[k] = []
        if k in mcts_results1:
            mcts_results[k].append(mcts_results1[k])
        if k in mcts_results2:
            mcts_results[k].append(mcts_results2[k])

    print("MoLPC able to assemble ", len(mcts_results))
    print("MoLPC able to assemble correctly (TM-score > 0.7) ", len([i for i in mcts_results.values()
                                                                    if max(i) > 0.7]))

    # Fig 3A - bar graph - CombFold vs MoLPC
    name1, name2 = "CombFold", "MoLPC"
    th_high, th_accept = 0.8, 0.7
    bar_width = 0.3
    fig, ax = plt.subplots(figsize=(2.25, 1.75), dpi=600)

    labels = []
    for count, max_t in enumerate([1, 5, 10]):
        labels.append(f"Top {max_t}")
        results1 = [max(v[:max_t], default=0) for v in combfold_parsed_results.values()]
        results2 = [max(v[:max_t], default=0) for v in mcts_results.values()]
        res1_high = len([i for i in results1 if i >= th_high])
        res1_acceptable = len([i for i in results1 if th_high > i >= th_accept])
        res2_high = len([i for i in results2 if i >= th_high])
        res2_acceptable = len([i for i in results2 if th_high > i >= th_accept])

        print(name1, max_t, res1_high, res1_acceptable)
        print(name2, max_t, res2_high, res2_acceptable)

        # ax.bar(count, [res1_high / len(pdb_to_subunits)], color='#1f78b4', width=bar_width, edgecolor='grey',
        #        label=f"{name1}\nHigh")
        # ax.bar(count, [res1_acceptable / len(pdb_to_subunits)], color='#1f78b4', alpha=0.5, width=bar_width,
        #        edgecolor='grey', bottom=[res1_high / len(pdb_to_subunits)], label=f"{name1}\nAcceptable")
        # ax.bar(count + bar_width, [res2_high / len(pdb_to_subunits)], color='#ff7f00', width=bar_width, edgecolor='grey',
        #        label=f"{name2}\nHigh")
        # ax.bar(count + bar_width, [res2_acceptable / len(pdb_to_subunits)], color='#ff7f00', alpha=0.5, width=bar_width,
        #        edgecolor='grey', bottom=[res2_high / len(pdb_to_subunits)], label=f"{name2}\nAcceptable")
        ax.bar(count, [res1_high / len(pdb_to_subunits)], color='#1f78b4', width=bar_width, edgecolor='grey',
               label=f"{name1} High")
        ax.bar(count, [res1_acceptable / len(pdb_to_subunits)], color='#1f78b4', alpha=0.5, width=bar_width,
               edgecolor='grey', bottom=[res1_high / len(pdb_to_subunits)], label=f"{name1} Acceptable")
        ax.bar(count + bar_width, [res2_high / len(pdb_to_subunits)], color='#ff7f00', width=bar_width,
               edgecolor='grey',
               label=f"{name2} High")
        ax.bar(count + bar_width, [res2_acceptable / len(pdb_to_subunits)], color='#ff7f00', alpha=0.5, width=bar_width,
               edgecolor='grey', bottom=[res2_high / len(pdb_to_subunits)], label=f"{name2} Acceptable")

    plt.ylabel('Success rate', fontsize=11)
    plt.xticks([i + bar_width / 2 for i in range(len(labels))], labels, fontsize=8)
    plt.yticks(np.arange(0.1, 0.7, 0.1), fontsize=8)

    handles, labels = plt.gca().get_legend_handles_labels()
    new_labels, new_handles = [], []
    for handle, label in zip(handles, labels):
        if label not in new_labels:
            new_labels.append(label)
            new_handles.append(handle)
    # ax.legend(new_handles, new_labels, bbox_to_anchor=(1, -0.2), loc='lower left', fontsize=8)
    ax.legend(new_handles, new_labels, bbox_to_anchor=(1, -0.2), loc='lower left', fontsize=7, ncol=4,
              handletextpad=0.2, columnspacing=0.25)

    plt.gca().spines['top'].set_visible(False)
    plt.gca().spines['right'].set_visible(False)

    plt.savefig(os.path.join(OUTPUT_FOLDER, "Fig3A.png"), bbox_inches='tight', dpi=300)

    # Fig 3B - Homomer vs. Hetromer
    fig, ax = plt.subplots(figsize=(2.25, 1.75), dpi=600)

    homomers_count = len(homomers)
    heteromers_count = len(pdb_to_subunits) - homomers_count
    MAX_T = 1

    results1 = [max(v[:MAX_T], default=0) for k, v in combfold_parsed_results.items() if k in homomers]
    results2 = [max(v[:MAX_T], default=0) for k, v in mcts_results.items() if k in homomers]
    res1_high = len([i for i in results1 if i >= th_high]) / homomers_count
    res1_acceptable = len([i for i in results1 if th_high > i >= th_accept]) / homomers_count
    res2_high = len([i for i in results2 if i >= th_high]) / homomers_count
    res2_acceptable = len([i for i in results2 if th_high > i >= th_accept]) / homomers_count

    ax.bar(0, [res1_high], color='#1f78b4', width=bar_width, edgecolor='grey', label=f"{name1} High")
    ax.bar(0, [res1_acceptable], color='#1f78b4', alpha=0.5, width=bar_width, edgecolor='grey', bottom=[res1_high],
           label=f"{name1} Acceptable")
    ax.bar(0 + bar_width, [res2_high], color='#ff7f00', width=bar_width, edgecolor='grey', label=f"{name2} High")
    ax.bar(0 + bar_width, [res2_acceptable], color='#ff7f00', alpha=0.5, width=bar_width, edgecolor='grey',
           bottom=[res2_high], label=f"{name2} Acceptable")

    results1 = [max(v[:MAX_T], default=0) for k, v in combfold_parsed_results.items() if k not in homomers]
    results2 = [max(v[:MAX_T], default=0) for k, v in mcts_results.items() if k not in homomers]
    res1_high = len([i for i in results1 if i >= th_high]) / heteromers_count
    res1_acceptable = len([i for i in results1 if th_high > i >= th_accept]) / heteromers_count
    res2_high = len([i for i in results2 if i >= th_high]) / heteromers_count
    res2_acceptable = len([i for i in results2 if th_high > i >= th_accept]) / heteromers_count

    ax.bar(1, [res1_high], color='#1f78b4', width=bar_width, edgecolor='grey', label=f"{name1} High")
    ax.bar(1, [res1_acceptable], color='#1f78b4', alpha=0.5, width=bar_width, edgecolor='grey', bottom=[res1_high],
           label=f"{name1} Acceptable")
    ax.bar(1 + bar_width, [res2_high], color='#ff7f00', width=bar_width, edgecolor='grey', label=f"{name2} High")
    ax.bar(1 + bar_width, [res2_acceptable], color='#ff7f00', alpha=0.5, width=bar_width, edgecolor='grey',
           bottom=[res2_high], label=f"{name2} Acceptable")

    plt.ylabel('Success rate', fontsize=11)
    plt.xticks([i + bar_width / 2 for i in range(2)], ["Homomers", "Heteromers"], fontsize=11)

    plt.gca().spines['top'].set_visible(False)

    plt.yticks(np.arange(0.1, 0.7, 0.1), fontsize=8)

    plt.gca().spines['right'].set_visible(False)

    plt.savefig(os.path.join(OUTPUT_FOLDER, "Fig3B.png"), bbox_inches='tight', dpi=300)

    # Fig 3C - TM score scatter plot
    MAX_T = 1
    our_tm_results, mcts_tm_results = [], []
    for jobname in pdb_to_subunits:
        our_tm_results.append(max(combfold_parsed_results.get(jobname, [])[:MAX_T], default=0))
        mcts_tm_results.append(max(mcts_results.get(jobname, [])[:MAX_T], default=0))
        if mcts_tm_results[-1] > 0.7 and our_tm_results[-1] < 0.7:
            print(jobname, "better on MoLPC", mcts_tm_results[-1], our_tm_results[-1])

    fig, ax = plt.subplots(figsize=(2.25, 1.75), dpi=600)
    ax.scatter(our_tm_results, mcts_tm_results, alpha=0.4, s=10, edgecolor='none')
    ax.set_xlabel("CombFold TM-score", fontsize=11)
    ax.set_ylabel("MoLPC TM-score", fontsize=11)
    plt.yticks(np.arange(0, 1.2, 0.2), fontsize=8)
    plt.xticks(np.arange(0, 1.2, 0.2), fontsize=8)

    plt.gca().spines['top'].set_visible(False)
    plt.gca().spines['right'].set_visible(False)
    plt.plot([0, 1], [0, 1], 'r--')

    plt.savefig(os.path.join(OUTPUT_FOLDER, "Fig3C.png"), bbox_inches='tight', dpi=300)

    # Fig 3D - Confidence - TM-score
    confidence, tm_results = [], []

    for jobname, results in combfold_results.items():
        if len(results["scores"]) == 0:
            continue
        conf_key = "weighted_trans_score"
        best_confidence = max(list(results["scores"].values()), key=lambda x: x[conf_key])
        confidence.append(best_confidence[conf_key])
        tm_results.append(best_confidence["tm_score"])
    print("confidence correlation:", np.corrcoef(confidence, tm_results)[0][1])
    draw_scatter("Predicted confidence", "TM-score", confidence, tm_results, os.path.join(OUTPUT_FOLDER, "Fig3D.png"))

    # Fig 3E - Amino acids count - TM-score
    MAX_T = 1
    tm_results = []
    res_counts = []
    for jobname in pdb_to_subunits:
        res_counts.append(sum(len(subunit['chain_names']) * len(subunit['sequence'])
                              for subunit in pdb_to_subunits[jobname].values()))
        tm_results.append(max(combfold_parsed_results.get(jobname, [0])[:MAX_T]))
    print("complex length correlation:", np.corrcoef(res_counts, tm_results)[0][1])
    draw_scatter("Number of amino acids", "TM-score", res_counts, tm_results,
                 os.path.join(OUTPUT_FOLDER, "Fig3E.png"))

    # Fig 3F - Weighted connectivity Ratio - TM-score
    tm_results = []
    pairwise_connectivity = []
    MAX_T = 10

    for jobname in sorted(pdb_to_subunits.keys()):
        if jobname not in pairs_validation:
            continue
        tm_results.append(max(combfold_parsed_results.get(jobname, [0])[:MAX_T]))

        connectivity_groups = get_connectivity_groups(pairs_validation[jobname]["pairs_scores"],
                                                      list(pairs_validation[jobname]["domains_scores"].keys()),
                                                      dockq_th=0.23, pae_th=0)
        total_count = connected_count = 0
        for domain_name in pairs_validation[jobname]["domains_scores"].keys():
            res_num = len(pdb_to_subunits[jobname][domain_name.split("_")[0]]["sequence"])
            total_count += res_num
            if domain_name in connectivity_groups[0] \
                    and pairs_validation[jobname]["domains_scores"][domain_name]["rmsd"] < 10:
                connected_count += res_num
        pairwise_connectivity.append(connected_count / total_count)
        if pairwise_connectivity[-1] >= 0.6 and tm_results[-1] < 0.7:
            print("****", jobname, pairwise_connectivity[-1], tm_results[-1])
    print(np.corrcoef(pairwise_connectivity, tm_results)[0][1])
    print("probably possible", len([i for i in pairwise_connectivity if i >= 0.6]))
    draw_scatter("Pairwise Connectivity", "TM-score", pairwise_connectivity, tm_results,
                 os.path.join(OUTPUT_FOLDER, "Fig3F.png"))
    print("Pairwise Connectivity correlation:", np.corrcoef(pairwise_connectivity, tm_results)[0][1])


if __name__ == "__main__":
    main()