-
Notifications
You must be signed in to change notification settings - Fork 1
/
crossref.py
341 lines (227 loc) · 11.5 KB
/
crossref.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
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
"""
# Import packages
"""
import tarfile
import logging
import html
import json
import pandas as pd
import sys
import re
import unicodedata
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.metrics.pairwise import cosine_similarity
from collections import defaultdict
from concurrent.futures import ProcessPoolExecutor,wait,ALL_COMPLETED
from create_input import *
from affro import *
with open('dictionaries/dix_acad.json', 'rb') as f:
dix_acad = json.load(f)
with open('dictionaries/dix_mult.json', 'rb') as f:
dix_mult = json.load(f)
with open('dictionaries/dix_city.json', 'rb') as f:
dix_city = json.load(f)
with open('dictionaries/dix_country.json', 'rb') as f:
dix_country = json.load(f)
with open('dictionaries/dix_status.json', 'rb') as f:
dix_status = json.load(f)
def do(name, crossref_df):
try:
print("processing file:" + name)
#crossref_df = pd.read_json(file, orient='records')
authors = [i for i in range(len(crossref_df)) if 'author' in crossref_df['items'][i]]
crossref_auth = crossref_df.iloc[authors].copy()
crossref_auth.reset_index(inplace= True)
crossref_auth.drop(columns = ['index'], inplace = True)
crossref_auth.loc[:, 'DOI'] = crossref_auth['items'].apply(lambda x: x['DOI'])
crossref_auth.loc[:,'authors'] = crossref_auth['items'].apply(lambda x: x['author'])
# num_authors = [len(crossref_auth.iloc[i]['authors']) for i in range(len(crossref_auth))]
# crossref_auth.loc[:,'# authors'] = num_authors
def getAff(k):
return [crossref_auth['authors'][k][j]['affiliation'] for j in range(len(crossref_auth['authors'][k]))]
affiliations = [getAff(k) for k in range(len(crossref_auth))]
crossref_auth.loc[:,'affiliations'] = affiliations
# num_affil = [len(affiliations[i]) for i in range(len(crossref_auth))]
# crossref_auth.loc[:,'# Affil'] = num_affil
## Clean 'empty' affiliations
possible_empty_aff = []
for k in range(len(crossref_auth)):
if len(crossref_auth['affiliations'][k][0]) == 0:
possible_empty_aff.append(k)
non_empty_aff = []
for k in possible_empty_aff:
for j in range(len(crossref_auth['affiliations'].iloc[k])):
if len(crossref_auth['affiliations'].iloc[k][j]) != 0:
non_empty_aff.append(k)
final_emptyy_aff = [x for x in possible_empty_aff if x not in non_empty_aff]
final_non_empty_aff = [x for x in range(len(crossref_auth)) if x not in final_emptyy_aff]
## doi_df: crossref_auth subdataframe with nonpempty affiliation lists
doi_df = crossref_auth.iloc[final_non_empty_aff].copy()
doi_df.reset_index(inplace = True)
doi_df.drop(columns = ['index'], inplace = True)
## (still some cleaning: cases with empty brackets [{}])
empty_brackets = [k for k in range(len(doi_df)) if len(doi_df['affiliations'][k][0]) != 0 and doi_df['affiliations'][k][0][0] == {}]
doi_df.iloc[empty_brackets]
doi_df.drop(empty_brackets, inplace = True)
doi_df.reset_index(inplace = True)
doi_df.drop(columns = ['index'], inplace = True)
## 1. "Unique" affiliations
unique_aff = []
error_indices =[] # New list to store error indices
for i in range(len(doi_df)):
try:
unique_aff.append(list(set([x[0] for x in [list(d.values()) for d in [item for sublist in doi_df['affiliations'].iloc[i] for item in sublist if sublist !=[{}] and item !={}]]])))
except TypeError:
print("Error occurred for i =", i)
error_indices.append(i) # Save the index where the error occurred
#except IndexError:
# print("IndexError occurred for i =", i)
# error_indices.append(i) # Save the index where the IndexError occurred
doi_df.drop(error_indices, inplace = True)
doi_df.reset_index(inplace = True)
doi_df.drop(columns = ['index'], inplace = True)
doi_df.loc[:,'unique_aff'] = unique_aff
if len(doi_df) == 0:
return
new_aff0 = []
for k in range(len(doi_df)):
L2 = []
for s1 in doi_df['unique_aff'].iloc[k]:
is_substring = False
for s2 in doi_df['unique_aff'].iloc[k]:
if s1 != s2 and s1 in s2:
is_substring = True
break
if not is_substring:
L2.append(s1)
new_aff0.append(L2)
new_aff_list = [list(set(new_aff0[k])) for k in range(len(new_aff0))]
doi_df['Unique affiliations'] = new_aff_list
academia_df = create_df_algorithm(doi_df)
result = Aff_Ids(len(academia_df), academia_df, dix_acad, dix_mult, dix_city, dix_country, 0.65,0.87)
if len(result) == 0:
return
dict_aff_open = {x: y for x, y in zip(result['Original affiliations'], result['Matched organizations'])}
dict_aff_id = {x: y for x, y in zip(result['Original affiliations'], result['unique ROR'])}
dict_aff_score = {}
for i in range(len(result)):
if type(result['Similarity score'].iloc[i]) == list:
dict_aff_score[result['Original affiliations'].iloc[i]] = result['Similarity score'].iloc[i]
else:
dict_aff_score[result['Original affiliations'].iloc[i]] = [result['Similarity score'].iloc[i]]
pids = []
for i in range(len(doi_df)):
pidsi = []
for aff in doi_df['Unique affiliations'].iloc[i]:
if aff in dict_aff_id:
pidsi = pidsi + dict_aff_id[aff]
# elif 'unmatched organization(s)' not in pidsi:
# pidsi = pidsi + ['unmatched organization(s)']
pids.append(pidsi)
names = []
for i in range(len(doi_df)):
namesi = []
for aff in doi_df['Unique affiliations'].iloc[i]:
if aff in dict_aff_open:
try:
namesi = namesi + dict_aff_open[aff]
except TypeError:
namesi = namesi + [dict_aff_open[aff]]
names.append(namesi)
scores = []
for i in range(len(doi_df)):
scoresi = []
for aff in doi_df['Unique affiliations'].iloc[i]:
if aff in dict_aff_score:
scoresi = scoresi + dict_aff_score[aff]
scores.append(scoresi)
doi_df['Matched organizations'] = names
doi_df['ROR'] = pids
doi_df['Scores'] = scores
unmatched = [i for i in range(len(doi_df)) if doi_df['Matched organizations'].iloc[i] == []]
matched = [i for i in range(len(doi_df)) if i not in unmatched]
final_df0 = doi_df.iloc[matched].copy()
final_df0.reset_index(inplace = True)
final_df = final_df0[['DOI',"Unique affiliations",'Matched organizations','ROR', 'Scores']].copy()
def update_Z(row):
if len(row['ROR']) == 0 or len(row['Scores']) == 0:
return []
new_Z = []
for ror, score in zip(row['ROR'], row['Scores']):
entry = {'RORid': ror, 'Confidence': score}
new_Z.append(entry)
return new_Z
matching = final_df.apply(update_Z, axis=1)
unique_matching = []
for x in matching:
list_of_dicts = x
max_values = {}
result_list = []
for d in list_of_dicts:
value1 = d['RORid']
value2 = d['Confidence']
# Check if value1 is already in max_values dictionary
if value1 in max_values:
# If value2 is greater, update max_values
if value2 > max_values[value1]:
max_values[value1] = value2
# Replace the dictionary in the result_list with the one with higher value2
result_list = [item for item in result_list if item['RORid'] != value1]
result_list.append(d)
else:
# If value1 is not in max_values, add it with its value2
max_values[value1] = value2
result_list.append(d)
unique_matching.append(result_list)
new_matching = []
for x in unique_matching:
new_x = []
for y in x:
if dix_status[y['RORid']][0] == 'active':
new_x.append({'Provenance':'AffRo', 'PID':'ROR','Value':y['RORid'], 'Confidence': y['Confidence'], 'Status':'active'})
else:
if dix_status[y['RORid']][1] == '':
new_x.append({'Provenance':'AffRo','PID':'ROR','Value':y['RORid'], 'Confidence': y['Confidence'], 'Status':dix_status[y['RORid']][0]})
else:
new_x.append({'Provenance':'AffRo','PID':'ROR','Value':y['RORid'], 'Confidence': y['Confidence'], 'Status':dix_status[y['RORid']][0]})
new_x.append({'Provenance':'AffRo','PID':'ROR','Value':dix_status[y['RORid']][1], 'Confidence': y['Confidence'], 'Status':'active'})
new_matching.append(new_x)
final_df['Matchings'] = new_matching
# Output
doi_df_output = final_df[['DOI','Matchings']]
dois_match = doi_df_output.to_json(orient='records', lines=True)
# Save the JSON to a file
with open('output/' + name, 'w') as f:
f.write(dois_match)
except Exception as Argument:
logging.exception("Error in thred code for file: " + name)
if __name__ == "__main__":
i = 1
data = []
numberOfThreads = int(sys.argv[2])
executor = ProcessPoolExecutor(max_workers=numberOfThreads)
with tarfile.open(sys.argv[1], "r:gz") as tar:
while True:
member = tar.next()
# returns None if end of tar
if not member:
break
if member.isfile():
print("reading file: " + member.name)
current_file = tar.extractfile(member)
crossref_df = pd.read_json(current_file, orient='records')
# print(crossref_df)
data.append((member.name, crossref_df))
i += 1
if (i > numberOfThreads):
print("execute batch: " + str([name for (name, d) in data]))
futures = [executor.submit(do, name, d) for (name, d) in data]
done, not_done = wait(futures)
# print(done)
print(not_done)
data = []
i = 1
futures = [executor.submit(do, name, d) for (name, d) in data]
done, not_done = wait(futures)
print(not_done)
print("Done")