-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwriter.js
257 lines (239 loc) · 7.49 KB
/
writer.js
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
import fs from 'fs';
import path from 'path';
import { createObjectCsvWriter } from 'csv-writer';
import * as utils from './utils.js';
const createCsvWriter = createObjectCsvWriter;
const writeComponentSvgCSV = (svgRels, outputPath, component) => {
// Write CSV files with componentId and SvgMapId
const csvWriter = createCsvWriter({
path: `${outputPath}${component}SvgMaps.csv`,
header: [
{ id: `${component}Id`, title: `${component}Id` },
{ id: 'svgMapId', title: 'svgMapId' },
],
});
csvWriter.writeRecords(svgRels);
};
const writePMIDCSV = (PMIDs, outputPath) => {
// write the file containing a list of pubmed IDs
const csvWriter = createCsvWriter({
path: `${outputPath}pubmedReferences.csv`,
header: [{ id: 'id', title: 'id' }],
});
csvWriter.writeRecords(
PMIDs.map((id) => {
return { id };
}),
);
};
const writeReactionPMIDCSV = (reactionPMID, outputPath) => {
// write the file containing reaction IDs and its corresponding pubmed IDs
const csvWriter = createCsvWriter({
path: `${outputPath}reactionPubmedReferences.csv`,
header: [
{ id: 'reactionId', title: 'reactionId' },
{ id: 'pubmedReferenceId', title: 'pubmedReferenceId' },
],
});
csvWriter.writeRecords(reactionPMID);
};
const writeComponentExternalDbCSV = (
externalIdDBComponentRel,
outputPath,
fcomponent,
) => {
// Write the file containing externalDb IDs for each component
const csvWriter = createCsvWriter({
path: `${outputPath}${fcomponent}ExternalDbs.csv`,
header: [
{ id: `${fcomponent}Id`, title: `${fcomponent}Id` },
{ id: 'externalDbId', title: 'externalDbId' },
],
});
csvWriter.writeRecords(
externalIdDBComponentRel.map((e) => {
return { [`${fcomponent}Id`]: e.id, externalDbId: e.externalDbId };
}),
);
};
const writeSvgCSV = (svgNodes, outputPath) => {
// Write the file containing a list of SvgMap files
const csvWriter = createCsvWriter({
path: `${outputPath}svgMaps.csv`,
header: svgNodes.length
? Object.keys(svgNodes[0]).map((k) => Object({ id: k, title: k }))
: '',
});
csvWriter.writeRecords(svgNodes);
};
const writeExternalDbCSV = (externalIdNodes, outputPath) => {
// Write the file containing all externalDb info
const csvWriter = createCsvWriter({
path: `${outputPath}externalDbs.csv`,
header: [
{ id: 'id', title: 'id' },
{ id: 'dbName', title: 'dbName' },
{ id: 'externalId', title: 'externalId' },
{ id: 'url', title: 'url' },
],
});
csvWriter.writeRecords(externalIdNodes);
};
const writeMetaboliteCompartmentCSV = (content, outputPath) => {
const compartmentLetterToIdMap = content.compartment.reduce((entries, c) => {
// return a map which can get the compartment ID from the compartment letter
return {
...entries,
[c.letterCode]: c.compartmentId,
};
}, {});
const csvWriter = createCsvWriter({
path: `${outputPath}compartmentalizedMetaboliteCompartments.csv`,
header: [
{
id: 'compartmentalizedMetaboliteId',
title: 'compartmentalizedMetaboliteId',
},
{ id: 'compartmentId', title: 'compartmentId' },
],
});
csvWriter.writeRecords(
content.compartmentalizedMetabolite.map((e) => {
return {
compartmentalizedMetaboliteId: e.compartmentalizedMetaboliteId,
compartmentId: compartmentLetterToIdMap[e.compartment],
};
}),
);
};
const writeMetaboliteCSV = (content, outputPath) => {
const csvWriter = createCsvWriter({
path: `${outputPath}compartmentalizedMetabolites.csv`,
header: [{ id: 'id', title: 'id' }],
});
csvWriter.writeRecords(
content.compartmentalizedMetabolite.map((e) => {
return { id: e.compartmentalizedMetaboliteId };
}),
);
};
const writeMetaboliteMetaboliteRelCSV = (
content,
uniqueCompartmentalizedMap,
outputPath,
) => {
const csvWriter = createCsvWriter({
path: `${outputPath}compartmentalizedMetaboliteMetabolites.csv`,
header: [
{
id: 'compartmentalizedMetaboliteId',
title: 'compartmentalizedMetaboliteId',
},
{ id: 'metaboliteId', title: 'metaboliteId' },
],
});
csvWriter.writeRecords(
content.compartmentalizedMetabolite.map((e) => {
return {
compartmentalizedMetaboliteId: e.compartmentalizedMetaboliteId,
metaboliteId:
uniqueCompartmentalizedMap[e.compartmentalizedMetaboliteId],
};
}),
);
};
const writeRRCSV = (reactionReactantRecords, outputPath) => {
// write reaction-reactants relationship files
const csvWriterRR = createCsvWriter({
path: `${outputPath}compartmentalizedMetaboliteReactions.csv`,
header: [
{
id: 'compartmentalizedMetaboliteId',
title: 'compartmentalizedMetaboliteId',
},
{ id: 'reactionId', title: 'reactionId' },
{ id: 'stoichiometry', title: 'stoichiometry' },
],
});
csvWriterRR.writeRecords(reactionReactantRecords);
};
const writeRPCSV = (reactionProductRecords, outputPath) => {
// write reaction-products relationship files
const csvWriterRP = createCsvWriter({
path: `${outputPath}reactionCompartmentalizedMetabolites.csv`,
header: [
{ id: 'reactionId', title: 'reactionId' },
{
id: 'compartmentalizedMetaboliteId',
title: 'compartmentalizedMetaboliteId',
},
{ id: 'stoichiometry', title: 'stoichiometry' },
],
});
csvWriterRP.writeRecords(reactionProductRecords);
};
const writeRGCSV = (reactionGeneRecords, outputPath) => {
// write reaction-genes relationship files
const csvWriterRG = createCsvWriter({
path: `${outputPath}reactionGenes.csv`,
header: [
{ id: 'reactionId', title: 'reactionId' },
{ id: 'geneId', title: 'geneId' },
],
});
csvWriterRG.writeRecords(reactionGeneRecords);
};
const writeRSCSV = (reactionSubsystemRecords, outputPath) => {
// write reaction-subsystems relationship files
const csvWriterRS = createCsvWriter({
path: `${outputPath}reactionSubsystems.csv`,
header: [
{ id: 'reactionId', title: 'reactionId' },
{ id: 'subsystemId', title: 'subsystemId' },
],
});
csvWriterRS.writeRecords(reactionSubsystemRecords);
};
const writeComponentCSV = (content, k, outputPath) => {
const elements = content[k];
const csvWriter = createCsvWriter({
path: `${outputPath}${k}s.csv`,
header: [Object({ id: 'id', title: 'id' })],
});
csvWriter.writeRecords(elements.map((e) => Object({ id: e[`${k}Id`] })));
};
const writeComponentStateCSV = (content, k, outputPath) => {
const elements = content[k];
const csvWriter = createCsvWriter({
path: `${outputPath}${k}States.csv`,
header: Object.keys(elements[0])
// ignore some keys 'metabolites', 'subsystems' are in reactions, 'compartment' is in metabolite
.filter((k) => !['metabolites', 'subsystems', 'compartment'].includes(k))
.map((k) => Object({ id: k, title: k })),
});
// destructure object to remove the keys
csvWriter.writeRecords(
elements.map(({ subsystems, metabolites, compartment, ...e }) => e),
);
};
const writeCypherFile = (instructions, outDir) => {
fs.writeFileSync(`${outDir}/import.cypher`, instructions.join('\n'), 'utf8');
};
export {
writeComponentSvgCSV,
writePMIDCSV,
writeReactionPMIDCSV,
writeComponentExternalDbCSV,
writeSvgCSV,
writeExternalDbCSV,
writeMetaboliteCompartmentCSV,
writeMetaboliteCSV,
writeMetaboliteMetaboliteRelCSV,
writeRRCSV,
writeRPCSV,
writeRGCSV,
writeRSCSV,
writeComponentCSV,
writeComponentStateCSV,
writeCypherFile,
};