-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLRbind_postprocess.py
More file actions
523 lines (432 loc) · 26 KB
/
LRbind_postprocess.py
File metadata and controls
523 lines (432 loc) · 26 KB
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
# Written By
# Fatema Tuz Zohora
print('package loading')
import numpy as np
import csv
import pickle
import statistics
from scipy import sparse
from scipy import stats
import scipy.io as sio
import scanpy as sc
import matplotlib
matplotlib.use('Agg')
#matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
import numpy as np
#from matplotlib.colors import LinearSegmentedColormap, to_hex, rgb2hex
#from typing import List
import qnorm
from scipy.sparse import csr_matrix
from scipy.spatial import distance
from scipy.sparse.csgraph import connected_components
from scipy.stats import median_abs_deviation
from scipy.stats import skew
from collections import defaultdict
import pandas as pd
import gzip
from kneed import KneeLocator
import copy
import argparse
import gc
import os
import altair as alt
import altairThemes # assuming you have altairThemes.py at your current directoy or your system knows the path of this altairThemes.py.
alt.themes.register("publishTheme", altairThemes.publishTheme)
# enable the newly registered theme
alt.themes.enable("publishTheme")
##########################################################
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument( '--database_path', type=str, default='database/NEST_database.csv' , help='Provide your desired ligand-receptor database path here. Default database is a combination of CellChat and NicheNet database.')
parser.add_argument( '--data_name', type=str, default='LRbind_LUAD_1D_manualDB_geneCorrP7KNN_bidir', help='The name of dataset') #, required=True) # default='',
#_geneCorr_remFromDB
#LRbind_GSM6177599_NYU_BRCA0_Vis_processed_1D_manualDB_geneCorr_bidir #LGALS1, PTPRC
#LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_geneCorr_bidir
#LRbind_CID44971_1D_manualDB_geneCorr_bidir, CXCL10-CXCR3
#LRbind_LUAD_1D_manualDB_geneCorr_signaling_bidir
#'LRbind_LUAD_1D_manualDB_geneCorrKNN_bidir
#'LRbind_V1_Breast_Cancer_Block_A_Section_1_spatial_1D_manualDB_geneCorrKNN_bidir'
parser.add_argument( '--total_runs', type=int, default=3, help='How many runs for ensemble (at least 2 are preferred)') #, required=True)
#######################################################################################################
parser.add_argument( '--embedding_path', type=str, default='embedding_data/', help='Path to grab the attention scores from')
parser.add_argument( '--metadata_from', type=str, default='metadata/', help='Path to grab the metadata')
parser.add_argument( '--data_from', type=str, default='input_graph/', help='Path to grab the input graph from (to be passed to GAT)')
parser.add_argument( '--output_path', type=str, default='/cluster/home/t116508uhn/LRbind_output/', help='Path to save the visualization results, e.g., histograms, graph etc.')
parser.add_argument( '--target_ligand', type=str, default='TGFB1', help='') #
parser.add_argument( '--target_receptor', type=str, default='ACVRL1', help='')
args = parser.parse_args()
args.metadata_from = args.metadata_from + args.data_name + '/'
args.data_from = args.data_from + args.data_name + '/'
args.embedding_path = args.embedding_path + args.data_name + '/'
args.output_path = args.output_path + args.data_name + '/'
if not os.path.exists(args.output_path):
os.makedirs(args.output_path)
##################### get metadata: barcode_info ###################################
print("data: "+ args.data_name)
with gzip.open(args.metadata_from +args.data_name+'_barcode_info', 'rb') as fp: #b, a:[0:5] _filtered
barcode_info = pickle.load(fp)
barcode_index = dict()
for i in range (0, len(barcode_info)):
barcode_index[barcode_info[i][0]] = i
'''
Tcell_zone = []
node_type = dict()
df = pd.read_csv("../NEST/data/V1_Human_Lymph_Node_spatial_annotation.csv", sep=",")
for i in range (0, df["Barcode"].shape[0]):
if df["Type"][i] == 'T-cell':
Tcell_zone.append(barcode_index[df["Barcode"][i]])
node_type[df["Barcode"][i]] = df["Type"][i]
'''
with gzip.open(args.metadata_from +args.data_name+'_barcode_info_gene', 'rb') as fp: #b, a:[0:5] _filtered
barcode_info_gene, ligand_list, receptor_list, gene_node_list_per_spot, dist_X, l_r_pair, gene_node_index_active, ligand_active, receptor_active = pickle.load(fp)
with gzip.open(args.metadata_from + args.data_name +'_test_set', 'rb') as fp:
target_LR_index, target_cell_pair = pickle.load(fp)
#####################################################################################
with gzip.open(args.data_from + args.data_name + '_cell_vs_gene_quantile_transformed', 'rb') as fp:
cell_vs_gene = pickle.load(fp)
with gzip.open(args.data_from + args.data_name + '_gene_index', 'rb') as fp:
gene_index = pickle.load(fp)
with gzip.open('metadata/LRbind_LUAD_1D_manualDB_geneCorrP7KNN_bidir/'+args.data_name+'_receptor_intra_KG.pkl', 'rb') as fp:
receptor_intraNW, TF_genes = pickle.load(fp)
############# load output graph #################################################
model_names = [#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_geneCorr',
#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_geneCorr_vgae',
#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_vgae',
#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_vgae_gat',
#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_vgae_gat_wbce',
# 'LRbind_model_V1_Human_Lymph_Node_spatial_1D_manualDB',
#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_bidir',
#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_bidir_3L',
#'model_LRbind_V1_Human_Lymph_Node_spatial_1D_manualDB_geneCorr_bidir_3L',
#'model_LRbind_GSM6177599_NYU_BRCA0_Vis_processed_1D_manualDB_geneCorr_bidir_3L'
#'model_LRbind_CID44971_1D_manualDB_geneCorr_bidir_3L',
#'model_LRbind_CID44971_1D_manualDB_geneCorrKNN_bidir_3L'
#'model_LRbind_LUAD_1D_manualDB_geneCorr_bidir_3L'
#'model_LRbind_LUAD_1D_manualDB_geneCorr_signaling_bidir_3L'
#'model_LRbind_LUAD_1D_manualDB_geneCorrKNN_bidir_3L'
'model_LRbind_LUAD_1D_manualDB_geneCorrP7KNN_bidir_3L'
# 'model_LRbind_PDAC64630_1D_manualDB_geneCorrKNN_bidir_3L'
# 'model_LRbind_V1_Breast_Cancer_Block_A_Section_1_spatial_1D_manualDB_geneCorrKNN_bidir_3L'
]
for model_name in model_names:
args.model_name = model_name
args.model_name = args.model_name + '_r1'
X_embedding_filename = args.embedding_path + args.model_name + '_Embed_X' #.npy
print("\n\n"+ X_embedding_filename)
with gzip.open(X_embedding_filename, 'rb') as fp:
X_embedding = pickle.load(fp)
for i in range (0, X_embedding.shape[0]):
total_score_per_row = np.sum(X_embedding[i][:])
X_embedding[i] = X_embedding[i]/total_score_per_row
########## all #############################################
top_lrp_count = 1000
knee_flag = 0
break_flag = 0
test_mode = 1
for top_N in [100]: #, 30, 10]:
print(top_N)
if break_flag == 1:
break
if knee_flag == 1:
top_N = 0
break_flag = 1
lr_dict = defaultdict(list)
Tcell_zone_lr_dict = defaultdict(list)
target_ligand = args.target_ligand
target_receptor = args.target_receptor
found_list = defaultdict(list)
for i in range (0, len(barcode_info)):
#if node_type[barcode_info[i][0]] != 'T-cell':
# continue
print("i: %d"%i)
#print("found list: %d"%len(found_list))
for j in range (0, len(barcode_info)):
if dist_X[i][j]==0 or i==j :
continue
# from i to j
ligand_node_index = []
for gene in gene_node_list_per_spot[i]:
if gene in ligand_list:
ligand_node_index.append([gene_node_list_per_spot[i][gene], gene])
receptor_node_index = []
for gene in gene_node_list_per_spot[j]:
if gene in receptor_list:
receptor_node_index.append([gene_node_list_per_spot[j][gene], gene])
dot_prod_list = []
product_only = []
start_index = 0
for i_gene in ligand_node_index:
for j_gene in receptor_node_index:
if i_gene[1]==j_gene[1]:
continue
temp = distance.euclidean(X_embedding[i_gene[0]], X_embedding[j_gene[0]]) # #(X_PCA[i_gene[0]], X_PCA[j_gene[0]]) #
# distance.euclidean(X_embedding[i_gene[0]], X_embedding[j_gene[0]])
# (X_embedding[i_gene[0]], X_embedding[j_gene[0]])
dot_prod_list.append([temp, i, j, i_gene[1], j_gene[1]])
product_only.append(temp)
if len(dot_prod_list) == 0:
continue
if knee_flag == 0:
max_score = max(product_only)
for item_idx in range (0, len(dot_prod_list)):
scaled_prod = max_score - dot_prod_list[item_idx][0]
dot_prod_list[item_idx][0] = scaled_prod
dot_prod_list = sorted(dot_prod_list, key = lambda x: x[0], reverse=True)[0:top_N]
else:
########## knee find ###########
score_list = []
for item in dot_prod_list:
score_list.append(item[0])
score_list = sorted(score_list) # small to high
y = score_list
x = range(1, len(y)+1)
kn = KneeLocator(x, y, direction='increasing')
kn_value_inc = y[kn.knee-1]
kn = KneeLocator(x, y, direction='decreasing')
kn_value_dec = y[kn.knee-1]
kn_value = max(kn_value_inc, kn_value_dec)
temp_dot_prod_list = []
for item in dot_prod_list:
if item[0] >= kn_value:
temp_dot_prod_list.append(item)
dot_prod_list = temp_dot_prod_list
###########################
for item in dot_prod_list:
lr_dict[item[3]+'+'+item[4]].append([item[0], item[1], item[2]])
#if i in Tcell_zone and j in Tcell_zone:
# Tcell_zone_lr_dict[item[3]+'+'+item[4]].append([item[0], item[1], item[2]])
if test_mode == 1 and item[3] == target_ligand and item[4] == target_receptor:
found_list[i].append(item[0]) #= 1
found_list[j].append(item[0])
#break
# plot found_list
print("positive: %d"%(len(found_list)))
# plot input_cell_pair_list
if test_mode==1:
######### plot output #############################
# UPDATE # annottaion
data_list=dict()
data_list['X']=[]
data_list['Y']=[]
data_list['total_dot']=[]
data_list['prediction'] = []
#data_list['label'] = []
for i in range (0, len(barcode_info)):
data_list['X'].append(barcode_info[i][1])
data_list['Y'].append(-barcode_info[i][2])
if i in found_list:
data_list['total_dot'].append(np.sum(found_list[i]))
data_list['prediction'].append('positive')
else:
data_list['total_dot'].append(0)
data_list['prediction'].append('negative')
#data_list['label'].append(node_type[barcode_info[i][0]])
source= pd.DataFrame(data_list)
chart = alt.Chart(source).mark_point(filled=True).encode(
alt.X('X', scale=alt.Scale(zero=False)),
alt.Y('Y', scale=alt.Scale(zero=False)),
color=alt.Color('total_dot:Q', scale=alt.Scale(scheme='magma')),
#shape = alt.Shape('label:N')
)
chart.save(args.output_path + model_name + '_output_' + target_ligand + '-' + target_receptor +'_top'+ str(top_N) + '_wholeTissue_allLR.html')
#print(args.output_path + args.model_name + '_output_' + target_ligand + '-' + target_receptor +'_top'+ str(top_N) + '_wholeTissue_allLR.html')
# entropy
# save lr_dict that has info about gene node id as well
############## entropy ####################################
true_label_dict = defaultdict(list)
for i in range (0, len(barcode_info)):
if node_type[barcode_info[i][0]] == 'T-cell':
true_label_dict['positive'].append(barcode_info[i][0])
else:
true_label_dict['negative'].append(barcode_info[i][0])
cluster_dict = defaultdict(list)
for i in range (0, len(barcode_info)):
if data_list['prediction'][i] == 'positive':
cluster_dict['positive'].append(barcode_info[i][0])
else:
cluster_dict['negative'].append(barcode_info[i][0])
entropy_cluster = np.zeros((len(cluster_dict.keys())))
cluster_list = list(cluster_dict.keys())
for k in range (0, len(cluster_list)):
p = cluster_list[k]
cluster_count = len(cluster_dict[p])
H_sum = 0
for t in true_label_dict.keys():
count_match = 0
barcodes_list = true_label_dict[t]
for barcode in barcodes_list:
if barcode in cluster_dict[p]:
count_match = count_match+1
#print(count_match/cluster_count)
if count_match/cluster_count != 0:
H_sum = H_sum + (count_match/cluster_count)*np.log(count_match/cluster_count)
entropy_cluster[k] = H_sum
N_cells = len(barcode_info)
entropy_total = 0
for k in range (0, len(cluster_list)):
entropy_total = entropy_total + (len(cluster_dict[cluster_list[k]])*entropy_cluster[k])/N_cells
entropy_total = - entropy_total
#print('############## shanon entropy %g #############'%entropy_total)
########## take top hits ####################################
#if top_N == 30:
# continue
sort_lr_list = []
for lr_pair in lr_dict:
sum = 0
cell_pair_list = lr_dict[lr_pair]
for item in cell_pair_list:
sum = sum + item[0]
#sum = sum/len(cell_pair_list)
sort_lr_list.append([lr_pair, sum])
sort_lr_list = sorted(sort_lr_list, key = lambda x: x[1], reverse=True)
#print('len sort_lr_list %d'%len(sort_lr_list))
# save = num_spots/cells * top_N pairs
top_hit_lrp_dict = dict()
i = 0
for item in sort_lr_list:
top_hit_lrp_dict[item[0]] = i
i = i+1
# now plot the histograms where X axis will show the name or LR pair and Y axis will show the score.
data_list=dict()
data_list['X']=[]
data_list['Y']=[]
data_list['type']=[]
max_rows = len(sort_lr_list)
for i in range (0, max_rows): #1000): #:
data_list['X'].append(sort_lr_list[i][0])
data_list['Y'].append(sort_lr_list[i][1])
ligand = sort_lr_list[i][0].split('+')[0]
receptor = sort_lr_list[i][0].split('+')[1]
if ligand in l_r_pair and receptor in l_r_pair[ligand]:
data_list['type'].append('From DB')
else:
data_list['type'].append('Predicted')
data_list_pd = pd.DataFrame({
'Ligand-Receptor Pairs': data_list['X'],
'Score': data_list['Y'],
'Type': data_list['type']
})
data_list_pd.to_csv(args.output_path +model_name+'_lr_list_sortedBy_totalScore_top'+str(top_N)+'allLR.csv', index=False)
#print(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'allLR.csv')
data_list=dict()
data_list['X']=[]
data_list['Y']=[]
max_rows = min(500, len(sort_lr_list))
for i in range (0, max_rows): #1000): #:
data_list['X'].append(sort_lr_list[i][0])
data_list['Y'].append(sort_lr_list[i][1])
data_list_pd = pd.DataFrame({
'Ligand-Receptor Pairs': data_list['X'],
'Score': data_list['Y']
})
chart = alt.Chart(data_list_pd).mark_bar().encode(
x=alt.X("Ligand-Receptor Pairs:N", axis=alt.Axis(labelAngle=45), sort='-y'),
y='Score'
)
chart.save(args.output_path +model_name+'_lr_list_sortedBy_totalScore_top'+str(top_N)+'_histogramsallLR.html')
#print(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'_histogramsallLR.html')
if target_ligand +'+'+ target_receptor in list(data_list_pd['Ligand-Receptor Pairs']):
print("found %d"%top_hit_lrp_dict[target_ligand +'+'+ target_receptor])
############################### novel only out of all LR ################
sort_lr_list_temp = []
i = 0
for pair in sort_lr_list:
ligand = pair[0].split('+')[0]
receptor = pair[0].split('+')[1]
if ligand in l_r_pair and receptor in l_r_pair[ligand]:
#if i<15:
# print(i)
i=i+1
continue
i = i + 1
sort_lr_list_temp.append(pair)
#print('novel LRP length %d out of top %d LRP'%(len(sort_lr_list_temp), top_lrp_count))
# now plot the histograms where X axis will show the name or LR pair and Y axis will show the score.
data_list=dict()
data_list['X']=[]
data_list['Y']=[]
max_rows = min(500, len(sort_lr_list_temp))
for i in range (0, max_rows): #1000): #
data_list['X'].append(sort_lr_list_temp[i][0])
data_list['Y'].append(sort_lr_list_temp[i][1])
data_list_pd = pd.DataFrame({
'Ligand-Receptor Pairs': data_list['X'],
'Score': data_list['Y']
})
data_list_pd.to_csv(args.output_path +model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'_novelsOutOfallLR.csv', index=False)
#print(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'novelsOutOfallLR.csv')
# same as histogram plots
chart = alt.Chart(data_list_pd).mark_bar().encode(
x=alt.X("Ligand-Receptor Pairs:N", axis=alt.Axis(labelAngle=45), sort='-y'),
y='Score'
)
chart.save(args.output_path +model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'_histograms_novelsOutOfallLR.html')
#print(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'_histograms_novelsOutOfallLR.html')
################################# when not remFromDB ##########################################################################################################
set_LRbind_novel = []
for i in range (0, len(sort_lr_list_temp)):
set_LRbind_novel.append(sort_lr_list_temp[i][0])
#print('ligand-receptor database reading.')
df = pd.read_csv(args.database_path, sep=",")
set_nichenet_novel = []
for i in range (0, df["Ligand"].shape[0]):
ligand = df["Ligand"][i]
receptor = df["Receptor"][i]
if ligand in ligand_list and receptor in receptor_list and 'ppi' in df["Reference"][i]:
set_nichenet_novel.append(ligand + '+' + receptor)
set_nichenet_novel = np.unique(set_nichenet_novel)
common_lr = list(set(set_LRbind_novel) & set(set_nichenet_novel))
#print('top_N:%d, Only LRbind %d, only nichenet %d, common %d'%(top_N, len(set_LRbind_novel)-len(common_lr), len(set_nichenet_novel)-len(common_lr), len(common_lr)))
pd.DataFrame(common_lr).to_csv(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'_common_with_nichenet.csv', index=False)
#print(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'novelsOutOfallLR.csv')
##################################################################
'''
df = pd.read_csv("../NEST_experimental/output/V1_Human_Lymph_Node_spatial/CellNEST_V1_Human_Lymph_Node_spatial_top20percent.csv", sep=",")
set_nichenet_novel = []
for i in range (0, df["ligand"].shape[0]):
ligand = df["ligand"][i]
receptor = df["receptor"][i]
if (ligand==target_ligand and receptor in receptor_list) or (receptor == target_receptor and ligand in ligand_list):# and ('ppi' not in df["Reference"][i]):
set_nichenet_novel.append(ligand + '+' + receptor)
set_nichenet_novel = np.unique(set_nichenet_novel)
common_lr = list(set(set_LRbind_novel) & set(set_nichenet_novel))
#print('Only LRbind %d, only manual %d, common %d'%(len(set_LRbind_novel), len(set_nichenet_novel)-len(common_lr), len(common_lr)))
'''
############ only Tcell Zone plot ##############################################################################################################################
Tcell_zone_sort_lr_list = []
for lr_pair in Tcell_zone_lr_dict:
#if lr_pair not in top_hit_lrp_dict:
# continue
sum = 0
cell_pair_list = Tcell_zone_lr_dict[lr_pair]
for item in cell_pair_list:
sum = sum + item[0] #
#sum = sum/len(cell_pair_list)
Tcell_zone_sort_lr_list.append([lr_pair, sum])
Tcell_zone_sort_lr_list = sorted(Tcell_zone_sort_lr_list, key = lambda x: x[1], reverse=True)
# now plot the histograms where X axis will show the name or LR pair and Y axis will show the score.
data_list=dict()
data_list['X']=[]
data_list['Y']=[]
max_rows = len(Tcell_zone_sort_lr_list) #min(500, len(Tcell_zone_sort_lr_list))
for i in range (0, max_rows): #1000): #:
data_list['X'].append(Tcell_zone_sort_lr_list[i][0])
data_list['Y'].append(Tcell_zone_sort_lr_list[i][1])
if Tcell_zone_sort_lr_list[i][0]=='CCL19+CCR7':
print("Tcell: found CCL19-CCR7: %d"%i)
data_list_pd = pd.DataFrame({
'Ligand-Receptor Pairs': data_list['X'],
'Avg_dotProduct': data_list['Y']
})
#if 'CCL19+CCR7' in list(data_list_pd['Ligand-Receptor Pairs']):
# print("found CCL19-CCR7")
data_list_pd.to_csv(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'Tcell_zone_allLR.csv', index=False)
#print(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'Tcell_zone_allLR.csv')
# same as histogram plots
chart = alt.Chart(data_list_pd).mark_bar().encode(
x=alt.X("Ligand-Receptor Pairs:N", axis=alt.Axis(labelAngle=45), sort='-y'),
y='Avg_dotProduct'
)
chart.save(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'Tcell_zone_histogramsallLR.html')
#print(args.output_path +args.model_name+'_novel_lr_list_sortedBy_totalScore_top'+str(top_N)+'Tcell_zone_histogramsallLR.html')