-
Notifications
You must be signed in to change notification settings - Fork 533
Expand file tree
/
Copy pathWeb of Science Tagged.js
More file actions
1341 lines (1295 loc) · 64.2 KB
/
Web of Science Tagged.js
File metadata and controls
1341 lines (1295 loc) · 64.2 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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"translatorID": "594ebe3c-90a0-4830-83bc-9502825a6810",
"label": "Web of Science Tagged",
"creator": "Michael Berkowitz, Avram Lyon, jiaojiaodubai, and contributors",
"target": "txt",
"minVersion": "5.0",
"maxVersion": "",
"priority": 100,
"displayOptions": {
"exportCharset": "UTF-8",
"exportNotes": true
},
"inRepository": true,
"translatorType": 3,
"lastUpdated": "2025-09-09 16:38:04"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2015-2021 Michael Berkowitz, Avram Lyon, and contributors.
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
/* References */
// Export Records
// https://webofscience.help.clarivate.com/en-us/Content/export-records.htm
// Web of Science Core Collection: List of field tags in output
// https://support.clarivate.com/ScientificandAcademicResearch/s/article/Web-of-Science-Core-Collection-List-of-field-tags-in-output?language=en_US
const PUBLICATION_TYPE_MAP = {
B: 'book',
S: 'bookSection',
J: 'journalArticle',
P: 'patent'
};
// Web of Science Core Collection: Document Type Descriptions
// https://support.clarivate.com/ScientificandAcademicResearch/s/article/Web-of-Science-Core-Collection-Document-Type-Descriptions?language=en_US
const DOCUMENT_TYPE_MAP = {
// DT overrides; not including anything already covered by the above.
// TODO: Add more implementations for DT values as needed.
Book: 'book',
'Book Chapter': 'bookSection',
'Proceedings Paper': 'conferencePaper',
Review: 'journalArticle'
};
// A Zotero field may correspond to multiple tags,
// which are placed in array according to the priority order
const IMPORT_FIELD_MAP = {
abstractNote: [
'AB',
'MA',
'TF',
'A2',
'MI',
'AK',
'X4',
'Y4',
'Z4'
],
accessDate: ['DA', 'EY'],
applicationNumber: ['OP'],
assignee: ['AE'],
conferenceName: ['CT'],
country: ['PC', 'OC'],
date: [
'PD',
'PY',
'CY'
],
issueDate: [
'PD',
'PY'
],
DOI: ['DI', 'D2'],
edition: ['CE'],
filingDate: ['DF'],
ISBN: ['BN'],
ISSN: [
'SN',
'EI'
],
issue: ['IS', 'SI'],
journalAbbreviation: ['JI', 'J9'],
language: ['LA', 'LS'],
libraryCatalog: ['FN'],
number: ['AR'],
numPages: ['PG'],
// BP: begin page
// EP: end page
pages: ['PS'],
patentNumber: ['PN'],
place: [
'CL',
'PI',
'PA',
'PV'
],
proceedingsTitle: ['SO', 'Z3'],
publicationTitle: ['SO', 'Z3'],
publisher: ['PU'],
reference: ['CR'],
series: ['SE'],
title: ['TI', 'Y1'],
type: ['DY'],
url: [
'DL',
'UR',
'AW',
'UC'
],
version: ['VN'],
volume: ['VL'],
};
const IMPORT_EXTRA_MAP = {
organizer: ['HO'],
'original-container-title': ['S1'],
'original-title': [
'X1',
'X2',
'Z1',
'FT'
],
status: ['SA'],
'Web of Science ID': ['UT'],
};
const ITEM_TAGS = [
'BD',
'DE',
'ID',
'IP',
'MC',
'MQ',
'OR',
'WC',
'Y5',
'Z5',
'X5',
'ZK'
];
const ITEM_NOTES = {
NT: 'Notes',
NO: 'Comments, Corrections, Erratum',
TN: 'Taxa Notes'
};
const IMPORT_CREATOR_MAP = {
author: [
'AF',
'AU',
'IV',
'GP'
],
bookAuthor: [
'BF',
'BA'
],
creator: ['AA'],
editor: [
'ED',
'BE'
],
inventor: ['AU'],
translator: ['TR']
};
function detectImport() {
// If we don't find item type (PT or DT) within first 10 non-empty lines,
// return false; see also RIS.js.
let line;
let i = 0;
while ((line = Zotero.read()) !== false && i < 10) {
// It has been confirmed that these two tags do not conflict with Refworks Tagged Format
if (/^(PT|DT)/.test(line)) {
return true;
}
i++;
}
return false;
}
function doImport() {
let line, tag, content;
let record = {};
while ((line = Zotero.read()) !== false) {
line = line.replace(/\uFEFF/g, '');
if (line == '') continue;
// End of record
if (line == 'ER') {
saveRecord(record);
// Reset to prepare for the next record that may exist
record = {};
}
// End of file
else if (line == 'EF') {
break;
}
// Regular Tag
else if (/^[A-Z][A-Z1-9] .*$/.test(line)) {
tag = line.slice(0, 2);
content = line.slice(3).trim();
if (Object.values(IMPORT_CREATOR_MAP).flat().includes(tag)) {
record[tag] = [content];
}
else {
record[tag] = content;
}
}
// Line continuation
else if (tag) {
content = line.trim();
if (Object.values(IMPORT_CREATOR_MAP).flat().includes(tag)) {
record[tag].push(content);
}
else {
record[tag] += ` ${content}`;
}
}
}
return false;
}
function saveRecord(record) {
const itemType = DOCUMENT_TYPE_MAP[record.DT] || PUBLICATION_TYPE_MAP[record.PT];
if (!itemType) {
Z.debug(`Unknow item type, PT: ${record.PT}, DT: ${record.DT}`);
return;
}
const item = new Z.Item(itemType);
/* Creators */
for (const [creatorType, tags] of Object.entries(IMPORT_CREATOR_MAP)) {
const tag = tags.find(tag => tag in record);
if (tag && ZU.getCreatorsForType(itemType).includes(creatorType)) {
record[tag].forEach((name) => {
let nameWithComma = name.replace(/\(.*\)/g, '');
// as "LAST F", rather than "Last, F"
if (!nameWithComma.includes(', ')) {
// replace first space
nameWithComma = nameWithComma.replace(' ', ', ');
}
item.creators.push(ZU.cleanAuthor(nameWithComma, creatorType, true));
});
}
}
/* Notes */
for (const [tag, title] of Object.entries(ITEM_NOTES)) {
if (tag in record) {
item.notes.push(`<h1>${title}</h1>\n${record[tag]}`);
}
}
/* Tags */
for (const tag of ITEM_TAGS) {
if (tag in record) {
record[tag].split('; ').forEach(itemTag => item.tags.push(itemTag));
}
}
/* Other valid fields */
for (const [field, tags] of Object.entries(IMPORT_FIELD_MAP)) {
const tag = tags.find(tag => tag in record);
if (!tag) continue;
let value = record[tag];
if (['title', 'publicationTitle', 'proceedingsTitle'].includes(field)) {
value = capitalizeTitleWithAbbreviations(value);
}
else if (field == 'date') {
if (tag == 'PD') {
// If the year is missing, add it
if (record.PY && !record.PD.includes(record.PY)) {
value = `${record.PD} ${record.PY}`;
}
// Season cannot be formatted as yyyy-MM-dd format
if (!['SPR', 'SUM', 'FAL', 'WIN'].some(season => value.includes(season))) {
value = ZU.strToISO(value);
}
}
}
else if (field == 'DOI') {
value = ZU.cleanDOI(value);
}
else if (field == 'filingDate') {
value = ZU.strToISO(value);
}
else if (field == 'place') {
value = ZU.capitalizeTitle(value, true);
}
else if (field == 'ISSN') {
value = tags.map(key => record[key]).filter(Boolean).join(', ');
}
else if (['assignee', 'conferenceName', 'publisher'].includes(field)) {
value = capitalizeTitleWithAbbreviations(value, true);
}
else if (['volume', 'issue', 'pages'].includes(field)) {
value = value.replace(/\b0*(\d+)/g, '$1');
}
else if (field == 'language') {
value = {
English: 'en'
}[value] || value;
}
if (ZU.fieldIsValidForType(field, itemType)) {
item[field] = value;
}
// Some general fields can be considered for extra
else if (['DOI', 'numPages', 'publisher'].includes(field)) {
item.setExtra(field, value);
}
}
/* Extra fields */
for (const [field, tags] of Object.entries(IMPORT_EXTRA_MAP)) {
for (const tag of tags) {
if (tag in record) {
item.setExtra(field, record[tag]);
break;
}
}
}
/* Corrections */
if (
ZU.fieldIsValidForType('pages', itemType)
&& !item.pages
&& 'BP' in record
) {
item.pages = `${record.BP}${record.EP ? '-' : ''}${record.EP || ''}`;
}
if (itemType == 'conferencePaper') {
for (const tag of IMPORT_FIELD_MAP.place) {
if (tag != 'CL' && tag in record) {
item.setExtra('publisher-place', capitalizeTitleWithAbbreviations(record[tag], true));
break;
}
}
}
item.complete();
}
/**
* like ZU.capitalizeTitle but mindful of some words that are often encountered
* in conference or publisher names. This is most useful for cleaning all-cap
* fields that are not titles.
*/
function capitalizeTitleWithAbbreviations(string, force) {
const allCaps = ['ACM', 'AIP', 'BMC', 'BMJ', 'CRC', 'IEEE', 'JAMA', 'MDPI', 'SAGE', 'USA'];
const wordForms = { IOP: 'IoP', PEERJ: 'PeerJ', PLOS: 'PLoS' };
allCaps.forEach(word => wordForms[word] = word);
let title = ZU.capitalizeTitle(ZU.trimInternal(string), force);
for (const [word, form] of Object.entries(wordForms)) {
title = title.replace(new RegExp(`\\b${word}\\b`, 'gi'), form);
}
return title;
}
const EXPORT_FIELD_MAP = {
abstractNote: 'AB',
applicationNumber: 'OP',
assignee: 'AE',
bookTitle: 'SO',
conferenceName: 'CT',
country: 'PC',
date: 'PD',
DOI: {
book: 'D2',
default: 'DI'
},
edition: 'CE',
filingDate: 'DF',
ISBN: 'BN',
ISSN: 'SN',
issue: 'IS',
issueDate: 'PD',
journalAbbreviation: 'J9',
language: 'LA',
numPages: 'PG',
number: 'AR',
pages: 'PS',
patentNumber: 'PN',
place: {
book: 'PI',
bookSection: 'PI',
conferencePaper: 'CL',
patent: 'C1'
},
proceedingsTitle: 'SO',
publicationTitle: 'SO',
publisher: 'PU',
series: 'SE',
seriesTitle: 'SE',
title: 'TI',
type: 'DY',
url: 'UR',
version: 'VN',
volume: 'VL'
};
const EXPORT_CREATOR_MAP = {
author: 'AU',
bookAuthor: 'BA',
creator: 'AA',
editor: {
book: 'BE',
bookSection: 'BE',
default: 'ED'
},
inventor: 'AU',
translator: 'TR'
};
function doExport() {
let lines = [];
function writeLine(tag, content) {
if (tag && content) {
lines.push(`${tag} ${content}`);
}
else if (tag && content === undefined) {
lines.push(tag);
}
}
let item;
while ((item = Zotero.nextItem())) {
lines = [];
/* Publication type */
for (const key in PUBLICATION_TYPE_MAP) {
if (PUBLICATION_TYPE_MAP[key] == item.itemType) {
writeLine('PT', key);
break;
}
}
if (!lines.length) {
Z.debug(`Unsupported item type: ${item.itemType}`);
continue;
}
/* Document type */
writeLine('DT', {
book: 'Book',
bookSection: 'Book Chapter',
conferencePaper: 'Proceedings Paper',
journalArticle: 'Article',
patent: 'Patent'
}[item.itemType]);
/* Creators */
for (const creatorType in EXPORT_CREATOR_MAP) {
let tag = EXPORT_CREATOR_MAP[creatorType];
const creators = item.creators.filter(creator => creator.creatorType == creatorType);
if (!creators.length) continue;
if (typeof tag == 'object') {
tag = tag[item.itemType] || tag.default;
}
creators.forEach((creator, index) => {
const name = creator.firstName
? `${creator.lastName}, ${creator.firstName}`
: creator.lastName || creator.name;
writeLine(index == 0 ? tag : ' ', name);
});
}
/* Other valid fields */
for (const field in EXPORT_FIELD_MAP) {
let tag = EXPORT_FIELD_MAP[field];
let value;
if (ZU.fieldIsValidForType(field, item.itemType) && (value = item[field])) {
if (typeof tag == 'object') {
tag = tag[item.itemType] || tag.default;
}
if (['date', 'filingDate', 'issueDate'].includes(field)) {
const yearMatch = value.match(/\d{4}/);
if (yearMatch && ['date', 'issueDate'].includes(field)) {
writeLine('PY', yearMatch[0]);
}
writeLine(tag, isoToWosDate(value));
}
else {
writeLine(tag, value);
}
}
}
if (item.pages) {
if (item.pages.includes('-')) {
const [start, end] = item.pages.split('-');
writeLine('BP', start);
writeLine('EP', end);
}
else {
writeLine('BP', item.pages);
}
}
if (item.accessDate) {
writeLine('DA', ZU.strToISO(item.accessDate));
}
/* Tags */
writeLine('ID', item.tags.map(tag => tag.tag).join('; '));
/* Notes */
if (Zotero.getOption('exportNotes')) {
item.notes.forEach((note) => {
writeLine('NT', note);
});
}
/* Further corrections */
switch (item.itemType) {
case 'book':
case 'bookSection':
writeLine('D2', getExtra(item, 'DOI'));
break;
case 'conferencePaper':
writeLine('HO', getExtra(item, 'origanizer'));
writeLine('PI', getExtra(item, 'publisher-place'));
break;
case 'journalArticle':
writeLine('AR', getExtra(item, 'number'));
writeLine('X1', getExtra(item, 'original-title'));
writeLine('S1', getExtra(item, 'original-container-title'));
break;
}
writeLine('UT', getExtra(item, 'Web of Science ID'));
writeLine('ER');
Zotero.write(`${lines.join('\n')}\n\n`);
}
Zotero.write('EF');
}
function getExtra(item, field) {
const extra = item.extra;
if (extra) {
for (const line of extra.split('\n')) {
const match = line.match(/^([^:]+): (.*)$/);
if (match && match[1] && match[2]) {
// Expected field pattern: /\S+([_ -].+)*/, /\S*([^A-Z][A-Z])*/
const kebabField = match[1]
.replace(/[_ ]/g, '-')
.replace(/([^A-Z-])([A-Z])/g, (_, m1, m2) => `${m1}-${m2}`)
.toLowerCase();
if (field == kebabField) {
return match[2];
}
}
}
}
return '';
}
function isoToWosDate(date) {
if (!date) return '';
const monthAbbrs = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'];
if (/\d{4}-\d{1,2}(-\d{1,2})?/.test(date)) {
const [year, month, day] = date.split('-');
if (month) {
return `${monthAbbrs[parseInt(month) - 1]}${day ? ` ${day.replace(/^0/, '')}` : ''} ${year}`;
}
}
return date;
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "import",
"input": "FN Thomson Reuters Web of Knowledge\nVR 1.0\nPT J\nAU Zelle, Rintze M.\n Harrison, Jacob C.\n Pronk, Jack T.\n van Maris, Antonius J. A.\nTI Anaplerotic Role for Cytosolic Malic Enzyme in Engineered Saccharomyces\n cerevisiae Strains\nSO APPLIED AND ENVIRONMENTAL MICROBIOLOGY\nVL 77\nIS 3\nBP 732\nEP 738\nDI 10.1128/AEM.02132-10\nPD FEB 2011\nPY 2011\nAB Malic enzyme catalyzes the reversible oxidative decarboxylation of\n malate to pyruvate and CO(2). The Saccharomyces cerevisiae MAE1 gene\n encodes a mitochondrial malic enzyme whose proposed physiological roles\n are related to the oxidative, malate-decarboxylating reaction. Hitherto,\n the inability of pyruvate carboxylase-negative (Pyc(-)) S. cerevisiae\n strains to grow on glucose suggested that Mae1p cannot act as a\n pyruvate-carboxylating, anaplerotic enzyme. In this study, relocation of\n malic enzyme to the cytosol and creation of thermodynamically favorable\n conditions for pyruvate carboxylation by metabolic engineering, process\n design, and adaptive evolution, enabled malic enzyme to act as the sole\n anaplerotic enzyme in S. cerevisiae. The Escherichia coli NADH-dependent\n sfcA malic enzyme was expressed in a Pyc(-) S. cerevisiae background.\n When PDC2, a transcriptional regulator of pyruvate decarboxylase genes,\n was deleted to increase intracellular pyruvate levels and cells were\n grown under a CO(2) atmosphere to favor carboxylation, adaptive\n evolution yielded a strain that grew on glucose (specific growth rate,\n 0.06 +/- 0.01 h(-1)). Growth of the evolved strain was enabled by a\n single point mutation (Asp336Gly) that switched the cofactor preference\n of E. coli malic enzyme from NADH to NADPH. Consistently, cytosolic\n relocalization of the native Mae1p, which can use both NADH and NADPH,\n in a pyc1,2 Delta pdc2 Delta strain grown under a CO(2) atmosphere, also\n enabled slow-growth on glucose. Although growth rates of these strains\n are still low, the higher ATP efficiency of carboxylation via malic\n enzyme, compared to the pyruvate carboxylase pathway, may contribute to\n metabolic engineering of S. cerevisiae for anaerobic, high-yield\n C(4)-dicarboxylic acid production.\nTC 0\nZ9 0\nSN 0099-2240\nUT WOS:000286597100004\nER\n\nPT J\nAU Zelle, Rintze M.\n Trueheart, Josh\n Harrison, Jacob C.\n Pronk, Jack T.\n van Maris, Antonius J. A.\nTI Phosphoenolpyruvate Carboxykinase as the Sole Anaplerotic Enzyme in\n Saccharomyces cerevisiae\nSO APPLIED AND ENVIRONMENTAL MICROBIOLOGY\nVL 76\nIS 16\nBP 5383\nEP 5389\nDI 10.1128/AEM.01077-10\nPD AUG 2010\nPY 2010\nAB Pyruvate carboxylase is the sole anaplerotic enzyme in glucose-grown\n cultures of wild-type Saccharomyces cerevisiae. Pyruvate\n carboxylase-negative (Pyc(-)) S. cerevisiae strains cannot grow on\n glucose unless media are supplemented with C(4) compounds, such as\n aspartic acid. In several succinate-producing prokaryotes,\n phosphoenolpyruvate carboxykinase (PEPCK) fulfills this anaplerotic\n role. However, the S. cerevisiae PEPCK encoded by PCK1 is repressed by\n glucose and is considered to have a purely decarboxylating and\n gluconeogenic function. This study investigates whether and under which\n conditions PEPCK can replace the anaplerotic function of pyruvate\n carboxylase in S. cerevisiae. Pyc(-) S. cerevisiae strains\n constitutively overexpressing the PEPCK either from S. cerevisiae or\n from Actinobacillus succinogenes did not grow on glucose as the sole\n carbon source. However, evolutionary engineering yielded mutants able to\n grow on glucose as the sole carbon source at a maximum specific growth\n rate of ca. 0.14 h(-1), one-half that of the (pyruvate\n carboxylase-positive) reference strain grown under the same conditions.\n Growth was dependent on high carbon dioxide concentrations, indicating\n that the reaction catalyzed by PEPCK operates near thermodynamic\n equilibrium. Analysis and reverse engineering of two independently\n evolved strains showed that single point mutations in pyruvate kinase,\n which competes with PEPCK for phosphoenolpyruvate, were sufficient to\n enable the use of PEPCK as the sole anaplerotic enzyme. The PEPCK\n reaction produces one ATP per carboxylation event, whereas the original\n route through pyruvate kinase and pyruvate carboxylase is ATP neutral.\n This increased ATP yield may prove crucial for engineering of efficient\n and low-cost anaerobic production of C(4) dicarboxylic acids in S.\n cerevisiae.\nTC 1\nZ9 1\nSN 0099-2240\nUT WOS:000280633400006\nER\n\nPT J\nAU Zelle, Rintze M.\n De Hulster, Erik\n Kloezen, Wendy\n Pronk, Jack T.\n van Maris, Antonius J. A.\nTI Key Process Conditions for Production of C(4) Dicarboxylic Acids in\n Bioreactor Batch Cultures of an Engineered Saccharomyces cerevisiae\n Strain\nSO APPLIED AND ENVIRONMENTAL MICROBIOLOGY\nVL 76\nIS 3\nBP 744\nEP 750\nDI 10.1128/AEM.02396-09\nPD FEB 2010\nPY 2010\nAB A recent effort to improve malic acid production by Saccharomyces\n cerevisiae by means of metabolic engineering resulted in a strain that\n produced up to 59 g liter(-1) of malate at a yield of 0.42 mol (mol\n glucose)(-1) in calcium carbonate-buffered shake flask cultures. With\n shake flasks, process parameters that are important for scaling up this\n process cannot be controlled independently. In this study, growth and\n product formation by the engineered strain were studied in bioreactors\n in order to separately analyze the effects of pH, calcium, and carbon\n dioxide and oxygen availability. A near-neutral pH, which in shake\n flasks was achieved by adding CaCO(3), was required for efficient C(4)\n dicarboxylic acid production. Increased calcium concentrations, a side\n effect of CaCO(3) dissolution, had a small positive effect on malate\n formation. Carbon dioxide enrichment of the sparging gas (up to 15%\n [vol/vol]) improved production of both malate and succinate. At higher\n concentrations, succinate titers further increased, reaching 0.29 mol\n (mol glucose)(-1), whereas malate formation strongly decreased. Although\n fully aerobic conditions could be achieved, it was found that moderate\n oxygen limitation benefitted malate production. In conclusion, malic\n acid production with the engineered S. cerevisiae strain could be\n successfully transferred from shake flasks to 1-liter batch bioreactors\n by simultaneous optimization of four process parameters (pH and\n concentrations of CO(2), calcium, and O(2)). Under optimized conditions,\n a malate yield of 0.48 +/- 0.01 mol (mol glucose)(-1) was obtained in\n bioreactors, a 19% increase over yields in shake flask experiments.\nTC 2\nZ9 2\nSN 0099-2240\nUT WOS:000274017400015\nER\n\nPT J\nAU Abbott, Derek A.\n Zelle, Rintze M.\n Pronk, Jack T.\n van Maris, Antonius J. A.\nTI Metabolic engineering of Saccharomyces cerevisiae for production of\n carboxylic acids: current status and challenges\nSO FEMS YEAST RESEARCH\nVL 9\nIS 8\nBP 1123\nEP 1136\nDI 10.1111/j.1567-1364.2009.00537.x\nPD DEC 2009\nPY 2009\nAB To meet the demands of future generations for chemicals and energy and\n to reduce the environmental footprint of the chemical industry,\n alternatives for petrochemistry are required. Microbial conversion of\n renewable feedstocks has a huge potential for cleaner, sustainable\n industrial production of fuels and chemicals. Microbial production of\n organic acids is a promising approach for production of chemical\n building blocks that can replace their petrochemically derived\n equivalents. Although Saccharomyces cerevisiae does not naturally\n produce organic acids in large quantities, its robustness, pH tolerance,\n simple nutrient requirements and long history as an industrial workhorse\n make it an excellent candidate biocatalyst for such processes. Genetic\n engineering, along with evolution and selection, has been successfully\n used to divert carbon from ethanol, the natural endproduct of S.\n cerevisiae, to pyruvate. Further engineering, which included expression\n of heterologous enzymes and transporters, yielded strains capable of\n producing lactate and malate from pyruvate. Besides these metabolic\n engineering strategies, this review discusses the impact of transport\n and energetics as well as the tolerance towards these organic acids. In\n addition to recent progress in engineering S. cerevisiae for organic\n acid production, the key limitations and challenges are discussed in the\n context of sustainable industrial production of organic acids from\n renewable feedstocks.\nTC 11\nZ9 11\nSN 1567-1356\nUT WOS:000271264400001\nER\n\nPT J\nAU Zelle, Rintze M.\n de Hulster, Erik\n van Winden, WoUter A.\n de Waard, Pieter\n Dijkema, Cor\n Winkler, Aaron A.\n Geertman, Jan-Maarten A.\n van Dijken, Johannes P.\n Pronk, Jack T.\n van Maris, Antonius J. A.\nTI Malic acid production by Saccharomyces cerevisiae: Engineering of\n pyruvate carboxylation, oxaloacetate reduction, and malate export\nSO APPLIED AND ENVIRONMENTAL MICROBIOLOGY\nVL 74\nIS 9\nBP 2766\nEP 2777\nDI 10.1128/AEM.02591-07\nPD MAY 2008\nPY 2008\nAB Malic acid is a potential biomass-derivable \"building block\" for\n chemical synthesis. Since wild-type Saccharomyces cerevisiae strains\n produce only low levels of malate, metabolic engineering is required to\n achieve efficient malate production with this yeast. A promising pathway\n for malate production from glucose proceeds via carboxylation of\n pyruvate, followed by reduction of oxaloacetate to malate. This redox-\n and ATP-neutral, CO2-fixing pathway has a theoretical maximum yield of 2\n mol malate (mol glucose)(-1). A previously engineered glucose-tolerant,\n C-2-independent pyruvate decarboxylase-negative S. cerevisiae strain was\n used as the platform to evaluate the impact of individual and combined\n introduction of three genetic modifications: (i) overexpression of the\n native pyruvate carboxylase encoded by PYC2, (ii) high-level expression\n of an allele of the MDH3 gene, of which the encoded malate dehydrogenase\n was retargeted to the cytosol by deletion of the C-terminal peroxisomal\n targeting sequence, and (iii) functional expression of the\n Schizosaccharomyces pombe malate transporter gene SpMAE1. While single\n or double modifications improved malate production, the highest malate\n yields and titers were obtained with the simultaneous introduction of\n all three modifications. In glucose-grown batch cultures, the resulting\n engineered strain produced malate at titers of up to 59 g liter(-1) at a\n malate yield of 0.42 mol (mol glucose)(-1). Metabolic flux analysis\n showed that metabolite labeling patterns observed upon nuclear magnetic\n resonance analyses of cultures grown on C-13-labeled glucose were\n consistent with the envisaged nonoxidative, fermentative pathway for\n malate production. The engineered strains still produced substantial\n amounts of pyruvate, indicating that the pathway efficiency can be\n further improved.\nTC 15\nZ9 17\nSN 0099-2240\nUT WOS:000255567900024\nER\n\nEF",
"items": [
{
"itemType": "journalArticle",
"title": "Anaplerotic Role for Cytosolic Malic Enzyme in Engineered Saccharomyces cerevisiae Strains",
"creators": [
{
"firstName": "Rintze M.",
"lastName": "Zelle",
"creatorType": "author"
},
{
"firstName": "Jacob C.",
"lastName": "Harrison",
"creatorType": "author"
},
{
"firstName": "Jack T.",
"lastName": "Pronk",
"creatorType": "author"
},
{
"firstName": "Antonius J. A.",
"lastName": "van Maris",
"creatorType": "author"
}
],
"date": "2011-02",
"DOI": "10.1128/AEM.02132-10",
"ISSN": "0099-2240",
"abstractNote": "Malic enzyme catalyzes the reversible oxidative decarboxylation of malate to pyruvate and CO(2). The Saccharomyces cerevisiae MAE1 gene encodes a mitochondrial malic enzyme whose proposed physiological roles are related to the oxidative, malate-decarboxylating reaction. Hitherto, the inability of pyruvate carboxylase-negative (Pyc(-)) S. cerevisiae strains to grow on glucose suggested that Mae1p cannot act as a pyruvate-carboxylating, anaplerotic enzyme. In this study, relocation of malic enzyme to the cytosol and creation of thermodynamically favorable conditions for pyruvate carboxylation by metabolic engineering, process design, and adaptive evolution, enabled malic enzyme to act as the sole anaplerotic enzyme in S. cerevisiae. The Escherichia coli NADH-dependent sfcA malic enzyme was expressed in a Pyc(-) S. cerevisiae background. When PDC2, a transcriptional regulator of pyruvate decarboxylase genes, was deleted to increase intracellular pyruvate levels and cells were grown under a CO(2) atmosphere to favor carboxylation, adaptive evolution yielded a strain that grew on glucose (specific growth rate, 0.06 +/- 0.01 h(-1)). Growth of the evolved strain was enabled by a single point mutation (Asp336Gly) that switched the cofactor preference of E. coli malic enzyme from NADH to NADPH. Consistently, cytosolic relocalization of the native Mae1p, which can use both NADH and NADPH, in a pyc1,2 Delta pdc2 Delta strain grown under a CO(2) atmosphere, also enabled slow-growth on glucose. Although growth rates of these strains are still low, the higher ATP efficiency of carboxylation via malic enzyme, compared to the pyruvate carboxylase pathway, may contribute to metabolic engineering of S. cerevisiae for anaerobic, high-yield C(4)-dicarboxylic acid production.",
"extra": "Web of Science ID: WOS:000286597100004",
"issue": "3",
"libraryCatalog": "Thomson Reuters Web of Knowledge",
"pages": "732-738",
"publicationTitle": "APPLIED AND ENVIRONMENTAL MICROBIOLOGY",
"volume": "77",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
},
{
"itemType": "journalArticle",
"title": "Phosphoenolpyruvate Carboxykinase as the Sole Anaplerotic Enzyme in Saccharomyces cerevisiae",
"creators": [
{
"firstName": "Rintze M.",
"lastName": "Zelle",
"creatorType": "author"
},
{
"firstName": "Josh",
"lastName": "Trueheart",
"creatorType": "author"
},
{
"firstName": "Jacob C.",
"lastName": "Harrison",
"creatorType": "author"
},
{
"firstName": "Jack T.",
"lastName": "Pronk",
"creatorType": "author"
},
{
"firstName": "Antonius J. A.",
"lastName": "van Maris",
"creatorType": "author"
}
],
"date": "2010-08",
"DOI": "10.1128/AEM.01077-10",
"ISSN": "0099-2240",
"abstractNote": "Pyruvate carboxylase is the sole anaplerotic enzyme in glucose-grown cultures of wild-type Saccharomyces cerevisiae. Pyruvate carboxylase-negative (Pyc(-)) S. cerevisiae strains cannot grow on glucose unless media are supplemented with C(4) compounds, such as aspartic acid. In several succinate-producing prokaryotes, phosphoenolpyruvate carboxykinase (PEPCK) fulfills this anaplerotic role. However, the S. cerevisiae PEPCK encoded by PCK1 is repressed by glucose and is considered to have a purely decarboxylating and gluconeogenic function. This study investigates whether and under which conditions PEPCK can replace the anaplerotic function of pyruvate carboxylase in S. cerevisiae. Pyc(-) S. cerevisiae strains constitutively overexpressing the PEPCK either from S. cerevisiae or from Actinobacillus succinogenes did not grow on glucose as the sole carbon source. However, evolutionary engineering yielded mutants able to grow on glucose as the sole carbon source at a maximum specific growth rate of ca. 0.14 h(-1), one-half that of the (pyruvate carboxylase-positive) reference strain grown under the same conditions. Growth was dependent on high carbon dioxide concentrations, indicating that the reaction catalyzed by PEPCK operates near thermodynamic equilibrium. Analysis and reverse engineering of two independently evolved strains showed that single point mutations in pyruvate kinase, which competes with PEPCK for phosphoenolpyruvate, were sufficient to enable the use of PEPCK as the sole anaplerotic enzyme. The PEPCK reaction produces one ATP per carboxylation event, whereas the original route through pyruvate kinase and pyruvate carboxylase is ATP neutral. This increased ATP yield may prove crucial for engineering of efficient and low-cost anaerobic production of C(4) dicarboxylic acids in S. cerevisiae.",
"extra": "Web of Science ID: WOS:000280633400006",
"issue": "16",
"pages": "5383-5389",
"publicationTitle": "APPLIED AND ENVIRONMENTAL MICROBIOLOGY",
"volume": "76",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
},
{
"itemType": "journalArticle",
"title": "Key Process Conditions for Production of C(4) Dicarboxylic Acids in Bioreactor Batch Cultures of an Engineered Saccharomyces cerevisiae Strain",
"creators": [
{
"firstName": "Rintze M.",
"lastName": "Zelle",
"creatorType": "author"
},
{
"firstName": "Erik",
"lastName": "De Hulster",
"creatorType": "author"
},
{
"firstName": "Wendy",
"lastName": "Kloezen",
"creatorType": "author"
},
{
"firstName": "Jack T.",
"lastName": "Pronk",
"creatorType": "author"
},
{
"firstName": "Antonius J. A.",
"lastName": "van Maris",
"creatorType": "author"
}
],
"date": "2010-02",
"DOI": "10.1128/AEM.02396-09",
"ISSN": "0099-2240",
"abstractNote": "A recent effort to improve malic acid production by Saccharomyces cerevisiae by means of metabolic engineering resulted in a strain that produced up to 59 g liter(-1) of malate at a yield of 0.42 mol (mol glucose)(-1) in calcium carbonate-buffered shake flask cultures. With shake flasks, process parameters that are important for scaling up this process cannot be controlled independently. In this study, growth and product formation by the engineered strain were studied in bioreactors in order to separately analyze the effects of pH, calcium, and carbon dioxide and oxygen availability. A near-neutral pH, which in shake flasks was achieved by adding CaCO(3), was required for efficient C(4) dicarboxylic acid production. Increased calcium concentrations, a side effect of CaCO(3) dissolution, had a small positive effect on malate formation. Carbon dioxide enrichment of the sparging gas (up to 15% [vol/vol]) improved production of both malate and succinate. At higher concentrations, succinate titers further increased, reaching 0.29 mol (mol glucose)(-1), whereas malate formation strongly decreased. Although fully aerobic conditions could be achieved, it was found that moderate oxygen limitation benefitted malate production. In conclusion, malic acid production with the engineered S. cerevisiae strain could be successfully transferred from shake flasks to 1-liter batch bioreactors by simultaneous optimization of four process parameters (pH and concentrations of CO(2), calcium, and O(2)). Under optimized conditions, a malate yield of 0.48 +/- 0.01 mol (mol glucose)(-1) was obtained in bioreactors, a 19% increase over yields in shake flask experiments.",
"extra": "Web of Science ID: WOS:000274017400015",
"issue": "3",
"pages": "744-750",
"publicationTitle": "APPLIED AND ENVIRONMENTAL MICROBIOLOGY",
"volume": "76",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
},
{
"itemType": "journalArticle",
"title": "Metabolic engineering of Saccharomyces cerevisiae for production of carboxylic acids: current status and challenges",
"creators": [
{
"firstName": "Derek A.",
"lastName": "Abbott",
"creatorType": "author"
},
{
"firstName": "Rintze M.",
"lastName": "Zelle",
"creatorType": "author"
},
{
"firstName": "Jack T.",
"lastName": "Pronk",
"creatorType": "author"
},
{
"firstName": "Antonius J. A.",
"lastName": "van Maris",
"creatorType": "author"
}
],
"date": "2009-12",
"DOI": "10.1111/j.1567-1364.2009.00537.x",
"ISSN": "1567-1356",
"abstractNote": "To meet the demands of future generations for chemicals and energy and to reduce the environmental footprint of the chemical industry, alternatives for petrochemistry are required. Microbial conversion of renewable feedstocks has a huge potential for cleaner, sustainable industrial production of fuels and chemicals. Microbial production of organic acids is a promising approach for production of chemical building blocks that can replace their petrochemically derived equivalents. Although Saccharomyces cerevisiae does not naturally produce organic acids in large quantities, its robustness, pH tolerance, simple nutrient requirements and long history as an industrial workhorse make it an excellent candidate biocatalyst for such processes. Genetic engineering, along with evolution and selection, has been successfully used to divert carbon from ethanol, the natural endproduct of S. cerevisiae, to pyruvate. Further engineering, which included expression of heterologous enzymes and transporters, yielded strains capable of producing lactate and malate from pyruvate. Besides these metabolic engineering strategies, this review discusses the impact of transport and energetics as well as the tolerance towards these organic acids. In addition to recent progress in engineering S. cerevisiae for organic acid production, the key limitations and challenges are discussed in the context of sustainable industrial production of organic acids from renewable feedstocks.",
"extra": "Web of Science ID: WOS:000271264400001",
"issue": "8",
"pages": "1123-1136",
"publicationTitle": "FEMS YEAST RESEARCH",
"volume": "9",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
},
{
"itemType": "journalArticle",
"title": "Malic acid production by Saccharomyces cerevisiae: Engineering of pyruvate carboxylation, oxaloacetate reduction, and malate export",
"creators": [
{
"firstName": "Rintze M.",
"lastName": "Zelle",
"creatorType": "author"
},
{
"firstName": "Erik",
"lastName": "de Hulster",
"creatorType": "author"
},
{
"firstName": "WoUter A.",
"lastName": "van Winden",
"creatorType": "author"
},
{
"firstName": "Pieter",
"lastName": "de Waard",
"creatorType": "author"
},
{
"firstName": "Cor",
"lastName": "Dijkema",
"creatorType": "author"
},
{
"firstName": "Aaron A.",
"lastName": "Winkler",
"creatorType": "author"
},
{
"firstName": "Jan-Maarten A.",
"lastName": "Geertman",
"creatorType": "author"
},
{
"firstName": "Johannes P.",
"lastName": "van Dijken",
"creatorType": "author"
},
{
"firstName": "Jack T.",
"lastName": "Pronk",
"creatorType": "author"
},
{
"firstName": "Antonius J. A.",
"lastName": "van Maris",
"creatorType": "author"
}
],
"date": "2008-05",
"DOI": "10.1128/AEM.02591-07",
"ISSN": "0099-2240",
"abstractNote": "Malic acid is a potential biomass-derivable \"building block\" for chemical synthesis. Since wild-type Saccharomyces cerevisiae strains produce only low levels of malate, metabolic engineering is required to achieve efficient malate production with this yeast. A promising pathway for malate production from glucose proceeds via carboxylation of pyruvate, followed by reduction of oxaloacetate to malate. This redox- and ATP-neutral, CO2-fixing pathway has a theoretical maximum yield of 2 mol malate (mol glucose)(-1). A previously engineered glucose-tolerant, C-2-independent pyruvate decarboxylase-negative S. cerevisiae strain was used as the platform to evaluate the impact of individual and combined introduction of three genetic modifications: (i) overexpression of the native pyruvate carboxylase encoded by PYC2, (ii) high-level expression of an allele of the MDH3 gene, of which the encoded malate dehydrogenase was retargeted to the cytosol by deletion of the C-terminal peroxisomal targeting sequence, and (iii) functional expression of the Schizosaccharomyces pombe malate transporter gene SpMAE1. While single or double modifications improved malate production, the highest malate yields and titers were obtained with the simultaneous introduction of all three modifications. In glucose-grown batch cultures, the resulting engineered strain produced malate at titers of up to 59 g liter(-1) at a malate yield of 0.42 mol (mol glucose)(-1). Metabolic flux analysis showed that metabolite labeling patterns observed upon nuclear magnetic resonance analyses of cultures grown on C-13-labeled glucose were consistent with the envisaged nonoxidative, fermentative pathway for malate production. The engineered strains still produced substantial amounts of pyruvate, indicating that the pathway efficiency can be further improved.",
"extra": "Web of Science ID: WOS:000255567900024",
"issue": "9",
"pages": "2766-2777",
"publicationTitle": "APPLIED AND ENVIRONMENTAL MICROBIOLOGY",
"volume": "74",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "FN Thomson Reuters Web of Knowledge\nVR 1.0\nPT J\nAU Smith, L. J.\n Schwark, W. S.\n Cook, D. R.\n Moon, P. F.\n Erb, H. N.\n Looney, A. L.\nTI Pharmacokinetics of intravenous mivacurium in halothane-anesthetized\n dogs.\nSO Veterinary Surgery\nVL 27\nIS 2\nPS 170\nPY 1998\nUT CABI:19982209000\nDT Abstract only\nLA English\nSN 0161-3499\nCC LL900Animal Toxicology, Poisoning and Pharmacology (Discontinued March\n 2000); LL070Pets and Companion Animals\nCN 151-67-7\nDE anaesthesia; halothane; muscle relaxants; pharmacokinetics\nOR dogs\nBD Canis; Canidae; Fissipeda; carnivores; mammals; vertebrates; Chordata;\n animals; small mammals; eukaryotes\nER\n\nEF",
"items": [
{
"itemType": "journalArticle",
"title": "Pharmacokinetics of intravenous mivacurium in halothane-anesthetized dogs.",
"creators": [
{
"firstName": "L. J.",
"lastName": "Smith",
"creatorType": "author"
},
{
"firstName": "W. S.",
"lastName": "Schwark",
"creatorType": "author"
},
{
"firstName": "D. R.",
"lastName": "Cook",
"creatorType": "author"
},
{
"firstName": "P. F.",
"lastName": "Moon",
"creatorType": "author"
},
{
"firstName": "H. N.",
"lastName": "Erb",
"creatorType": "author"
},
{
"firstName": "A. L.",
"lastName": "Looney",
"creatorType": "author"
}
],
"date": "1998",
"ISSN": "0161-3499",
"extra": "Web of Science ID: CABI:19982209000",
"issue": "2",
"language": "en",
"libraryCatalog": "Thomson Reuters Web of Knowledge",
"pages": "170",
"publicationTitle": "Veterinary Surgery",
"volume": "27",
"attachments": [],
"tags": [
{
"tag": "Canidae"
},
{
"tag": "Canis"
},
{
"tag": "Chordata"
},
{
"tag": "Fissipeda"
},
{
"tag": "anaesthesia"
},
{
"tag": "animals"
},
{
"tag": "carnivores"
},
{
"tag": "dogs"
},
{
"tag": "eukaryotes"
},
{
"tag": "halothane"
},
{
"tag": "mammals"
},
{
"tag": "muscle relaxants"
},
{
"tag": "pharmacokinetics"
},
{
"tag": "small mammals"
},
{
"tag": "vertebrates"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "FN Thomson Reuters Web of Knowledge\nVR 1.0\nPT J\nAU Smith, JM \nAF Smith, J. Mark\nTI Gripewater\nSO FIDDLEHEAD\nLA English \nDT Poetry\nNR 0\nTC 0\nZ9 0\nPU UNIV NEW BRUNSWICK\nPI FREDERICTON\nPA DEPT ENGLISH, CAMPUS HOUSE, PO BOX 4400, FREDERICTON, NB E3B 5A3, CANADA\nSN 0015-0630\nJ9 FIDDLEHEAD\nJI Fiddlehead\nPD SPR\nPY 2011\nIS 247\nBP 82\nEP 82\nPG 1\nWC Literary Reviews\nSC Literature\nGA 757VG\nUT WOS:000290115300030\nER\n\nEF",
"items": [
{
"itemType": "journalArticle",
"title": "Gripewater",
"creators": [
{
"firstName": "J. Mark",
"lastName": "Smith",
"creatorType": "author"
}
],
"date": "SPR 2011",
"ISSN": "0015-0630",
"extra": "numPages: 1\npublisher: Univ New Brunswick\nWeb of Science ID: WOS:000290115300030",
"issue": "247",
"journalAbbreviation": "Fiddlehead",
"language": "en",
"libraryCatalog": "Thomson Reuters Web of Knowledge",
"pages": "82-82",
"publicationTitle": "FIDDLEHEAD",
"attachments": [],
"tags": [
{
"tag": "Literary Reviews"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "import",
"input": "FN Thomson Reuters Web of Knowledge\nVR 1.0\nPT S\nAU McCormick, MC\n Litt, JS\n Smith, VC\n Zupancic, JAF\nAF McCormick, Marie C.\n Litt, Jonathan S.\n Smith, Vincent C.\n Zupancic, John A. F.\nBE Fielding, JE\n Brownson, RC\n Green, LW\nTI Prematurity: An Overview and Public Health Implications\nSO ANNUAL REVIEW OF PUBLIC HEALTH, VOL 32\nSE Annual Review of Public Health\nLA English\nDT Review\nDE infant mortality; childhood morbidity; prevention\nID LOW-BIRTH-WEIGHT; NEONATAL INTENSIVE-CARE; QUALITY-OF-LIFE; EXTREMELY\n PRETERM BIRTH; YOUNG-ADULTS BORN; AGE 8 YEARS; CHILDREN BORN;\n BRONCHOPULMONARY DYSPLASIA; LEARNING-DISABILITIES; EXTREME PREMATURITY\nAB The high rate of premature births in the United States remains a public\n health concern. These infants experience substantial morbidity and\n mortality in the newborn period, which translate into significant\n medical costs. In early childhood, survivors are characterized by a\n variety of health problems, including motor delay and/or cerebral palsy,\n lower IQs, behavior problems, and respiratory illness, especially\n asthma. Many experience difficulty with school work, lower\n health-related quality of life, and family stress. Emerging information\n in adolescence and young adulthood paints a more optimistic picture,\n with persistence of many problems but with better adaptation and more\n positive expectations by the young adults. Few opportunities for\n prevention have been identified; therefore, public health approaches to\n prematurity include assurance of delivery in a facility capable of\n managing neonatal complications, quality improvement to minimize\n interinstitutional variations, early developmental support for such\n infants, and attention to related family health issues.\nC1 [McCormick, MC] Harvard Univ, Dept Soc Human Dev & Hlth, Sch Publ Hlth, Boston, MA 02115 USA\n [McCormick, MC; Litt, JS; Smith, VC; Zupancic, JAF] Beth Israel Deaconess Med Ctr, Dept Neonatol, Boston, MA 02215 USA\n [Litt, JS] Childrens Hosp Boston, Div Newborn Med, Boston, MA 02115 USA\nRP McCormick, MC (reprint author), Harvard Univ, Dept Soc Human Dev & Hlth, Sch Publ Hlth, Boston, MA 02115 USA\nEM mmccormi@hsph.harvard.edu\n vsmith1@bidmc.harvard.edu\n jzupanci@bidmc.harvard.edu\n Jonathan.Litt@childrens.harvard.edu\nNR 91\nTC 1\nZ9 1\nPU ANNUAL REVIEWS\nPI PALO ALTO\nPA 4139 EL CAMINO WAY, PO BOX 10139, PALO ALTO, CA 94303-0897 USA\nSN 0163-7525\nBN 978-0-8243-2732-3\nJ9 ANNU REV PUBL HEALTH\nJI Annu. Rev. Public Health\nPY 2011\nVL 32\nBP 367\nEP 379\nDI 10.1146/annurev-publhealth-090810-182459\nPG 13\nGA BUZ33\nUT WOS:000290776200020\nER\n\nEF",
"items": [
{
"itemType": "journalArticle",
"title": "Prematurity: An Overview and Public Health Implications",
"creators": [
{
"firstName": "Marie C.",
"lastName": "McCormick",
"creatorType": "author"
},
{
"firstName": "Jonathan S.",
"lastName": "Litt",
"creatorType": "author"
},
{
"firstName": "Vincent C.",
"lastName": "Smith",
"creatorType": "author"
},
{
"firstName": "John A. F.",
"lastName": "Zupancic",
"creatorType": "author"
},
{
"firstName": "J. E.",