-
Notifications
You must be signed in to change notification settings - Fork 762
/
Atypon Journals.js
1204 lines (1137 loc) · 43.9 KB
/
Atypon Journals.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
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": "5af42734-7cd5-4c69-97fc-bc406999bdba",
"label": "Atypon Journals",
"creator": "Sebastian Karcher and Abe Jellinek",
"target": "^https?://[^?#]+(/doi/((abs|abstract|full|figure|ref|citedby|book)/)?10\\.|/action/doSearch\\?)|^https?://[^/]+/toc/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 270,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2022-10-25 02:51:38"
}
/*
***** BEGIN LICENSE BLOCK *****
Atypon Journals Translator
Copyright © 2011-2022 Sebastian Karcher and Abe Jellinek
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 *****
*/
function detectWeb(doc, url) {
if (url.search(/^https?:\/\/[^/]+\/toc\/|\/action\/doSearch\?|\/doi\/book\//) != -1) {
return getSearchResults(doc, true) ? "multiple" : false;
}
var citLink = doc.querySelector('a[href*="/action/showCitFormats"], a[href*="#pill-citations"], .actions-block-container__export-citation, div.pill__item, section.pill__item div.citation-download, a[href*="#tab-citations"]');
if (citLink) {
if (url.includes('/doi/book/')) {
return 'book';
}
else if (url.search(/\.ch\d+$/) != -1) {
return 'bookSection';
}
else if (isConference(doc)) {
return 'conferencePaper';
}
return "journalArticle";
}
return false;
}
function getSearchResults(doc, checkOnly, extras) {
var articles = {};
var container = doc.getElementsByName('frmSearchResults')[0]
|| doc.getElementsByName('frmAbs')[0]
|| doc.querySelector('.search__body, .search-result, .table-of-content');
if (!container) {
Z.debug('Atypon: multiples container not found.');
return false;
}
// Add whole book entry for book ToCs, but require chapter entries
// before returning true if checkOnly
if (doc.querySelector('.book-toc')) {
let title = attr(doc, 'meta[property="og:title"]', 'content')
|| doc.title;
title = title.split('|')[0];
let url = doc.location.href;
if (title) {
articles[url] = title;
if (extras) {
extras[url] = {};
}
}
}
var rows = container.getElementsByClassName('articleEntry'),
found = false,
doiLink = 'a[contains(@href, "/doi/abs/") or contains(@href, "/doi/abstract/") or '
+ 'contains(@href, "/doi/full/") or contains(@href, "/doi/book/")]';
for (var i = 0; i < rows.length; i++) {
var title = rows[i].getElementsByClassName('art_title')[0];
if (!title) continue;
title = ZU.trimInternal(title.textContent);
var urlRow = rows[i];
var url = ZU.xpathText(urlRow, '(.//' + doiLink + ')[1]/@href');
if (!url) {
// e.g. http://pubs.rsna.org/toc/radiographics/toc/33/7 shows links in adjacent div
urlRow = rows[i].nextElementSibling;
if (!urlRow || urlRow.classList.contains('articleEntry')) continue;
url = ZU.xpathText(urlRow, '(.//' + doiLink + ')[1]/@href');
}
if (!url) continue;
if (checkOnly) return true;
found = true;
if (extras) {
extras[url] = { pdf: buildPdfUrl(url, urlRow) };
}
articles[url] = title;
}
if (!found) {
Z.debug("Trying alternate multiple format #1");
rows = container.getElementsByClassName("item-details");
for (let i = 0; i < rows.length; i++) {
let title = ZU.xpathText(rows[i], './h3');
if (!title) continue;
title = ZU.trimInternal(title);
let url = ZU.xpathText(rows[i], '(.//ul[contains(@class, "icon-list")]/li/'
+ doiLink + ')[1]/@href');
if (!url) continue;
if (checkOnly) return true;
found = true;
if (extras) {
extras[url] = { pdf: buildPdfUrl(url, rows[i]) };
}
articles[url] = title;
}
}
if (!found) {
Z.debug("Trying alternate multiple format #2");
rows = container.querySelectorAll('.issue-item, .item__body');
for (let row of rows) {
let title = text(row, 'a');
if (!title) continue;
title = ZU.trimInternal(title);
let url = attr(row, 'a', 'href');
if (!url) continue;
if (checkOnly) return true;
found = true;
if (extras) {
extras[url] = { pdf: buildPdfUrl(url, row) };
}
articles[url] = title;
}
}
if (!found) {
Z.debug("Trying alternate multiple format #3");
rows = container.querySelectorAll('.items-results .card');
for (let row of rows) {
let title = text(row, 'a');
if (!title) continue;
title = ZU.trimInternal(title);
let url = attr(row, 'a', 'href');
if (!url) continue;
if (checkOnly) return true;
found = true;
if (extras) {
extras[url] = { pdf: buildPdfUrl(url, rows[i]) };
}
articles[url] = title;
}
}
return found ? articles : false;
}
// Keep this in line with target regexp
var replURLRegExp = /\/doi\/((?:abs|abstract|full|figure|ref|citedby|book)\/)?/;
// Regex matching sites that load PDFs in an embedded reader
const NEED_BYPASS_EMBEDDED_READER = /^https?:\/\/www\.embopress\.org\//;
function buildPdfUrl(url, root) {
if (!replURLRegExp.test(url)) return false; // The whole thing is probably going to fail anyway
var pdfPaths = ['/doi/pdf/', '/doi/epdf/', '/doi/pdfplus/'];
for (let i = 0; i < pdfPaths.length; i++) {
if (ZU.xpath(root, './/a[contains(@href, "' + pdfPaths[i] + '")]').length) {
let pdfURL = url.replace(replURLRegExp, pdfPaths[i]);
if (NEED_BYPASS_EMBEDDED_READER.test(url)) {
Zotero.debug('Modifying PDF URL to avoid embedded reader page');
pdfURL = pdfURL.replace(/\/e?pdf\//, '/pdfdirect/')
+ (pdfURL.includes('?') ? '&' : '?')
+ 'download=true';
Zotero.debug(pdfURL);
}
return pdfURL;
}
}
Z.debug('PDF link not found.');
if (root.nodeType != 9 /* DOCUMENT_NODE*/) {
Z.debug('Available links:');
var links = root.getElementsByTagName('a');
if (!links.length) Z.debug('No links');
for (let i = 0; i < links.length; i++) {
Z.debug(links[i].href);
}
}
return false;
}
function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
var extras = {};
Zotero.selectItems(getSearchResults(doc, false, extras), function (items) {
if (!items) {
return;
}
var articles = [];
for (var itemurl in items) {
articles.push({
url: itemurl.replace(/\?prev.+/, ""),
extras: extras[itemurl]
});
}
fetchArticles(articles);
});
}
else {
scrape(doc, url, { pdf: buildPdfUrl(url, doc) });
}
}
function fixCase(str, titleCase) {
if (str.toUpperCase() != str) return str;
if (titleCase) {
return ZU.capitalizeTitle(str, true);
}
return str.charAt(0) + str.substr(1).toLowerCase();
}
function isConference(doc) {
for (let label of doc.querySelectorAll('.publication-details__list .label')) {
if (label.innerText.trim() == 'Conference:') {
return true;
}
}
return false;
}
function fetchArticles(articles) {
if (!articles.length) return;
var article = articles.shift();
ZU.processDocuments(article.url, function (doc, url) {
scrape(doc, url, article.extras);
},
function () {
if (articles.length) fetchArticles(articles);
});
}
function scrape(doc, url, extras) {
url = url.replace(/[?#].*/, "");
var doi = url.match(/10\.[^?#]+/)[0];
var citationurl = url.replace(replURLRegExp, "/action/showCitFormats?doi=");
var abstract = doc.getElementsByClassName('abstractSection')[0]
|| doc.querySelector('#bookExcerpt, #abstract');
var tags = ZU.xpath(doc, '//a[contains(@href, "keyword") or contains(@href, "Keyword=")]');
Z.debug("Citation URL: " + citationurl);
function finalize(filename) {
Z.debug("Filename: " + filename);
var get = '/action/downloadCitation';
var post = 'doi=' + doi + '&downloadFileName=' + filename + '&format=ris&direct=true&include=cit';
ZU.doPost(get, post, function (risText) {
// Z.debug(risText);
var translator = Zotero.loadTranslator("import");
// Calling the RIS translator
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
translator.setString(risText);
translator.setHandler("itemDone", function (obj, item) {
// Sometimes we get titles and authors in all caps
item.title = fixCase(item.title);
// Some special characters get corrupted in the RIS we get
if (/\b\?s/.test(item.title) && text(doc, 'h1.citation__title')) {
item.title = text(doc, 'h1.citation__title');
}
if (!item.date) {
item.date = text(doc, 'span[property="datePublished"]');
}
if (item.date) {
item.date = ZU.strToISO(item.date);
let parts = item.date.split('-');
if (parts.length == 3 && parts[2] == '01') {
item.date = parts[0] + '-' + parts[1];
}
}
if (item.journalAbbreviation == item.publicationTitle) {
delete item.journalAbbreviation;
}
if (item.itemType == 'journalArticle' && isConference(doc)) {
item.itemType = 'conferencePaper';
}
if (doc.querySelector('div.contributors [property="author"] a:first-child')) {
// the HTML is better, so we'll use that.
item.creators = [];
let contributors = doc.querySelector('div.contributors');
for (let authorLink of contributors.querySelectorAll('[property="author"] a:first-child')) {
let givenName = text(authorLink, '[property="givenName"]');
let familyName = text(authorLink, '[property="familyName"]');
if (!givenName && !familyName) {
item.creators.push({
lastName: authorLink.innerText,
creatorType: 'author',
fieldMode: 1
});
}
else {
item.creators.push({
firstName: givenName,
lastName: familyName,
creatorType: 'author'
});
}
}
}
else {
for (let creator of item.creators) {
if (creator.fieldMode == 1) {
// add a comma after the last name
// "Smith Todd G" -> "Smith, Todd G"
let name = creator.lastName.replace(/(\w+)/, '$1,');
let cleaned = ZU.cleanAuthor(name, creator.creatorType, true);
delete creator.fieldMode;
Object.assign(creator, cleaned);
}
creator.lastName = fixCase(creator.lastName, true);
if (creator.firstName) {
creator.firstName = fixCase(creator.firstName, true);
}
}
}
item.url = url;
item.notes = [];
for (var i in tags) {
item.tags.push(tags[i].textContent);
}
if (abstract) {
// Drop "Abstract" prefix
// This is not excellent, since some abstracts could
// conceivably begin with the word "abstract"
item.abstractNote = abstract.innerText
.replace(/^[^\w\d]*abstract\s*/i, '');
}
item.attachments = [];
if (extras.pdf) {
item.attachments.push({
url: extras.pdf,
title: "Full Text PDF",
mimeType: "application/pdf"
});
}
item.libraryCatalog = url.replace(/^https?:\/\/(?:www\.)?/, '')
.replace(/[/:].*/, '') + " (Atypon)";
if (item.series == 'Non-serials') {
delete item.series;
}
if (item.numberOfVolumes == '0') {
delete item.numberOfVolumes;
}
item.complete();
});
translator.translate();
});
}
// newer Atypon installs; 2nd one is Science, 3rd one ASM
if (doc.querySelector('a[href*="#pill-citations"], div.pill__item, section.pill__item div.citation-download')) {
let filename = attr(doc, 'input[name="downloadFileName"]', 'value');
finalize(filename);
}
else {
ZU.processDocuments(citationurl, function (citationDoc) {
let filename = attr(citationDoc, 'input[name="downloadFileName"]', 'value');
finalize(filename);
});
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://pubs.rsna.org/toc/radiographics/toc/33/7",
"items": "multiple"
},
{
"type": "web",
"url": "https://pubs.rsna.org/doi/full/10.1148/rg.337125073",
"items": [
{
"itemType": "journalArticle",
"title": "Congenital and Hereditary Causes of Sudden Cardiac Death in Young Adults: Diagnosis, Differential Diagnosis, and Risk Stratification",
"creators": [
{
"lastName": "Stojanovska",
"firstName": "Jadranka",
"creatorType": "author"
},
{
"lastName": "Garg",
"firstName": "Anubhav",
"creatorType": "author"
},
{
"lastName": "Patel",
"firstName": "Smita",
"creatorType": "author"
},
{
"lastName": "Melville",
"firstName": "David M.",
"creatorType": "author"
},
{
"lastName": "Kazerooni",
"firstName": "Ella A.",
"creatorType": "author"
},
{
"lastName": "Mueller",
"firstName": "Gisela C.",
"creatorType": "author"
}
],
"date": "2013-11",
"DOI": "10.1148/rg.337125073",
"ISSN": "0271-5333",
"abstractNote": "Sudden cardiac death is defined as death from unexpected circulatory arrest—usually a result of cardiac arrhythmia—that occurs within 1 hour of the onset of symptoms. Proper and timely identification of individuals at risk for sudden cardiac death and the diagnosis of its predisposing conditions are vital. A careful history and physical examination, in addition to electrocardiography and cardiac imaging, are essential to identify conditions associated with sudden cardiac death. Among young adults (18–35 years), sudden cardiac death most commonly results from a previously undiagnosed congenital or hereditary condition, such as coronary artery anomalies and inherited cardiomyopathies (eg, hypertrophic cardiomyopathy, arrhythmogenic right ventricular cardiomyopathy [ARVC], dilated cardiomyopathy, and noncompaction cardiomyopathy). Overall, the most common causes of sudden cardiac death in young adults are, in descending order of frequency, hypertrophic cardiomyopathy, coronary artery anomalies with an interarterial or intramural course, and ARVC. Often, sudden cardiac death is precipitated by ventricular tachycardia or fibrillation and may be prevented with an implantable cardioverter defibrillator (ICD). Risk stratification to determine the need for an ICD is challenging and involves imaging, particularly echocardiography and cardiac magnetic resonance (MR) imaging. Coronary artery anomalies, a diverse group of congenital disorders with a variable manifestation, may be depicted at coronary computed tomographic angiography or MR angiography. A thorough understanding of clinical risk stratification, imaging features, and complementary diagnostic tools for the evaluation of cardiac disorders that may lead to sudden cardiac death is essential to effectively use imaging to guide diagnosis and therapy.",
"issue": "7",
"libraryCatalog": "pubs.rsna.org (Atypon)",
"pages": "1977-2001",
"publicationTitle": "RadioGraphics",
"shortTitle": "Congenital and Hereditary Causes of Sudden Cardiac Death in Young Adults",
"url": "https://pubs.rsna.org/doi/full/10.1148/rg.337125073",
"volume": "33",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://pubs.rsna.org/action/doSearch?SeriesKey=&AllField=cardiac",
"items": "multiple"
},
{
"type": "web",
"url": "https://epubs.siam.org/doi/book/10.1137/1.9780898718553",
"items": "multiple"
},
{
"type": "web",
"url": "https://epubs.siam.org/doi/abs/10.1137/1.9780898718553.ch6",
"items": [
{
"itemType": "bookSection",
"title": "6. Extensions and Generalizations",
"creators": [],
"date": "2001-01",
"ISBN": "9780898714784",
"abstractNote": "6.1 Introduction\n\nThere are a variety of extensions of the topics introduced in the previous chapters that could be pursued, several of which have been mentioned earlier along with a comment that they would not be developed in any detail within this monograph. Among some of these possibilities are: (a) the development of a mechanism for generating all the optimal solutions for a specific optimization task when multiple optima may be present, not just one representative exemplar; (b) the incorporation of other loss or merit measures within the various sequencing and partitioning contexts discussed; (c) extensions to the analysis of arbitrary t-mode data, with possible (order) restrictions on some modes but not others, or to a framework in which proximity is given on more than just a pair of objects, e.g., proximity could be defined for all distinct object triples (see Daws (1996)); (d) the generalization of the task of constructing optimal ordered partitions to a two- or higher-mode context that may be hierarchical and/or have various types of order or precedence constraints imposed; and (e) the extension of object ordering constraints when they are to be imposed (e.g., in various partitioning and two-mode sequencing tasks) to the use of circular object orders, where optimal subsets or ordered sequences must now be consistent with respect to a circular contiguity structure.",
"bookTitle": "Combinatorial Data Analysis",
"extra": "DOI: 10.1137/1.9780898718553.ch6",
"libraryCatalog": "epubs.siam.org (Atypon)",
"pages": "103-114",
"publisher": "Society for Industrial and Applied Mathematics",
"series": "Discrete Mathematics and Applications",
"url": "https://epubs.siam.org/doi/abs/10.1137/1.9780898718553.ch6",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "combinatorial optimization"
},
{
"tag": "least-squares optimization"
},
{
"tag": "ultrametric and additive tree representations"
},
{
"tag": "unidimensional and multidimensional scaling"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.liebertpub.com/doi/full/10.1089/cmb.2009.0238",
"items": [
{
"itemType": "journalArticle",
"title": "Ray: Simultaneous Assembly of Reads from a Mix of High-Throughput Sequencing Technologies",
"creators": [
{
"lastName": "Boisvert",
"firstName": "Sébastien",
"creatorType": "author"
},
{
"lastName": "Laviolette",
"firstName": "François",
"creatorType": "author"
},
{
"lastName": "Corbeil",
"firstName": "Jacques",
"creatorType": "author"
}
],
"date": "2010-11",
"DOI": "10.1089/cmb.2009.0238",
"abstractNote": "An accurate genome sequence of a desired species is now a pre-requisite for genome research. An important step in obtaining a high-quality genome sequence is to correctly assemble short reads into longer sequences accurately representing contiguous genomic regions. Current sequencing technologies continue to offer increases in throughput, and corresponding reductions in cost and time. Unfortunately, the benefit of obtaining a large number of reads is complicated by sequencing errors, with different biases being observed with each platform. Although software are available to assemble reads for each individual system, no procedure has been proposed for high-quality simultaneous assembly based on reads from a mix of different technologies. In this paper, we describe a parallel short-read assembler, called Ray, which has been developed to assemble reads obtained from a combination of sequencing platforms. We compared its performance to other assemblers on simulated and real datasets. We used a combination of Roche/454 and Illumina reads to assemble three different genomes. We showed that mixing sequencing technologies systematically reduces the number of contigs and the number of errors. Because of its open nature, this new tool will hopefully serve as a basis to develop an assembler that can be of universal utilization (availability: http://deNovoAssembler.sf.Net/). For online Supplementary Material, see www.liebertonline.com.",
"issue": "11",
"libraryCatalog": "liebertpub.com (Atypon)",
"pages": "1519-1533",
"publicationTitle": "Journal of Computational Biology",
"shortTitle": "Ray",
"url": "https://www.liebertpub.com/doi/full/10.1089/cmb.2009.0238",
"volume": "17",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "de Bruijn graphs"
},
{
"tag": "genome assembly"
},
{
"tag": "high-throughput sequencing"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://journals.jps.jp/toc/jpsj/2014/83/6",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.worldscientific.com/doi/abs/10.1142/S0219749904000195",
"items": [
{
"itemType": "journalArticle",
"title": "Probabilities from envariance?",
"creators": [
{
"lastName": "Mohrhoff",
"firstName": "Ulrich",
"creatorType": "author"
}
],
"date": "2004-06",
"DOI": "10.1142/S0219749904000195",
"ISSN": "0219-7499",
"abstractNote": "Zurek claims to have derived Born's rule noncircularly in the context of an ontological no-collapse interpretation of quantum states, without any \"deus ex machina imposition of the symptoms of classicality\". After a brief review of Zurek's derivation it is argued that this claim is exaggerated if not wholly unjustified. In order to demonstrate that Born's rule arises noncircularly from deterministically evolving quantum states, it is not sufficient to assume that quantum states are somehow associated with probabilities and then prove that these probabilities are given by Born's rule. One has to show how irreducible probabilities can arise in the context of an ontological no-collapse interpretation of quantum states. It is argued that the reason why all attempts to do this have so far failed is that quantum states are fundamentally algorithms for computing correlations between possible measurement outcomes, rather than evolving ontological states.",
"issue": "02",
"journalAbbreviation": "Int. J. Quantum Inform.",
"libraryCatalog": "worldscientific.com (Atypon)",
"pages": "221-229",
"publicationTitle": "International Journal of Quantum Information",
"url": "https://www.worldscientific.com/doi/abs/10.1142/S0219749904000195",
"volume": "02",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Born's rule"
},
{
"tag": "Born's rule"
},
{
"tag": "envariance"
},
{
"tag": "envariance"
},
{
"tag": "interpretation of quantum mechanics"
},
{
"tag": "interpretation of quantum mechanics"
},
{
"tag": "probability"
},
{
"tag": "probability"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.annualreviews.org/doi/abs/10.1146/annurev.matsci.31.1.323",
"items": [
{
"itemType": "journalArticle",
"title": "Block Copolymer Thin Films: Physics and Applications",
"creators": [
{
"lastName": "Fasolka",
"firstName": "Michael J",
"creatorType": "author"
},
{
"lastName": "Mayes",
"firstName": "Anne M",
"creatorType": "author"
}
],
"date": "2001-08",
"DOI": "10.1146/annurev.matsci.31.1.323",
"ISSN": "1531-7331",
"abstractNote": "A two-part review of research concerning block copolymer thin films is presented. The first section summarizes experimental and theoretical studies of the fundamental physics of these systems, concentrating upon the forces that govern film morphology. The role of film thickness and surface energetics on the morphology of compositionally symmetric, amorphous diblock copolymer films is emphasized, including considerations of boundary condition symmetry, so-called hybrid structures, and surface chemical expression. Discussions of compositionally asymmetric systems and emerging research areas, e.g., liquid-crystalline and A-B-C triblock systems, are also included. In the second section, technological applications of block copolymer films, e.g., as lithographic masks and photonic materials, are considered. Particular attention is paid to means by which microphase domain order and orientation can be controlled, including exploitation of thickness and surface effects, the application of external fields, and the use of patterned substrates.",
"issue": "1",
"journalAbbreviation": "Annu. Rev. Mater. Res.",
"libraryCatalog": "annualreviews.org (Atypon)",
"pages": "323-355",
"publicationTitle": "Annual Review of Materials Research",
"shortTitle": "Block Copolymer Thin Films",
"url": "https://www.annualreviews.org/doi/abs/10.1146/annurev.matsci.31.1.323",
"volume": "31",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "confinement"
},
{
"tag": "nanoarray"
},
{
"tag": "nanopattern"
},
{
"tag": "self-assembly"
},
{
"tag": "self-consistent field"
},
{
"tag": "wetting"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://journals.asm.org/doi/10.1128/mSystems.00122-21",
"items": [
{
"itemType": "journalArticle",
"title": "Dietary Supplements and Nutraceuticals under Investigation for COVID-19 Prevention and Treatment",
"creators": [
{
"firstName": "Ronan",
"lastName": "Lordan",
"creatorType": "author"
},
{
"firstName": "Halie M.",
"lastName": "Rando",
"creatorType": "author"
},
{
"lastName": "COVID-19 Review Consortium",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "Casey S.",
"lastName": "Greene",
"creatorType": "author"
}
],
"date": "2021-05-04",
"DOI": "10.1128/mSystems.00122-21",
"abstractNote": "Coronavirus disease 2019 (COVID-19) has caused global disruption and a significant loss of life. Existing treatments that can be repurposed as prophylactic and therapeutic agents may reduce the pandemic’s devastation. Emerging evidence of potential applications in other therapeutic contexts has led to the investigation of dietary supplements and nutraceuticals for COVID-19. Such products include vitamin C, vitamin D, omega 3 polyunsaturated fatty acids, probiotics, and zinc, all of which are currently under clinical investigation. In this review, we critically appraise the evidence surrounding dietary supplements and nutraceuticals for the prophylaxis and treatment of COVID-19. Overall, further study is required before evidence-based recommendations can be formulated, but nutritional status plays a significant role in patient outcomes, and these products may help alleviate deficiencies. For example, evidence indicates that vitamin D deficiency may be associated with a greater incidence of infection and severity of COVID-19, suggesting that vitamin D supplementation may hold prophylactic or therapeutic value. A growing number of scientific organizations are now considering recommending vitamin D supplementation to those at high risk of COVID-19. Because research in vitamin D and other nutraceuticals and supplements is preliminary, here we evaluate the extent to which these nutraceutical and dietary supplements hold potential in the COVID-19 crisis.\nIMPORTANCE Sales of dietary supplements and nutraceuticals have increased during the pandemic due to their perceived “immune-boosting” effects. However, little is known about the efficacy of these dietary supplements and nutraceuticals against the novel coronavirus (severe acute respiratory syndrome coronavirus 2 [SARS-CoV-2]) or the disease that it causes, CoV disease 2019 (COVID-19). This review provides a critical overview of the potential prophylactic and therapeutic value of various dietary supplements and nutraceuticals from the evidence available to date. These include vitamin C, vitamin D, and zinc, which are often perceived by the public as treating respiratory infections or supporting immune health. Consumers need to be aware of misinformation and false promises surrounding some supplements, which may be subject to limited regulation by authorities. However, considerably more research is required to determine whether dietary supplements and nutraceuticals exhibit prophylactic and therapeutic value against SARS-CoV-2 infection and COVID-19. This review provides perspective on which nutraceuticals and supplements are involved in biological processes that are relevant to recovery from or prevention of COVID-19.",
"issue": "3",
"libraryCatalog": "journals.asm.org (Atypon)",
"pages": "e00122-21",
"publicationTitle": "mSystems",
"url": "https://journals.asm.org/doi/10.1128/mSystems.00122-21",
"volume": "6",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://journals.asm.org/action/doSearch?AllField=E.+coli&SeriesKey=mra",
"items": "multiple"
},
{
"type": "web",
"url": "https://search.informit.org/doi/10.3316/informit.147509991486632",
"items": [
{
"itemType": "journalArticle",
"title": "Comparison of a micro-neutralization test with the rapid fluorescent focus inhibition test for measuring rabies virus neutralizing antibodies",
"creators": [
{
"lastName": "Smith",
"creatorType": "author",
"firstName": "Todd G."
},
{
"lastName": "Gilbert",
"creatorType": "author",
"firstName": "Amy T."
}
],
"DOI": "10.3316/informit.147509991486632",
"abstractNote": "The rapid fluorescent focus inhibition test (RFFIT) is routinely used in the United States to measure rabies virus neutralizing antibodies (rVNA). RFFIT has a long history of reproducible and reliable results. The test has been modified over the years to use smaller volumes of reagents and samples, but requires a 50 muL minimum volume of test serum. To conduct pathogenesis studies, small laboratory animals such as mice are regularly tested for rVNA, but the minimum volume for a standard RFFIT may be impossible to obtain, particularly in scenarios of repeated sampling. To address this problem, a micro-neutralization test was developed previously. In the current study, the micro-neutralization test was compared to the RFFIT using 129 mouse serum samples from rabies vaccine studies. Using a cut-off value of 0.1 IU/mL, the sensitivity, specificity, and concordance of the micro-neutralization test were 100%, 97.5%, and 98%, respectively. The geometric mean titer of all samples above the cut-off was 2.0 IU/mL using RFFIT and 3.4 IU/mL using the micro-neutralization test, indicating that titers determined using the micro-neutralization test are not equivalent to RFFIT titers. Based on four rVNA-positive hamster serum samples, the intra-assay coefficient of variability was 24% and inter-assay coefficient of variability was 30.4%. These results support continued use of the micro-neutralization test to determine rabies virus neutralizing antibody titers for low-volume serum samples.",
"issue": "3",
"libraryCatalog": "search.informit.org (Atypon)",
"pages": "1-5",
"publicationTitle": "Tropical Medicine and Infectious Disease",
"url": "https://search.informit.org/doi/10.3316/informit.147509991486632",
"volume": "2",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Diagnosis, Laboratory"
},
{
"tag": "Neutralization (Chemistry)"
},
{
"tag": "Rabies virus"
},
{
"tag": "Rabies--Diagnosis"
},
{
"tag": "Viral antibodies"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://search.informit.org/doi/10.3316/informit.745150560334180",
"items": [
{
"itemType": "conferencePaper",
"title": "The Defense Test and Evaluation Professional Institute’s Role in Supporting the Department of Defense Test and Evaluation Community",
"creators": [
{
"lastName": "Engel",
"creatorType": "author",
"firstName": "Jim"
}
],
"DOI": "10.3316/informit.745150560334180",
"libraryCatalog": "search.informit.org (Atypon)",
"pages": "29-31",
"proceedingsTitle": "AIM-TEC 94: Third Australasian Instrumentation and Measurement Conference; Test and Evaluation in the Asia-Pacific Region; Preprints of Papers",
"url": "https://search.informit.org/doi/10.3316/informit.745150560334180",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Defense Test and Evaluation Professional Institute (DTEPI)"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.science.org/doi/10.1126/science.aag1582",
"items": [
{
"itemType": "journalArticle",
"title": "Transient compartmentalization of RNA replicators prevents extinction due to parasites",
"creators": [
{
"firstName": "Shigeyoshi",
"lastName": "Matsumura",
"creatorType": "author"
},
{
"firstName": "Ádám",
"lastName": "Kun",
"creatorType": "author"
},
{
"firstName": "Michael",
"lastName": "Ryckelynck",
"creatorType": "author"
},
{
"firstName": "Faith",
"lastName": "Coldren",
"creatorType": "author"
},
{
"firstName": "András",
"lastName": "Szilágyi",
"creatorType": "author"
},
{
"firstName": "Fabrice",
"lastName": "Jossinet",
"creatorType": "author"
},
{
"firstName": "Christian",
"lastName": "Rick",
"creatorType": "author"
},
{
"firstName": "Philippe",
"lastName": "Nghe",
"creatorType": "author"
},
{
"firstName": "Eörs",
"lastName": "Szathmáry",
"creatorType": "author"
},
{
"firstName": "Andrew D.",
"lastName": "Griffiths",
"creatorType": "author"
}
],
"date": "2016-12-09",
"DOI": "10.1126/science.aag1582",
"abstractNote": "The appearance of molecular replicators (molecules that can be copied) was probably a critical step in the origin of life. However, parasitic replicators would take over and would have prevented life from taking off unless the replicators were compartmentalized in reproducing protocells. Paradoxically, control of protocell reproduction would seem to require evolved replicators. We show here that a simpler population structure, based on cycles of transient compartmentalization (TC) and mixing of RNA replicators, is sufficient to prevent takeover by parasitic mutants. TC tends to select for ensembles of replicators that replicate at a similar rate, including a diversity of parasites that could serve as a source of opportunistic functionality. Thus, TC in natural, abiological compartments could have allowed life to take hold.",
"issue": "6317",
"libraryCatalog": "science.org (Atypon)",
"pages": "1293-1296",
"publicationTitle": "Science",
"url": "https://www.science.org/doi/10.1126/science.aag1582",
"volume": "354",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.pnas.org/doi/10.1073/pnas.2117831119",
"items": [
{
"itemType": "journalArticle",
"title": "Inequality in science and the case for a new agenda",
"creators": [
{
"firstName": "Joseph L.",
"lastName": "Graves",
"creatorType": "author"
},
{
"firstName": "Maureen",
"lastName": "Kearney",
"creatorType": "author"
},
{
"firstName": "Gilda",
"lastName": "Barabino",
"creatorType": "author"
},
{
"firstName": "Shirley",
"lastName": "Malcom",
"creatorType": "author"
}
],
"date": "2022-03-08",
"DOI": "10.1073/pnas.2117831119",
"abstractNote": "The history of the scientific enterprise demonstrates that it has supported gender, identity, and racial inequity. Further, its institutions have allowed discrimination, harassment, and personal harm of racialized persons and women. This has resulted in a suboptimal and demographically narrow research and innovation system, a concomitant limited lens on research agendas, and less effective knowledge translation between science and society. We argue that, to reverse this situation, the scientific community must reexamine its values and then collectively embark upon a moonshot-level new agenda for equity. This new agenda should be based upon the foundational value that scientific research and technological innovation should be prefaced upon progress toward a better world for all of society and that the process of how we conduct research is just as important as the results of research. Such an agenda will attract individuals who have been historically excluded from participation in science, but we will need to engage in substantial work to overcome the longstanding obstacles to their full participation. We highlight the need to implement this new agenda via a coordinated systems approach, recognizing the mutually reinforcing feedback dynamics among all science system components and aligning our equity efforts across them.",
"issue": "10",
"libraryCatalog": "pnas.org (Atypon)",
"pages": "e2117831119",
"publicationTitle": "Proceedings of the National Academy of Sciences",
"url": "https://www.pnas.org/doi/10.1073/pnas.2117831119",
"volume": "119",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]