-
Notifications
You must be signed in to change notification settings - Fork 5
/
queries_unannotated.json
1613 lines (1613 loc) · 243 KB
/
queries_unannotated.json
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
[
{
"id": 3,
"document_id": 49,
"query": "1. exp psychotic disorders/\n2. Delusions/\n3. Hallucinations/\n4. Paranoid Disorders/\n5. Schizophrenia/\n6. (psychotic disorder$ or psychoses or psychosis).tw.\n7. (delusion$ or hallucination$ or paranoid$).tw.\n8. (schizoaffective disorder$ or schizophreniform disorder$ or schizophrenia).tw.\n9. exp mood disorders/\n10. 1 or 2 or 3 or 4 or 5 or 6 or 7 or 8 or 9\n11. Receptors, Steroid/\n12. Glucocorticoids/\n13. Receptors, Corticotropin-Releasing Hormone/\n14. Receptors, Corticotropin/\n15. Dexamethasone/\n16. Hydrocortisone/\n17. Adrenocorticotropic Hormone/\n18. Corticotrophs/\n19. Hydroxycorticosteroids/\n20. R 121919.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n21. ORG 34116.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n22. 3-acetoxyandrost-5-ene-7,17-dione.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n23. Dehydroepiandrosterone/\n24. Mifepristone/\n25. Mitotane/\n26. Aminoglutethimide/\n27. Spironolactone/\n28. Ketoconazole/\n29. Metyrapone/\n30. Corticotropin-Releasing Hormone/\n31. 11 or 12 or 13 or 14 or 15 or 16 or 17 or 18 or 19 or 20 or 21 or 22 or 23 or 24 or 25 or 26 or 27 or 28 or 29 or 30\n31. 10 and 31\n32. clinical trial.pt\n33. clinical trial$.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n34. random$.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n35. placebo.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n36. placebo.ti,ab\n37. groups.ti,ab\n38. dt.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n39. trial.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n40. groups.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n41. 32 or 33 or 34 or 35 or 36 or 37 or 38 or 39 or 40\n42. 31 and 41",
"notes": "MEDLINE (OVID 1950 to August 2009)",
"start_date": "1949-12-31",
"end_date": "2009-07-31",
"annotator_id": 1
},
{
"id": 4,
"document_id": 48,
"query": "1. exp Dementia/\n\n2. Delirium/\n\n3. Wernicke Encephalopathy/\n\n4. Delirium, Dementia, Amnestic, Cognitive Disorders/\n\n5. dement*.mp.\n\n6. alzheimer*.mp.\n\n7. (lewy* adj2 bod*).mp.\n\n8. deliri*.mp.\n\n9. (chronic adj2 cerebrovascular).mp.\n\n10. (\"organic brain disease\" or \"organic brain syndrome\").mp.\n\n11. (\"normal pressure hydrocephalus\" and \"shunt*\").mp.\n\n12. \"benign senescent forgetfulness\".mp.\n\n13. (cerebr* adj2 deteriorat*).mp.\n\n14. (cerebral* adj2 insufficient*).mp.\n\n15. (pick* adj2 disease).mp.\n\n16. (creutzfeldt or jcd or cjd).mp.\n\n17. huntington*.mp.\n\n18. binswanger*.mp.\n\n19. korsako*.mp.\n\n20. or/1-19\n\n21. (statin or statins).ti,ab.\n\n22. atorvastatin.ti,ab.\n\n23. cerivastatin.ti,ab.\n\n24. fluvastatin.ti,ab.\n\n25. lovastatin.ti,ab.\n\n26. pravastatin.ti,ab.\n\n27. simvastatin.ti,ab.\n\n28. lipitor.ti,ab.\n\n29. baycol.ti,ab.\n\n30. lescol.ti,ab.\n\n31. mevacor.ti,ab.\n\n32. altocor.ti,ab.\n\n33. pravachol.ti,ab.\n\n34. lipostat.ti,ab.\n\n35. zocor.ti,ab.\n\n36. mevinolin.ti,ab.\n\n37. compactin.ti,ab.\n\n38. fluindostatin.ti,ab.\n\n39. rosuvastatin.ti,ab.\n\n40. Hydroxymethylglutaryl-CoA Reductase Inhibitors/ or Lovastatin/\n\n41. Simvastatin/\n\n42. or/21-41\n\n43. 20 and 42\n\n44. randomized controlled trial.pt.\n\n45. controlled clinical trial.pt.\n\n46. controlled clinical trial.pt.\n\n47. randomized.ab.\n\n48. placebo.ab.\n\n49. drug therapy.fs.\n\n50. randomly.ab.\n\n51. trial.ab.\n\n52. groups.ab.\n\n53. or/44-52\n\n54. (animals not (humans and animals)).sh.\n\n55. 53 not 54\n\n56. 43 and 55\n\n57. exp *Secondary Prevention/ or exp *Primary Prevention/\n\n58. (prevent or prevention).ti,ab.\n\n59. \"delay onset\".ti,ab.\n\n60. exp *Cognition/\n\n61. ((cognit* or cognition or memory or mental or brain) adj3 (impair* or decline* or deficit* or los* or stop* or reduc*)).ti,ab.\n\n62. (dementia or alzheimer*).ti,ab.\n\n63. Dementia/\n\n64. or/57-63\n\n65. 42 and 64\n\n66. 55 and 65",
"notes": "MEDLINE In-process and other non-indexed citations and MEDLINE 1950-present (Ovid SP)",
"start_date": "2014-11-30",
"end_date": "2015-10-31",
"annotator_id": 1
},
{
"id": 5,
"document_id": 42,
"query": "1 exp Oxazolidinones/ (3454)\n2 exp Oxazolone/ (471)\n3 (linezolid$ or oxazolone$).ti,ab. (3313)\n4 or/1-3 (5205)\n5 exp Glycopeptides/ (24374)\n6 (vancomycin$ or glycopeptide$).ti,ab. (14989)\n7 or/5-6 (32269)\n8 exp Soft Tissue Infections/ (1969)\n9 exp Staphylococcal Skin Infections/ (2085)\n10 exp Cellulitis/ (2621)\n11 exp Erysipelas/ (360)\n12 exp Furunculosis/ (298)\n13 exp Abscess/ (17532)\n14 exp Wound Infection/ (15200)\n15 exp Fasciitis, Necrotizing/ (1891)\n16 exp Myositis/ (6975)\n17 exp Gas Gangrene/ (356)\n18 (soft tissue infection$ or skin infection$).ti,ab. (4702)\n19 (cellulitis or erysipelas or furuncul$ or abscess$ or absess$ or necrotizing fasciitis or myositis or gas gangrene or (wound$ adj2 infect$)).ti,ab. (44369)\n20 or/8-19 (69951)\n21 4 and 7 and 20 (216)\n22 randomized controlled trial.pt. (247475)\n23 controlled clinical trial.pt. (40136)\n24 randomized.ab. (201843)\n25 placebo.ab. (93559)\n26 clinical trials as topic.sh. (80952)\n27 randomly.ab. (138890)\n28 trial.ti. (75242)\n29 or/22-28 (558737)\n30 Animals/ (2530681)\n31 Humans/ (7027945)\n32 30 not 31 (1649878)\n33 29 not 32 (508211)\n34 21 and 33 (43)",
"notes": "Ovid Medline",
"start_date": null,
"end_date": "2015-03-23",
"annotator_id": 1
},
{
"id": 6,
"document_id": 1,
"query": "1. MMSE*.ti,ab.\n\n2. sMMSE.ti,ab.\n\n3. Folstein*.ti,ab.\n\n4. MiniMental.ti,ab.\n\n5. \"mini mental stat*\".ti,ab.\n\n6. or/1-5",
"notes": "We did not use search filters designed to retrieve diagnostic test accuracy studies (collections of terms aimed at reducing the number needed to screen by filtering out irrelevant records and retaining only those that are relevant) as a method to restrict the search overall, because available filters have not yet proved sensitive enough for systematic review searches (Beynon 2013; Whiting 2011). We did not apply any language restriction\n\nNote that though then say from 1946, in the query strategy for MEDLINE they say 1950-present.\nThey also report hit restrictions:\nNov 2012: 10048\nMay 2014: 1657",
"start_date": "1949-12-31",
"end_date": "2014-05-19",
"annotator_id": 3
},
{
"id": 7,
"document_id": 2,
"query": "--",
"notes": "This review used the \"Cochrane Central Register of Controlled Trials\" and most pubmed references may have come from there - they also do pubmed searches; but because of the Cochrane Central Register of Controlled Trials, it may be an issue to correctly align search results. It is unclear how they combined the search terms:\n\"sing the following search terms: c(a)esarean section; tocolysis; betamimetics; glyceryl tri-nitrate; calcium channel blockers; birth injury; and birth trauma.\"\n\nThey focus on randomised controlled trials. Also, \"We excluded quasi-randomised trials (e.g. those randomised by date of birth or hospital number) from the analysis.\"",
"start_date": "1965-12-31",
"end_date": "2005-12-31",
"annotator_id": 3
},
{
"id": 8,
"document_id": 3,
"query": "[exp Infant, Newborn/ OR Premature Birth/ OR (neonat$ or neo nat$).ti,ab. OR (newborn$ or new born$ or newly born$).ti,ab. OR (preterm or preterms or pre term or pre terms).ti,ab. OR (preemie$ or premie or premies).ti,ab. OR (prematur$ adj3 (birth$ or born or deliver$)).ti,ab. OR (low adj3 (birthweight$ or birth weight$)).ti,ab. OR (lbw or vlbw or elbw).ti,ab. OR infan$.ti,ab. OR (baby or babies).ti,ab.] AND [emollients/ OR Skin cream/ OR Ointments/ OR Dermatological agents/ OR Plant oils/ OR emollient$.ti,ab. (skin adj6 (cream$ or oil$ or unguent$ or gel$ or moisturi$ or honey or humectant$ or ointment$ or foam$ or lotion$ or conditioner$)).ti,ab. OR (topical adj2 (agent$ or treatment$ or therap$)).ti,ab. OR skin care product$.ti,ab.]",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2015-08-30",
"annotator_id": 3
},
{
"id": 15,
"document_id": 8,
"query": "PubMed:\n\n((lumbar stenosis OR spine stenosis OR spinal stenosis) AND (pubstatusaheadofprint OR publisher[sb] OR pubmednotmedline[sb]))",
"notes": "Pubmed query: how is it different from MEDLINE?",
"start_date": "1945-12-31",
"end_date": "2015-02-10",
"annotator_id": 3
},
{
"id": 13,
"document_id": 7,
"query": "1. exp Cardiovascular Diseases/\n2. cardio*.tw.\n3. cardia*.tw.\n4. heart*.tw.\n5. coronary*.tw.\n6. angina*.tw.\n7. ventric*.tw.\n8. myocard*.tw.\n9. pericard*.tw.\n10. isch?em*.tw.\n11. emboli*.tw.\n12. arrhythmi*.tw.\n13. thrombo*.tw.\n14. atrial fibrillat*.tw.\n15. tachycardi*.tw.\n16. endocardi*.tw.\n17. (sick adj sinus).tw.\n18. exp Stroke/\n19. (stroke or stokes).tw.\n20. cerebrovasc*.tw.\n21. cerebral vascular.tw.\n22. apoplexy.tw.\n23. (brain adj2 accident*).tw.\n24. ((brain* or cerebral or lacunar) adj2 infarct*).tw.\n25. exp Hypertension/\n26. hypertensi*.tw.\n27. peripheral arter* disease*.tw.\n28. ((high or increased or elevated) adj2 blood pressure).tw.\n29. exp Hyperlipidemias/\n30. hyperlipid*.tw.\n31. hyperlip?emia*.tw.\n32. hypercholesterol*.tw.\n33. hypercholester?emia*.tw.\n34. hyperlipoprotein?emia*.tw.\n35. hypertriglycerid?emia*.tw.\n36. exp Arteriosclerosis/\n37. exp Cholesterol/\n38. cholesterol.tw.\n39. \"coronary risk factor* \".tw.\n40. Blood Pressure/\n41. blood pressure.tw.\n42. or/1-41\n43. Mass Screening/\n44. Systematic risk assessment*.tw.\n45. Case finding.tw.\n46. ((screen* or assess* or test* or diagnos* or surveill* or identifi* or prevelence or incidence*) adj10 (structured or systematic or organised or organized or opportunistic or random)).tw.\n47. Risk Assessment/\n48. (risk* adj3 assess*).tw.\n49. or/43-48\n50. Primary Prevention/\n51. (prophylaxis or prevent*).tw.\n52. 50 or 51\n53. 42 and 49 and 52\n54. randomized controlled trial.pt.\n55. controlled clinical trial.pt.\n56. randomized.ab.\n57. placebo.ab.\n58. drug therapy.fs.\n59. randomly.ab.\n60. trial.ab.\n61. groups.ab.\n62. 54 or 55 or 56 or 57 or 58 or 59 or 60 or 61\n63. exp animals/ not humans.sh.\n64. 62 not 63\n65. 53 and 64",
"notes": "Types of studies: Randomised controlled trials (RCTs).",
"start_date": "1945-12-31",
"end_date": "2015-01-23",
"annotator_id": 3
},
{
"id": 11,
"document_id": 6,
"query": "1. exp ORTHODONTICS/\n2. orthodontic$.mp.\n3. or/1-2\n4. (retention or retain$).mp.\n5. (stabilise$ or stabilize$).mp.\n6. (fraenectom$ or frenectom$).mp.\n7. (fiberotom$ or fibreotom$).mp.\n8. \"interproximal stripping\".mp.\n9. pericision.mp.\n10. reproximat$.mp.\n11. ((gingiv$ or periodont$) adj4 surg$).mp.\n12. (retain or retention).mp.\n13. 11 and 12\n14. or/4-10\n15. 13 or 14\n16. 3 and 15",
"notes": "Types of studies: Randomised controlled trials.",
"start_date": "1945-12-31",
"end_date": "2016-01-25",
"annotator_id": 3
},
{
"id": 12,
"document_id": 6,
"query": "1. randomized controlled trial.pt.\n2. controlled clinical trial.pt.\n3. randomized.ab.\n4. placebo.ab.\n5. drug therapy.fs.\n6. randomly.ab.\n7. trial.ab.\n8. groups.ab.\n9. or/1-8\n10. exp animals/ not humans.sh.\n11. 9 not 10",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2016-01-25",
"annotator_id": 3
},
{
"id": 14,
"document_id": 8,
"query": "randomized controlled trial.pt.\n\ncontrolled clinical trial.pt.\n\npragmatic clinical trial.pt.\n\nrandomized.ab.\n\nplacebo.ab,ti.\n\ndrug therapy.fs.\n\nrandomly.ab,ti.\n\ntrial.ab,ti.\n\ngroups.ab,ti.\n\nor/1-9\n\n(animals not (humans and animals)).sh.\n\n10 not 11\n\nexp Constriction, Pathologic/\n\nlimit 13 to yr=\"1976 - 1982\"\n\nexp Lumbar Vertebrae/\n\nlimit 15 to yr=\"1966 - 1982\"\n\nexp Spinal Canal/\n\nlimit 17 to yr=\"1966 - 1982\"\n\nexp Spinal Diseases/\n\nlimit 19 to yr=\"1966 - 1982\"\n\nexp Spinal Stenosis/\n\nspinal stenosis.mp.\n\n(lumbar adj5 stenosis).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\n(spin* adj5 stenosis).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\nneurogenic claudication.mp.\n\nexp Spinal Osteophytosis/\n\nexp Spondylosis/\n\n(lumb* adj5 spondyl*).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\nexp Cauda Equina/\n\nlumbar radicular pain.mp.\n\n28 or 26 or 29 or 22 or 27 or 18 or 21 or 16 or 23 or 25 or 14 or 20 or 24 or 30\n\n12 and 31\n\nlimit 32 to yr=2012-2015\n\nlimit 32 to ed=20121001-20150211\n\n33 or 34",
"notes": "We considered for inclusion both randomised controlled trials (RCTs) and quasi-randomised controlled studies",
"start_date": "1945-12-31",
"end_date": "2015-02-10",
"annotator_id": 3
},
{
"id": 10,
"document_id": 5,
"query": "#1\tSearch Thrombosis[Mesh]\n#2\tSearch Thromboembolism[Mesh]\n#3\tSearch Venous Thromboembolism[Mesh]\n#4\tSearch Venous Thrombosis[Mesh]\n#5\tSearch thrombus*[tiab] OR thrombotic*[tiab] OR thrombolic*[tiab] OR thromboemboli*[tiab] OR thrombos*[tiab] OR embol*[tiab]\n#6\tSearch Pulmonary Embolism[Mesh]\n#7\tSearch PE[tiab] OR DVT[tiab] OR VTE[tiab]\n#8\tSearch vein thromb*[tiab] OR venous thromb*[tiab]\n#9\tSearch (vein*[ti] OR venous[ti]) AND thromb*[ti]\n#10\tSearch ((((((((#1) OR #2) OR #3) OR #4) OR #5) OR #6) OR #7) OR #8) OR #9\n#11\tSearch warfarin[MeSH]\n#12\tSearch warfarin[tiab] OR Jantoven[tiab] OR Marevan[tiab] OR Lawarin[tiab] OR Waran[tiab] OR Warfant[tiab] OR coumadin[tiab] OR coumarin[tiab] OR coumadin[tiab] OR coumarin[tiab]\n#13\tSearch vitamin k antagon*[tiab]\n#14\tSearch (vitamin k[ti] OR vit k[ti]) AND antagon*[ti]\n#15\tSearch (((#11) OR #12) OR #13) OR #14\n#16\tSearch Nomograms[MeSH]\n#17\tSearch nomogram*[tiab]\n#18\tSearch (initial[ti] OR initiation[ti] OR induction[ti] OR loading[ti]) AND (dose*[ti] OR dosage[ti])\n#19\tSearch (dosing[ti] OR dose*[ti] OR dosage*[ti]) AND (empirical[ti] OR regime*[ti] OR method[ti] OR protocol[ti] OR algorithm*[ti] OR Kovacs[ti] OR Fennerty[ti] OR Tait[ti])\n#20\tSearch (((#16) OR #17) OR #18) OR #19\n#21\tSearch ((#10) AND #15) AND #20",
"notes": "Types of studies: Randomized controlled trials.",
"start_date": null,
"end_date": "2015-09-29",
"annotator_id": 3
},
{
"id": 9,
"document_id": 4,
"query": "1 exp Menorrhagia/ (3581)\n2 menorrhagia.tw. (2686)\n3 hypermenorrhoea.tw. (31)\n4 excessive menstrua$.tw. (163)\n5 dysfunctional uterine bleeding.tw. (779)\n6 heavy menstrua$.tw. (512)\n7 abnormal uterine bleeding.tw. (1382)\n8 abnormal menstrua$ bleeding.tw. (36)\n9 iron deficient anaemia.tw. (42)\n10 or/1-9 (6776)\n11 exp endometrial ablation techniques/ or exp hysterectomy/ or exp hysterectomy, vaginal/ or exp hysteroscopy/ (28277)\n12 hysterectom$.tw. (27351)\n13 endometrial ablation.tw. (976)\n14 hysteroscop$.tw. (4939)\n15 (TAH or LAVH or TCRE).tw. (1213)\n16 transcervical resection$.tw. (196)\n17 laser ablation.tw. (4581)\n18 exp Electrosurgery/ (3806)\n19 electrosurgery.tw. (1177)\n20 (rollerball or thermal balloon).tw. (305)\n21 (hyperthermia or thermotherap$).tw. (22084)\n22 photodynamic therap$.tw. (12018)\n23 exp Cryosurgery/ (11040)\n24 (cryoablation or microwave or laser$ or Cryosurger$).tw. (215571)\n25 surgical treatment$.tw. (118658)\n26 endometrial resection.tw. (270)\n27 Balloon.tw. (48789)\n28 (catheter ablation or radiofrequency or saline irrigation).tw. (26425)\n29 exp Catheter Ablation/ (22294)\n30 ablation.tw. (59556)\n31 or/11-30 (515895)\n32 (medical therap$ or medical treatment$).tw. (57246)\n33 prostaglandin synthetase inhibitor$.mp. or PGSI$.tw. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier] (667)\n34 exp Mefenamic Acid/ (942)\n35 Mefenamic Acid.tw. (1055)\n36 exp Anti-Inflammatory Agents, Non-Steroidal/ (159226)\n37 Nonsteroidal anti inflammator$.tw. (12422)\n38 NSAID$.tw. (18605)\n39 Non steroidal anti inflammator$.tw. (11856)\n40 flurbiprofen.tw. (1982)\n41 FLURBIPROFEN/ (1640)\n42 meclofenamic acid.tw. (284)\n43 Meclofenamic Acid/ (934)\n44 ibuprofen.tw. or IBUPROFEN/ (10885)\n45 naproxen.tw. or NAPROXEN/ (5489)\n46 diclofenac.tw. or DICLOFENAC/ (9539)\n47 gonadotrophin-releasing hormone analogue$.tw. (239)\n48 tranexamic acid.tw. or Tranexamic Acid/ (2823)\n49 progestogen.tw. or Progestins/ (11300)\n50 norethisterone.tw. or Norethindrone/ (4586)\n51 medroxyprogesterone acetate.tw. or Medroxyprogesterone 17-Acetate/ (6294)\n52 Contraceptives, Oral, Combined/ (4230)\n53 danazol.tw. or DANAZOL/ (2820)\n54 Levonorgestrel.tw. or Levonorgestrel/ (4851)\n55 LNG-IUS.tw. (471)\n56 mirena.tw. (229)\n57 antifibrinolytic.tw. or Antifibrinolytic Agents/ (5211)\n58 Combined oral contraceptive$.tw. (1951)\n59 or/32-58 (266223)\n60 59 and 10 and 31 (534)\n61 randomized controlled trial.pt. (385614)\n62 controlled clinical trial.pt. (88649)\n63 randomized.ab. (310509)\n64 placebo.tw. (162856)\n65 clinical trials as topic.sh. (170973)\n66 randomly.ab. (224859)\n67 trial.ti. (133531)\n68 (crossover or cross-over or cross over).tw. (62761)\n69 or/61-68 (959243)\n70 (animals not (humans and animals)).sh. (3896812)\n71 69 not 70 (883409)\n72 60 and 71 (113)",
"notes": "Randomised controlled trials (RCTs)",
"start_date": null,
"end_date": "2016-01-13",
"annotator_id": 3
},
{
"id": 37,
"document_id": 55,
"query": "1. tomography/\n2. tomography, optical coherence/\n3. ophthalmoscopy/\n4. (optical$ adj2 coherence$ adj2 tomograph$).tw.\n5. OCT.tw.\n6. or/1-5\n7. exp macular edema/\n8. (macula$ adj3 oedema).tw.\n9. (macula$ adj3 edema).tw.\n10. maculopath$.tw.\n11. (CME or CSME or CMO or CSMO).tw.\n12. (DMO or DME).tw.\n13. or/7-12\n14. exp diabetes mellitus/\n15. diabetic retinopathy/\n16. diabetes complications/\n17. diabet$.tw.\n18. retinopath$.tw.\n19. or/14-18\n20. 6 and 13 and 19",
"notes": " Ovid MEDLINE, Ovid MEDLINE In-Process and Other Non-Indexed Citations, Ovid MEDLINE Daily, Ovid OLDMEDLINE (January 1946 to June 2013)",
"start_date": "1945-12-31",
"end_date": "2013-06-29",
"annotator_id": 1
},
{
"id": 38,
"document_id": 82,
"query": "1. acoustic stimulation.mp. or exp Acoustic Stimulation/\n2. acupressure.mp. or exp Acupressure/\n3. exp Acupuncture/ or acupuncture.mp.\n4. exp Medicine, African Traditional/\n5. anthroposophy.mp. or exp Anthroposophy/\n6. antioxidants.mp. or exp Antioxidants/\n7. arabic medicine.mp. or exp Medicine, Arabic/\n8. aromatherapy.mp. or exp Aromatherapy/\n9. art therapy.mp. or exp Art Therapy/\n10. auricular therapy.mp.\n11. exp Medicine, Ayurvedic/\n12. ayurved$.mp.\n13. biofeedback.mp. or exp Biofeedback, Psychology/\n14. breathing exercise$.mp. or exp Breathing Exercises/\n15. exp Color Therapy/\n16. (color therap$ or colour therap$).mp. [mp=protocol supplementary concept, rare disease supplementary concept, title, original title, abstract, name of substance word, subject heading word, unique identifier]\n17. exp complementary therapies/ or exp acupuncture therapy/ or exp anthroposophy/ or exp auriculotherapy/ or exp holistic health/ or exp homeopathy/ or exp horticultural therapy/ or exp medicine, traditional/ or exp mesotherapy/ or exp mind-body therapies/ or exp musculoskeletal manipulations/ or exp naturopathy/ or exp organotherapy/ or exp phytotherapy/ or exp reflexotherapy/ or exp rejuvenation/ or exp sensory art therapies/ or exp speleotherapy/ or exp spiritual therapies/\n18. dance therapy.mp. or exp Dance Therapy/\n19. exp Medicine, East Asian Traditional/\n20. eclecticism.mp. or exp Eclecticism, Historical/\n21. electroacupuncture.mp. or exp Electroacupuncture/\n22. faith healing.mp. or exp Faith Healing/\n23. holistic health.mp.\n24. homeopathy.mp.\n25. horticultural therapy.mp.\n26. hypnosis.mp. or exp Hypnosis/\n27. exp \"Imagery (Psychotherapy)\"/\n28. kampo.mp. or exp Medicine, Kampo/\n29. exp Kinesiology, Applied/ or kinesiology.mp.\n30. laughter therapy.mp. or exp Laughter Therapy/\n31. magic.mp. or exp Magic/\n32. manipulation.mp. or exp Manipulation, Chiropractic/\n33. exp Massage/ or massage.mp.\n34. meditation.mp. or exp Meditation/\n35. mental healing.mp. or exp Mental Healing/\n36. mesotherapy.mp. or exp Mesotherapy/\n37. moxibustion.mp. or exp Moxibustion/\n38. music therapy.mp. or exp Music Therapy/\n39. exp Naturopathy/ or naturopath$.mp.\n40. natural remed$.mp. [mp=protocol supplementary concept, rare disease supplementary concept, title, original title, abstract, name of substance word, subject heading word, unique identifier]\n41. occultism.mp. or exp Occultism/\n42. exp Psychodrama/ or psychodrama.mp.\n43. drama therapy.mp.\n44. Psychology/ or psychology.mp.\n45. psychophysiology.mp. or exp Psychophysiology/\n46. mind body relation$.mp.\n47. radiesthesia.mp. or exp Radiesthesia/\n48. reflexotherapy.mp. or exp Reflexotherapy/\n49. rejuvenation.mp. or exp Rejuvenation/\n50. relaxation therapy.mp. or exp Relaxation Therapy/\n51. shamanism.mp. or exp Shamanism/\n52. speleotherapy.mp. or exp Speleotherapy/\n53. Tai Ji/\n54. tai chi.mp.\n55. therapeutic touch.mp. or exp Therapeutic Touch/\n56. exp Medicine, Unani/ or unani.mp.\n57. witchcraft.mp. or exp Witchcraft/\n58. yoga.mp. or exp Yoga/\n59. visualisation.mp.\n60. immunoaugmentation.mp.\n61. Tissue Therapy/\n62. Medicine, Chinese Traditional/\n63. tcm.mp.\n64. antineoplaston.mp.\n65. chelation.mp.\n66. shark.mp.\n67. electromagnetic$.mp.\n68. \"Tea Tree Oil\"/\n69. Aloe/\n70. reflexology.mp.\n71. reiki.mp.\n72. herb$.mp.\n73. physical therapy.mp.\n74. cupping therapy.mp.\n75. therapeutic exercise.mp.\n76. folk.mp.\n77. bioelectromagnetic$.mp.\n78. Diet/\n79. nutrition.mp.\n80. Diet, Macrobiotic/\n81. gerson.mp.\n82. support group.mp. or Self-Help Groups/\n83. or/1-82\n84. acne.mp. or exp Acne Vulgaris/\n85. randomized controlled trial.pt.\n86. controlled clinical trial.pt.\n87. randomized.ab.\n88. placebo.ab.\n89. clinical trials as topic.sh.\n90. randomly.ab.\n91. trial.ti.\n92. 85 or 86 or 87 or 88 or 89 or 90 or 91\n93. (animals not (humans and animals)).sh.\n94. 92 not 93\n95. 83 and 84 and 94",
"notes": "All databases were searched up to 22 January 2014. MEDLINE searches started from 1946.",
"start_date": "1945-12-31",
"end_date": "2014-01-21",
"annotator_id": 1
},
{
"id": 26,
"document_id": 9,
"query": "1 exp Heart Failure/\n2 exp Ventricular Dysfunction/\n3 heart failure.tw.\n4 cardiac failure.tw.\n5 (ventric$ adj6 dysfunction$).tw.\n6 (ventric$ adj6 function$).tw.\n7 exp Heart Defects, Congenital/\n8 (congenital$ adj3 heart).tw.\n9 (congenital$ adj3 cardiac).tw.\n10 or/1-9\n11 exp Adrenergic beta-Antagonists/\n12 betablocker$.tw.\n13 (beta$ adj3 block$).tw.\n14 (beta and (adrenergic adj6 block$)).tw.\n15 Acebutolol.tw.\n16 atenolol.tw.\n17 alprenolol.tw.\n18 betaxolol.tw.\n19 bisoprolol.tw.\n20 bupranolol.tw.\n21 carvedilol.tw.\n22 carteolol.tw.\n23 celiprolol.tw.\n24 esmolol.tw.\n25 labetalol.tw.\n26 metoprolol.tw.\n27 nadolol.tw.\n28 oxprenolol.tw.\n29 penbutolol.tw.\n30 pindolol.tw.\n31 practolol.tw.\n32 propranolol.tw.\n33 sotalol.tw.\n34 timolol.tw.\n35 or/11-34\n36 10 and 35\n37 limit 36 to \"all child (0 to 18 years)\"\n38 (child$ or infant$ or pediatr$ or paediatr$ or adolesc$).tw.\n39 38 and 36\n40 37 or 39\n41 randomized controlled trial.pt.\n42 controlled clinical trial.pt.\n43 Randomized controlled trials/\n44 random allocation/\n45 double blind method/\n46 single-blind method/\n47 or/41-46\n48 exp animal/ not humans/\n49 47 not 48\n50 clinical trial.pt.\n51 exp Clinical trials as topic/\n52 (clin$ adj25 trial$).ti,ab.\n53 ((singl$ or doubl$ or trebl$ or tripl$) adj (blind$ or mask$)).ti,ab.\n54 placebos/\n55 placebo$.ti,ab.\n56 random$.ti,ab.\n57 research design/\n58 or/50-57\n59 58 not 48\n60 59 not 49\n61 comparative study.pt.\n62 exp evaluation studies/\n63 follow up studies/\n64 prospective studies/\n65 (control$ or prospectiv$ or volunteer$).ti,ab.\n66 or/61-65\n67 66 not 48\n68 67 not (49 or 60)\n69 49 or 60 or 68\n70 40 and 69",
"notes": "MEDLINE (Ovid)\n\nAuthors notes:\nThe original review searched the Cochrane Central Register of Controlled Trials (CENTRAL) in The Cochrane Library, MEDLINE (Ovid), EMBASE (Ovid), and LILACS up to January 2008 (Appendix 1). We updated the searches on 9 November 2015 (Appendix 2). We did not apply any language restrictions.",
"start_date": null,
"end_date": "2008-01-30",
"annotator_id": 1
},
{
"id": 27,
"document_id": 10,
"query": "#1 \"Middle Ear Ventilation\"[Mesh]\n\n#2 ((tympanostomy OR (middle AND ear) OR tympanic) AND tube*)\n\n#3(ear* AND (\"tube insert*\" OR \"tubes insert*\" OR \"ventilation tube*\" OR \"ventilating tube*\" OR \"tube ventilat*\" OR \"tubes ventilat*\"))\n\n#4 (grommet* OR tubulation OR (middle AND ear AND ventilat*))\n\n#5 (#1 OR #2 OR #3 OR #4)\n\n#6 \"Water\"[Mesh:NoExp]\n\n#7 \"Baths\"[Mesh]\n\n#8 \"Swimming\"[Mesh]\n\n#9 \"Fresh Water\"[Mesh]\n\n#10 \"Swimming Pools\"[Mesh]\n\n#11 \"Immersion\"[Mesh]\n\n#12 \"Oceans and Seas\"[Mesh]\n\n#13 \"Seawater\"[Mesh]\n\n#14 (water* or swim* or shower* or bath* or dry or wash* or clean* or dive or diving or rinsing or rinse or nonswim*)\n\n#15 (immers* or submers* or submerg* or lake* or pond* or creek* or pool* or river* or freshwater* or sea* or ocean* or seawater* or ingress)\n\n#16 \"Ear Protective Devices\"[Mesh]\n\n#17 ((ear and protect*) or \"ear mould*\" or \"ear mold*\" or \"ear plug*\" or earplug* or earmold* or earmould* or \"Canal occlusive devis*\" or \"physical barrier*\" or (cotton and (vaseline or \"petroleum jelly\")))\n\n#18 (#6 OR #7 OR #8 Or #9 OR #10 OR #11 OR #12 OR #13 OR #14 OR #15 OR #16 OR #17 OR #18)\n\n#19 (#5 AND #18)\n\n#20 \"Middle Ear Ventilation/adverse effects\"[Mesh]\n\n#21 (#19 OR #20)",
"notes": "Search History:\nPubMed (1946 to 1 September 2015);",
"start_date": "1945-12-31",
"end_date": "2015-08-31",
"annotator_id": 1
},
{
"id": 28,
"document_id": 43,
"query": "1. randomized controlled trial.pt.\n2. controlled clinical trial.pt.\n3. randomized controlled trials.sh.\n4. random allocation.sh.\n5. double blind method.sh.\n6. single blind method.sh.\n7. or/1-6\n8. clinical trial.pt.\n9. exp clinical trials/\n10. (clin$ adj25 trial$).ti,ab.\n11. ((singl$ or doubl$ or trebl$ or tripl$) adj25 (blind$ or mask$)).ti,ab.\n12. placebos.sh.\n13. placebo$.ti,ab.\n14. random$.ti,ab.\n15. research design.sh.\n16. or/10-15\n17. comparative study.sh.\n18. exp evaluation studies/\n19. follow up studies.sh.\n20. prospective studies.sh.\n21. (control$ or prospectiv$ or volunteer$).ti,ab.\n22. or/17-21\n23. 7 or 16 or 22\n24. abdomen/su\n25. (abdomin$ or abdomen).ti,ab,sh.\n26. (surgery or operat$).ti,ab,sh.\n27. 25 and 26\n28. 24 or 27\n29. analgesia epidural/\n30. exp anesthesia epidural/\n31. (epidural adj2 (analgesi$ or an?esthe$)).ti,ab.\n32. 29 or 30 or 31\n33. 28 and 32\n34. 23 and 33",
"notes": "Search History:\nOvid MEDLINE (from inception to week 1, November 2014);\nThe search strategy for Ovid MEDLINE (1966 to July 2004) and Ovid CENTRAL (2004, Issue 3). The original search was performed in 2004 and updated in 2010 and in 2014.",
"start_date": "2003-12-31",
"end_date": "2014-12-30",
"annotator_id": 1
},
{
"id": 29,
"document_id": 101,
"query": "exp osteoarthritis/\n\nosteoarthr$.tw.\n\n(degenerative adj2 arthritis).tw.\n\narthrosis.tw.\n\nor/1-4\n\nKnee/\n\nexp Knee Joint/\n\nknee$.tw.\n\nor/6-8\n\nexp EXERCISE/\n\nexp exertion/\n\nexp Physical Fitness/\n\nexp Exercise Test/\n\nexp Exercise Tolerance/\n\nexp Sports/\n\nexp PLIABILITY/\n\nexp Physical Endurance/\n\nexertion$.tw.\n\nexercis$.tw.\n\nsport$.tw.\n\n((physical or motion) adj5 (fitness or therap$)).tw.\n\n(physical$ adj2 endur$).tw.\n\n((strength$ or isometric$ or isotonic$ or isokinetic$ or aerobic$ or endurance or weight$) adj5 (exercis$ or train$)).tw.\n\nexp physical therapy modalities/\n\nphysiotherap$.tw.\n\nmanipulat$.tw.\n\nkinesiotherap$.tw.\n\nexp Rehabilitation/\n\nrehab$.tw.\n\n(skate$ or skating).tw.\n\nrun$.tw.\n\njog$.tw.\n\ntreadmill$.tw.\n\nswim$.tw.\n\nbicycl$.tw.\n\n(cycle$ or cycling).tw.\n\nwalk$.tw.\n\n(row or rows or rowing).tw.\n\nmuscle strength$.tw.\n\nor/10-39\n\nrandomized controlled trial.pt.\n\ncontrolled clinical trial.pt.\n\nrandomized.ab.\n\nplacebo.ab.\n\ndrug therapy.fs.\n\nrandomly.ab.\n\ntrial.ab.\n\ngroups.ab.\n\n41 or 42 or 43 or 44 or 45 or 46 or 47 or 48\n\nhumans.sh.\n\n49 and 50\n\nand/5,9,40,51",
"notes": "Five electronic databases were searched from inception to May 2013",
"start_date": null,
"end_date": "2003-05-30",
"annotator_id": 1
},
{
"id": 30,
"document_id": 11,
"query": "1 (discharge and (plan* or service? or program* or intervention?)).ti.\n2 *Patient Discharge/ \n3 (patient* adj2 discharge*).ti,ab.\n4 (hospital adj2 discharge*).ti,ab.\n5 (discharge adj2 plan*).ti,ab. \n6 (discharge adj service?).ti,ab. \n7 (discharge adj program*).ti,ab. \n8 (discharge adj procedure*).ti,ab. \n9 2 or 3 or 4 or 5 or 6 or 7 or 8 \n10 *\"Continuity of Patient Care\"/\n11 *\"Length of Stay\"/\n12 Patient Readmission/ \n13 (readmission or readmitted or re-admission or re-admitted).ti,ab. \n14 (rehospitali?ation* or re-hospitali?ation* or rehospitali?ed or re-hospitali?ed).ti,ab. (4530)\n15 length of stay.ti,ab. \n16 length of hospital stay.ti,ab. \n17 ((hospital or hospitali?ed or bed) adj2 days).ti,ab. \n18 10 or 11 or 12 or 13 or 14 or 15 or 16 or 17\n19 9 and 18 \n20 1 or 19\n21 randomized controlled trial.pt. \n22 controlled clinical trial.pt.\n23 randomized.ab. \n24 placebo.ab. \n25 drug therapy.fs. \n26 randomly.ab.\n27 trial.ab. \n28 groups.ab. \n29 21 or 22 or 23 or 24 or 25 or 26 or 27 or 28 \n30 exp animals/ not humans.sh. \n31 29 not 30 \n32 20 and 31 \n33 (2012* or 2013* or 2014* or 2015* or 2016*).ed,dp,yr. \n34 32 and 33",
"notes": "Electronic search history:\nMEDLINE via OvidSP (1946 to October 2015)\n\nMEDLINE(R) In-Process & Other Non-Indexed Citations and MEDLINE(R) (OvidSP) [1946 to Present]\nDate searched: 05 October November 2015\n\n(I think here they made a mistake but really it's October)",
"start_date": "1945-12-31",
"end_date": "2015-10-04",
"annotator_id": 1
},
{
"id": 31,
"document_id": 12,
"query": "1. exp Colchicine/\n2. colcemid*.tw.\n3. demecolcine.tw.\n4. colchamine.tw.\n5. lumicolchicine*.tw.\n6. gamma-lumicolchicine*.tw.\n7. beta-lumicolchicine.tw.\n8. colchicin*.tw.\n9. colchichine.tw.\n10. aqua colchin.tw.\n11. colchicum.tw.\n12. colchily.tw.\n13. colchimedio.tw.\n14. colchiquim.tw.\n15. colchisol.tw.\n16. colchysat.tw.\n17. colcine.tw.\n18. colcrys.tw.\n19. colgout.tw.\n20. goutichine.tw.\n21. goutnil.tw.\n22. kolkicin.tw.\n23. nsc 757.tw.\n24. tolchicine.tw.\n25. or/1-24\n26. randomized controlled trial.pt.\n27. controlled clinical trial.pt.\n28. randomized.ab.\n29. placebo.ab.\n30. clinical trials as topic.sh.\n31. randomly.ab.\n32. trial.ti.\n33. 26 or 27 or 28 or 29 or 30 or 31 or 32\n34. exp animals/ not humans.sh.\n35. 33 not 34\n36. 25 and 35\n37. (trial* or random*).tw.\n38. 33 or 37\n39. 38 not 34\n40. 25 and 39",
"notes": "MEDLINE electronic search details:\nMEDLINE In-Process & Other Non-Indexed Citations, MEDLINE Daily, MEDLINE and OLDMEDLINE (Ovid, 1946 to 30 January 2015)\n\n\"We identified trials through systematic searches of the following bibliographic databases on 30 January 2015:\"",
"start_date": "1945-12-31",
"end_date": "2015-01-29",
"annotator_id": 1
},
{
"id": 32,
"document_id": 83,
"query": "1. randomized controlled trial.pt.\n2. controlled clinical trial.pt.\n3. randomized.ab.\n4. placebo.ab.\n5. clinical trials as topic.sh.\n6. randomly.ab.\n7. trial.ti.\n8. 1 or 2 or 3 or 4 or 5 or 6 or 7\n9. (animals not (human and animals)).sh.\n10. 8 not 9\n11. exp Dermatitis, Atopic/\n12. atopic dermatitis.mp.\n13. atopic eczema.mp.\n14. exp NEURODERMATITIS/\n15. neurodermatitis.mp.\n16. infantile eczema.mp.\n17. childhood eczema.mp.\n18. Besniers' Prurigo.mp.\n19. exp Eczema/ or eczema.mp.\n20. 16 or 11 or 19 or 14 or 13 or 17 or 12 or 15 or 18\n21. 10 and 20\n22. exp Pyroglyphidae/\n23. (house dust mite$ or housedust mite$).mp. \n24. Dermatophagoide$.mp. \n25. Euroglyphus.mp.\n26. Blomia.mp.\n27. dust mite$.mp.\n28. exp Mites/\n29. 22 or 23 or 24 or 25 or 26 or 27 or 28\n30. 21 and 29",
"notes": "Databases were searched up to 14 August 2014;\nMEDLINE via Ovid (from 1946) using the strategy in Appendix 2;\n",
"start_date": "1945-12-31",
"end_date": "2014-08-13",
"annotator_id": 1
},
{
"id": 33,
"document_id": 98,
"query": "1\tLymphoma/\n2\texp Hodgkin Disease/\n3\tGerminoblastom$.tw,kf,ot.\n4\tReticulolymphosarcom$.tw,kf,ot.\n5\tHodgkin$.tw,kf,ot.\n6\t(malignan$ adj2 (lymphogranulom$ or granulom$)).tw,kf,ot.\n7\tor/1-6\n8\texp Positron-Emission Tomography/\n9\t(pet$ or petscan$ or (Positron$ and emission$) or (Positron$ and tomography$)).tw,kf,ot.\n10\t(pet$ and (deoxy$ or fluor$ or 18fluor$ or fdg$ or 18fdg$ or fludeoxy$)).tw,kf,ot.\n11\texp Tomography, Emission-Computed/\n12\t(pet$ or petscan$).tw,kf,ot.\n13\t(tomograph$ or tomographs$ or tomographic$ or tomography$ or tomographies$).tw,kf,ot.\n14\temission$.tw,kf,ot.\n15\t13 and 14\n16\t8 or 9 or 10 or 11 or 12 or 15\n17\t7 and 16\n18\trandomized controlled trial.pt.\n19\tcontrolled clinical trial.pt.\n20\trandomi?ed.ab.\n21\tplacebo.ab.\n22\tclinical trials as topic.sh.\n23\trandomly.ab.\n24\ttrial.ti.\n25\tor/18-24\n26\thumans.sh.\n27\t25 and 26\n28\t17 and 27",
"notes": "MEDLINE (Ovid) (1990 to 22.09.2014) (for search strategy see Appendix 2).",
"start_date": "1989-12-31",
"end_date": "2014-09-21",
"annotator_id": 1
},
{
"id": 34,
"document_id": 13,
"query": "1. exp angiotensin-converting-enzyme-inhibitors/ or (alacepril or benazepril* or captopril or ceranapril or cilazapril*or delapril or enalapril* or fosinopril* or imidapril or libenzapril or quinaprilat or ramipril* or rentiapril or saralasin or spirapril or temocapril hydrochloride or teprotide or trandolapril or zofenopril or cozaar or valsartan or diovan or telmisartan or micardis or candesartan or tasosartan or verdia or eprosartan or irbesartan).mp. or exp ramipril/ or exp receptors, angiotensin/ or exp losartan/\n2. (surg* or perioperative or preoperative or intraoperative or postoperative).mp.\n3. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or clinical trials as topic.sh. or randomly.ab. or trial.ti.) not (animals not (humans and animals)).sh.\n4. 1 and 2 and 3",
"notes": "Ovid MEDLINE (1966 to 8 December 2014)",
"start_date": "1965-12-31",
"end_date": "2014-12-07",
"annotator_id": 1
},
{
"id": 35,
"document_id": 99,
"query": "1. cerebrovascular disorders/ or basal ganglia cerebrovascular disease/ or brain ischemia/ or exp brain infarction/ or hypoxia-ischemia, brain/ or carotid artery diseases/ or carotid artery thrombosis/ or carotid artery, internal, dissection/ or intracranial arterial diseases/ or cerebral arterial diseases/ or infarction, anterior cerebral artery/ or infarction, middle cerebral artery/ or infarction, posterior cerebral artery/ or exp \"intracranial embolism and thrombosis\"/ or exp stroke/ or vertebral artery dissection/\n2. (isch?emi$ adj6 (stroke$ or apoplex$ or cerebral vasc$ or cerebrovasc$ or cva or attack$)).tw.\n3. ((brain or cerebr$ or cerebell$ or vertebrobasil$ or hemispher$ or intracran$ or intracerebral or infratentorial or supratentorial or middle cerebr$ or mca$ or anterior circulation) adj5 (isch?emi$ or infarct$ or thrombo$ or emboli$ or occlus$ or hypoxi$)).tw.\n4. 1 or 2 or 3\n5. (mailuoning or mai-luo-ning or mai luo ning).mp.\n6. (ayapin or scoparone).mp.\n7. 5 or 6\n8. 4 and 7\n9. exp animals/ not humans.sh.\n10. 8 not 9",
"notes": "MEDLINE (Ovid) (1966 to May 2014) (Appendix 2)",
"start_date": "1965-12-31",
"end_date": "2004-05-30",
"annotator_id": 1
},
{
"id": 36,
"document_id": 32,
"query": "#1 Search fitness for work[tw] OR fitness for duty[tw] OR fitness to work[tw] OR occupational fitness[tw] OR fitness for employment[tw] OR job fitness[tw] OR pre-employ*[tw] OR preemploy*[tw] OR pre-place*[tw] OR preplace*[tw] OR ((pre-work[tw] OR prework[tw]) AND screen*[tw]) OR employment screen*[tw] OR employment test*[tw] OR employee screen*[tw] OR employee test*[tw] OR (post-offer[tw] AND (screen*[tw] OR test[tw] OR tests[tw] OR testing[tw]))\n\n#2 Search \"Randomized Controlled Trial\" [Publication Type] OR \"Controlled Clinical Trial\" [Publication Type] OR \"Randomized Controlled Trials as Topic\"[Mesh] OR \"Random Allocation\"[Mesh] OR \"Double-Blind Method\"[Mesh] OR \"Single-Blind Method\"[Mesh]\n\n#3 Search \"Clinical Trial\" [Publication Type] OR \"Clinical Trials as Topic\"[Mesh] OR \"Placebos\"[Mesh] OR \"Research Design\"[Mesh] OR \"Epidemiologic Research Design\"[Mesh] OR (clinical*[tw] AND trial*[tw]) OR ((singl*[tw] OR doubl*[tw] OR trebl*[tw]) AND (blind*[tw] OR mask*[tw])) OR (placebo*[tw] OR random*[tw])\n\n#4 Search \"Comparative Study\" [Publication Type] OR \"Evaluation Studies\" [Publication Type] OR \"Evaluation Studies as Topic\"[Mesh] OR \"Follow-Up Studies\"[Mesh] OR \"Prospective Studies\"[Mesh] OR control*[tw] OR perspectiv*[tw] OR volunteer*[tw]\n\n#5 Search #1 AND (#2 OR #3 OR #4)\n\n#6 Search #5 NOT (\"Animals\"[Mesh] NOT \"Humans\"[Mesh])\n\n#7 Search (#6) AND (\"2008/03/01\"[Date - Create] : \"3000\"[Date - Create])\n\n#8 Search (#6) AND (\"2008/03/01\"[Date - Completion] : \"3000\"[Date - Completion])\n\n#9 Search (#6) AND (\"2008/03/01\"[Date - Entrez] : \"3000\"[Date - Entrez])\n\n#10 Search (#6) AND (\"2008/03/01\"[Date - MeSH] : \"3000\"[Date - MeSH])\n\n#11 Search #7 OR #8 OR #9 OR #10",
"notes": "For the update of this Cochrane review, we searched the following databases: CENTRAL, MEDLINE, EMBASE, Pedro, CINAHL and PsycINFO from 2008 to 31 March 2015 with help from the clinical librarian of the research institute of the primary author (FS) of the review.\n\n(MEDLINE/PUBMED (update 31 March 2015)",
"start_date": "2007-12-31",
"end_date": "2015-03-30",
"annotator_id": 1
},
{
"id": 39,
"document_id": 34,
"query": "1 exp Infant, Newborn/\n\n2 Premature Birth/\n\n3 (neonat$ or neo nat$).ti,ab.\n\n4 (newborn$ or new born$ or newly born$).ti,ab.\n\n5 (preterm or preterms or pre term or pre terms).ti,ab.\n\n6 (preemie$ or premie or premies).ti,ab.\n\n7 (prematur$ adj3 (birth$ or born or deliver$)).ti,ab.\n\n8 (low adj3 (birthweight$ or birth weight$)).ti,ab.\n\n9 (lbw or vlbw or elbw).ti,ab.\n\n10 infan$.ti,ab.\n\n11 (baby or babies).ti,ab.\n\n12 Enterocolitis, Necrotizing/\n\n13 enterocolitis.ti,ab.\n\n14 NEC.ti,ab.\n\n15 or/1-14\n\n16 Glutamine/\n\n17 glutam$.ti,ab.\n\n18 levoglutam$.ti,ab.\n\n19 16 or 17 or 18\n\n20 15 and 19\n\n21 randomized controlled trial.pt.\n\n22 controlled clinical trial.pt.\n\n23 randomized.ab.\n\n24 placebo.ab.\n\n25 drug therapy.fs.\n\n26 randomly.ab.\n\n27 trial.ab.\n\n28 groups.ab.\n\n29 or/21-28\n\n30 exp animals/ not humans.sh.\n\n31 29 not 30\n\n32 15 and 19 and 31\n\n33 limit 32 to ed=20111101-20140911",
"notes": "Cochrane notified me that this was not the most recent version of the review. I clicked the button that took me to the recent version.\n\n--\n\nWe searched: the Cochrane Central Register of Controlled Trials (CENTRAL), EMBASE (OvidSP), Maternity and Infant Care (OvidSP), MEDLINE & MEDLINE in process (OvidSP) and PubMed (until December 2015 updated from previous search in November 2011)\n\n--\n\nThe Cochrane highly sensitive search strategy for identifying randomized trials in MEDLINE (sensitivity-maximizing version) was used to limit retrieval to clinical trials (lines 21-31) (Lefebvre 2011).\n\n--\n\nKey:\n/ = indexing term (MeSH heading)\nexp = exploded MeSH heading\n$ = truncation\n.ti,ab. = terms in either title or abstract fields\nadj3 = terms within three words of each other (any order)\n.pt. = publication type\n.fs. = floating subheading\n.sh.= subject heading\n.ed. = entry date - date added to the database\n",
"start_date": "2011-10-31",
"end_date": "2015-12-30",
"annotator_id": 1
},
{
"id": 40,
"document_id": 34,
"query": "1 exp Infant, Newborn/\n\n2 Premature Birth/\n\n3 (neonat$ or neo nat$).ti,ab.\n\n4 (newborn$ or new born$ or newly born$).ti,ab.\n\n5 (preterm or preterms or pre term or pre terms).ti,ab.\n\n6 (preemie$ or premie or premies).ti,ab.\n\n7 (prematur$ adj3 (birth$ or born or deliver$)).ti,ab.\n\n8 (low adj3 (birthweight$ or birth weight$)).ti,ab.\n\n9 (lbw or vlbw or elbw).ti,ab.\n\n10 infan$.ti,ab.\n\n11 (baby or babies).ti,ab.\n\n12 Enterocolitis, Necrotizing/\n\n13 enterocolitis.ti,ab.\n\n14 NEC.ti,ab.\n\n15 or/1-14\n\n16 Glutamine/\n\n17 glutam$.ti,ab.\n\n18 levoglutam$.ti,ab.\n\n19 16 or 17 or 18\n\n20 15 and 19\n\n21 limit 20 to ed=20111101-20140918",
"notes": "See the previous notes section for details.\n\n--\nMEDLINE In-Process & Other Non-Indexed Citations (OvidSP http://ovidsp.ovid.com/)",
"start_date": "2011-10-31",
"end_date": "2015-12-30",
"annotator_id": 1
},
{
"id": 41,
"document_id": 34,
"query": "Search ((((((((((((((((((((((\"Infant, Newborn\"[Mesh])) OR (\"Premature Birth\"[Mesh])) OR (((neonat*[Title/Abstract]) OR neo nat*[Title/Abstract]) OR neo-nat*[Title/Abstract])) OR (((((newborn*[Title/Abstract]) OR new born*[Title/Abstract]) OR new-born*[Title/Abstract]) OR newly born*[Title/Abstract]) OR newly-born*[Title/Abstract])) OR ((((((preterm[Title/Abstract]) OR preterms[Title/Abstract]) OR pre term[Title/Abstract]) OR pre-term[Title/Abstract]) OR pre terms[Title/Abstract]) OR pre-terms[Title/Abstract])) OR (((preemie*[Title/Abstract]) OR premie[Title/Abstract]) OR premies[Title/Abstract])) OR ((prematur*[Title/Abstract]) AND birth*[Title/Abstract])) OR ((prematur*[Title/Abstract]) AND born[Title/Abstract])) OR ((prematur*[Title/Abstract]) AND deliver*[Title/Abstract])) OR ((low[Title/Abstract]) AND birthweight*[Title/Abstract])) OR ((low[Title/Abstract]) AND birth weight*[Title/Abstract])) OR ((low[Title/Abstract]) AND birth-weight*[Title/Abstract])) OR (((lbw[Title/Abstract]) OR vlbw[Title/Abstract]) OR elbw[Title/Abstract])) OR (infan*[Title/Abstract])) OR ((baby[Title/Abstract]) OR babies[Title/Abstract])) OR (\"Enterocolitis, Necrotizing\"[Mesh:noexp]) OR (enterocolitis[Title/Abstract]) OR (NEC[Title/Abstract]))) AND (((levoglutam*[Title/Abstract]) OR glutam*[Title/Abstract]) OR \"Glutamine\"[Mesh:noexp]))) AND (((((((((((randomized controlled trial[Publication Type])) OR (controlled clinical trial[Publication Type])) OR (randomized[Title/Abstract])) OR (placebo[Title/Abstract])) OR (drug therapy[MeSH Subheading])) OR (randomly[Title/Abstract])) OR (trial[Title/Abstract])) OR (groups[Title/Abstract]))) NOT (animals[mh] NOT humans[mh])))) AND (\"2011/11/01\"[Date - Entrez] : \"3000\"[Date - Entrez])",
"notes": "See the previous notes section for details.\n\nThis is another document that seems to search both \"PubMed\" and \"MEDLINE\"\n--\nhttp://www.ncbi.nlm.nih.gov/pubmed/\n\nThe Cochrane highly sensitive search strategy for identifying randomized trials in PubMed (sensitivity-maximizing version) was used to limit retrieval to clinical trials (Lefebvre 2011).\n\n--\n[Mesh] = exploded Medical Subject heading (MeSH)\n[mh] = exploded MeSH\n[Mesh:noexp] = MeSH not exploded\n* = truncation\n[Title/Abstract] = terms in either title or abstract fields\n[Date - Entrez] = entry date - date added to the database",
"start_date": "2011-10-31",
"end_date": "2015-12-30",
"annotator_id": 1
},
{
"id": 42,
"document_id": 8,
"query": "randomized controlled trial.pt.\n\ncontrolled clinical trial.pt.\n\npragmatic clinical trial.pt.\n\nrandomized.ab.\n\nplacebo.ab,ti.\n\ndrug therapy.fs.\n\nrandomly.ab,ti.\n\ntrial.ab,ti.\n\ngroups.ab,ti.\n\nor/1-9\n\n(animals not (humans and animals)).sh.\n\n10 not 11\n\nexp Constriction, Pathologic/\n\nlimit 13 to yr=\"1976 - 1982\"\n\nexp Lumbar Vertebrae/\n\nlimit 15 to yr=\"1966 - 1982\"\n\nexp Spinal Canal/\n\nlimit 17 to yr=\"1966 - 1982\"\n\nexp Spinal Diseases/\n\nlimit 19 to yr=\"1966 - 1982\"\n\nexp Spinal Stenosis/\n\nspinal stenosis.mp.\n\n(lumbar adj5 stenosis).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\n(spin* adj5 stenosis).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\nneurogenic claudication.mp.\n\nexp Spinal Osteophytosis/\n\nexp Spondylosis/\n\n(lumb* adj5 spondyl*).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\nexp Cauda Equina/\n\nlumbar radicular pain.mp.\n\n28 or 26 or 29 or 22 or 27 or 18 or 21 or 16 or 23 or 25 or 14 or 20 or 24 or 30\n\n12 and 31",
"notes": "MEDLINE In-Process & Other Non-Indexed Citations",
"start_date": "1945-12-31",
"end_date": "2015-02-10",
"annotator_id": 1
},
{
"id": 43,
"document_id": 14,
"query": "1. exp Bronchiectasis/\n\n2. bronchiect$.mp.\n\n3. bronchoect$.mp.\n\n4. kartagener$.mp.\n\n5. (ciliary adj3 dyskinesia).mp.\n\n6. (bronchial$ adj3 dilat$).mp.\n\n7. or/1-6",
"notes": "Bronchiectasis search\n\n--\n\nThe previously published version included searches up to October 2009. The search period for this update is October 2009 through September 2015.\n\nMEDLINE searches started from 1966.\n\n--\n\nFor MEDLINE, OLDMEDLINE and EMBASE, we combined the topic search strategy with the RCT search filter as outlined in the Airways Group module.",
"start_date": "1965-12-31",
"end_date": "2009-10-30",
"annotator_id": 1
},
{
"id": 44,
"document_id": 14,
"query": "1. exp \"clinical trial [publication type]\"/\n\n2. (randomized or randomised).ab,ti.\n\n3. placebo.ab,ti.\n\n4. dt.fs.\n\n5. randomly.ab,ti.\n\n6. trial.ab,ti.\n\n7. groups.ab,ti.\n\n8. or/1-7\n\n9. Animals/\n\n10. Humans/\n\n11. 9 not (9 and 10)\n\n12. 8 not 11",
"notes": "See previous query notes for more details.\n\n--\n\nFilter to identify RCTs",
"start_date": "1965-12-31",
"end_date": "2009-10-30",
"annotator_id": 1
},
{
"id": 45,
"document_id": 113,
"query": "1. exp Dementia/\n\n2. Dementia, Multi-Infarct/\n\n3. Dementia, Vascular/\n\n4. Alzheimer Disease/\n\n5. Lewy Body Disease/\n\n6. Delirium/\n\n7. Huntington Disease/\n\n8. \"Pick Disease of the Brain\"/\n\n9. Kluver-Bucy Syndrome/\n\n10. Wernicke Encephalopathy/\n\n11. Creutzfeldt-Jakob Syndrome/\n\n12. Delirium, Dementia, Amnestic, Cognitive Disorders/\n\n13. dement*.mp.\n\n14. Alzheimer*.mp.\n\n15. (lewy* adj2 bod*).mp.\n\n16. deliri*.mp.\n\n17. ((cognit* or memory* or mental*) adj3 (declin* or impair* or los* or deteriorat*)).mp.\n\n18. (chronic adj2 cerebrovascular).mp.\n\n19. (\"organic brain disease\" or \"organic brain syndrome\").mp.\n\n20. \"supranuclear palsy\".mp.\n\n21. (\"normal pressure hydrocephalus\" and \"shunt*\").mp.\n\n22. \"benign senescent forgetfulness\".mp.\n\n23. (cerebr* adj2 deteriorat*).mp.\n\n24. (cerebral* adj2 insufficient*).mp.\n\n25. (confusion* or confused).mp.\n\n26. (pick* adj2 disease).mp.\n\n27. (creutzfeldt or jcd or cjd).mp.\n\n28. huntington*.mp.\n\n29. binswanger*.mp.\n\n30. korsako*.mp.\n\n31. (mci or \"subjective memory complaint\" or \"episodic memory\").mp.\n\n32. (\"incipient dementia\" or \"pre-clinical ad\" or \"pre-clinical alzheimer*\").mp.\n\n33. 1 or 2 or 3 or 4 or 5 or 6 or 7 or 8 or 9 or 10 or 11 or 12 or 13 or 14 or 15 or 16 or 17 or 18 or 19 or 20 or 21 or 22 or 23 or 24 or 25 or 26 or 27 or 28 or 29 or 30 or 31 or 32\n\n34. Patient Care Management/\n\n35. \"Case manag*\".ti,ab.\n\n36. Case Management/\n\n37. Managed Care Programs/\n\n38. \"Managed care\".ti,ab.\n\n39. \"Care pathway\".ti,ab.\n\n40. Outreach.ti,ab.\n\n41. \"Crisis resolution\".ti,ab.\n\n42. Disease Management/\n\n43. \"Disease management\".ti,ab.\n\n44. Intermediate Care Facilities/\n\n45. Care coordination.ti,ab.\n\n46. Community mental health.ti,ab.\n\n47. Community Mental Health Services/\n\n48. Community Mental Health Centers/\n\n49. Home Nursing/\n\n50. Health Services for the Aged/\n\n51. \"Geriatric health service*\".ti,ab.\n\n52. Home Care Services/\n\n53. Patient Care Team/\n\n54. Admiral nursing.ti,ab.\n\n55. (carer* or caregiver*).mp. adj2 support.ti,ab.\n\n56. Family-based therapy.ti,ab.\n\n57. or/34-56\n\n58. randomized controlled trial.pt.\n\n59. controlled clinical trial.pt.\n\n60. (Randomized or randomised).ti,ab.\n\n61. Randomly.ti,ab.\n\n62. Comparative Study/\n\n63. \"Interrupted time series\".ti,ab.\n\n64. \"ITS design\".ti,ab.\n\n65. Intervention*.ti,ab.\n\n66. Evaluat*.ti,ab.\n\n67. Placebo*.ti,ab.\n\n68. Groups.ti,ab.\n\n69. or/58-68\n\n70. 69 and 57 and 33\n\n71. (2010* or 2011* or 2012*).ed.\n\n72. 70 and 71",
"notes": "MEDLINE In-process and other non-indexed citations and MEDLINE 1950-present (Ovid SP)",
"start_date": "1949-12-31",
"end_date": "2017-02-27",
"annotator_id": 1
},
{
"id": 46,
"document_id": 92,
"query": "1. exp Tracheostomy/ or tracheo?tom*.af. \n2. Respiration, Artificial/ or Laryngeal Masks/ or Positive-Pressure Respiration/ or Pulmonary Ventilation/ or Ventilators, Mechanical/ or High-Frequency Ventilation/ or ((early or precocious or premature) and (late or tardy)).ti,ab. or artificial respiration*.ti,ab. or (ventilat* adj3 (mechanical or high?frequency or oscillation or positive pressure or jet or weaning or pulmonary)).mp. or (respirat* or ventilator*).ti,ab. or chest tube*.ti,ab. or ((airway* or laryngeal) adj3 mask*).mp.\n3. (randomized controlled trial.pt. or controlled clinical trial.pt.or randomized.ab. or placebo.ab. or clinical trials as topic.sh. or randomly.ab. or trial.ti.) not (animals.sh not (humans.sh and animals.sh))\n4. 1 and 2 and 3",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2013-08-30",
"annotator_id": 1
},
{
"id": 47,
"document_id": 33,
"query": "1 exp Ovarian Neoplasms/\n2 (ovar* adj5 (cancer* or neoplasm* or malignan* or tumor* or tumour* or carcinom*)).mp.\n3 1 or 2˜\n4 exp Infusions, Parenteral/\n5 Injections, Intraperitoneal/\n6 intraperitoneal.mp.\n7 intra-peritoneal.mp.\n8 peritone*.mp.\n9 regional.mp.\n10 parenteral.mp.\n11 4 or 5 or 6 or 7 or 8 or 9 or 10\n12 drug therapy.fs.\n13 exp Antineoplastic Agents/\n14 exp Antineoplastic Combined Chemotherapy Protocols/\n15 exp Chemotherapy, Adjuvant/\n16 chemotherap*.mp.\n17 cisplatin.mp.\n18 carboplatin.mp.\n19 cyclophosphamide.mp.\n20 etoposide.mp.\n21 paclitaxel.mp.\n22 doxorubicin.mp.\n23 12 or 13 or 14 or 15 or 16 or 17 or 18 or 19 or 20 or 21 or 22\n24 3 and 11 and 23\n25 randomized controlled trial.pt.\n26 controlled clinical trial.pt.\n27 randomized.ab.\n28 placebo.ab.\n29 drug therapy.fs.\n30 randomly.ab.\n31 trial.ab.\n32 25 or 26 or 27 or 28 or 29 or 30 or 31\n33 24 and 32",
"notes": "",
"start_date": "1950-12-31",
"end_date": "2015-08-30",
"annotator_id": 1
},
{
"id": 48,
"document_id": 50,
"query": "1. Lewy Bodies/\n\n2. dement*.ti,ab.\n\n3. (LDB or DLB or LBD).ti,ab.\n\n4. (lewy* adj2 bod*).ti,ab.\n\n5. Lewy Body Disease/\n\n6. or/1-5\n\n7. DAT scan*.ti,ab.\n\n8. Dopamine Plasma Membrane Transport Proteins/\n\n9. \"dopamine transporter\".ti,ab.\n\n10. Dopaminergic Neurons/\n\n11. FP-CIT.ti,ab.\n\n12. DaTSCAN.ti,ab.\n\n13. (\"123I-β-CIT\" or \"[123I]β-CIT\" or \"[123I]beta-CIT\").ti,ab.\n\n14. \"123I-FP-CIT\".ti,ab.\n\n15. SPECT.ti,ab.\n\n16. \"[99mTc]TRODAT-1\".ti,ab.\n\n17. \"[123I]PE2I\".ti,ab.\n\n18. \"[123I]altropane\".ti,ab.\n\n19. \"[11C]cocaine\".ti,ab.\n\n20. \"[3H]WIN\".ti,ab.\n\n21. \"[11C]altropane\".ti,ab.\n\n22. (\"[11C]/[18F]beta-CFT\" or \"[11C]/[18F]β-CFT\").ti,ab.\n\n23. \"[11C]FE-CIT\".ti,ab.\n\n24. \"[11C]dMP\".ti,ab.\n\n25. Tomography, Emission-Computed, Single-Photon/\n\n26. SPET.ti,ab.\n\n27. \"single photon emission tomography\".ti,ab.\n\n28. \"single photon emission computed tomography\".ti,ab.\n\n29. or/7-28\n\n30. 6 and 29",
"notes": "We searched MEDLINE (1946 to February 2013)\n\nMEDLINE In-process and other non-indexed citations and MEDLINE 1946 to present (OvidSP)\n\n--\n\n1586 hits retrieved",
"start_date": "1945-12-31",
"end_date": "2013-02-27",
"annotator_id": 1
},
{
"id": 49,
"document_id": 70,
"query": "1 randomized controlled trial.pt.\n2 controlled clinical trial.pt.\n3 randomized controlled trials.sh.\n4 random allocation.sh.\n5 double blind method.sh.\n6 single blind method.sh.\n7 or/1-6\n8 (animals not human).sh.\n9 7 not 8\n10 clinical trial.pt.\n11 exp Clinical Trials/\n12 (clin$ adj25 trial$).ab,ti.\n13 ((singl$ or doubl$ or trebl$) adj25 (blind$ or mask$)).ab,ti.\n14 placebo$.sh.\n15 placebo$.ab,ti.\n16 random$.ab,ti.\n17 research design.sh.\n18 or/10-17\n19 18 not 8\n20 19 not 9\n21 comparative study.sh.\n22 exp evaluation studies/\n23 follow up studies.sh.\n24 prospective studies.sh.\n25 (control$ or prospectiv$ or volunteer$).ab,ti.\n26 or/21-25\n27 26 not 8\n28 27 not (9 or 20)\n29 9 or 20 or 28\n30 exp amputation/\n31 amput$.mp.\n32 exp amputees/\n33 30 or 31 or 32\n34 exp artificial limbs/\n35 exp artificial leg/\n36 prosthe$.mp.\n37 34 or 35 or 36\n38 exp rehabilitation/ or exp rehabilitation nursing/ or exp rehabilitation centers/ or exp rehabilitation, vocational/\n39 exp exercise therapy/ or exp exercise/ or exp exercise test/ or exp exercise movement techniques/ or exp exercise tolerance/\n40 exp \"physical education and training\"/\n41 exp physical therapy techniques/\n42 exp physical fitness/\n43 exp movement/ or exp exercise movement techniques/\n44 exp gait/\n45 exp locomotion/\n46 exp walking/\n47 exp musculoskeletal equilibrium/\n48 exp contracture/ or exp posture/ or exp movement/\n49 exp exertion/ or exp muscle, skeletal/ or exp muscle contraction/ or exp muscles/ or exp leg/ or exp isometric contraction/\n50 exp weight bearing/\n51 exp weight perception/\n52 exp biomechanics/\n53 exp energy metabolism/ or exp energy intake/\n54 exp efficiency/\n55 exp kinetics/\n56 or exp muscles/ or exp tarsal joints/ or exp ankle/ or exp electromyography/ or exp kinesiology, applied/ or exp foot/\n57 (patient adj satisfaction).mp.\n58 exp physician's practice patterns/ or exp practice guidelines/\n59 exp clinical protocols/\n60 exp treatment outcome/\n61 exp aptitude/\n62 exp feedback/\n63 or/38-62\n64 29 and 33 and 37 and 63",
"notes": "This one is formatted really weirdly. They break the search strategy into 5 rows in a table but I can't see why they would do this. I just combined them all into the same query above.",
"start_date": "1965-12-31",
"end_date": "2005-12-30",
"annotator_id": 1
},
{
"id": 50,
"document_id": 17,
"query": "1. randomized controlled trial.pt.\n\n2. controlled clinical trial.pt.\n\n3. randomized.ab.\n\n4. placebo.ab.\n\n5. drug therapy.fs.\n\n6. randomly.ab.\n\n7. trial.ab.\n\n8. groups.ab.\n\n9. or/1-8\n\n10. (animals not (humans and animals)).sh.\n\n11. 9 not 10\n\n12. esophag$.mp.\n\n13. oesophag$.mp.\n\n14. 12 or 13\n\n15. Neoplasms/\n\n16. cancer$.mp.\n\n17. exp Adenocarcinoma/\n\n18. carcino$.mp.\n\n19. exp Carcinoma, Squamous Cell/\n\n20. or/15-19\n\n21. 14 and 20\n\n22. exp Medicine, Chinese Traditional/\n\n23. exp Drugs, Chinese Herbal/ or exp Plant Extracts/\n\n24. exp Herbal Medicine/ or exp Plants, Medicinal/\n\n25. exp Complementary Therapies/\n\n26. alternative medicine.ab,ti.\n\n27. artemisinin.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n\n28. milkvetch root.mp.\n\n29. wolfberry fruit.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n\n30. yam rhizome.mp.\n\n31. indian bread.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n\n32. hedyotis.mp. [mp=title, original title, abstract, name of substance word, subject heading word]\n\n33. or/22-32\n\n34. 11 and 21 and 33",
"notes": "MEDLINE (1950 to September 2015; Appendix 2).",
"start_date": "1949-12-31",
"end_date": "2015-09-29",
"annotator_id": 1
},
{
"id": 52,
"document_id": 64,
"query": "1 oscillococcinum.tw,nm.\n2 \"anas barbariae hepatis et cordis extractum\".tw,nm.\n3 Homeopathy/\n4 homeopath*.tw.\n5 homoeopath*.tw.\n6 oscillo*.tw,nm.\n7 or/3-6\n8 Influenza, Human/\n9 exp Influenzavirus A/\n10 exp Influenzavirus B/\n11 influenza*.tw.\n12 flu.tw.\n13 Cough/\n14 cough*.tw.\n15 sore throat*.tw.\n16 exp Viruses/\n17 virus*.tw.\n18 Respiratory Tract Infections/\n19 Respiratory System/\n20 exp Infection/\n21 infection*.tw.\n22 (respiratory adj3 (infection* or tract or acute or symptom*)).tw.\n23 exp Fever/\n24 fever*.tw.\n25 runny nose*.tw.\n26 Headache/\n27 headache*.tw.\n28 (pain adj2 (limb* or joint*)).tw.\n29 or/8-28\n30 7 and 29\n31 1 or 2 or 30",
"notes": "More recent searches (MEDLINE (Ovid))\n\n--\nMEDLINE (July 2012 to August week 4, 2014)",
"start_date": "2012-06-30",
"end_date": "2014-08-30",
"annotator_id": 1
},
{
"id": 55,
"document_id": 105,
"query": "1. Imidazoles/ or Benzyl Compounds/ or hypnomidate.mp. or amidate.af. or exp Etomidate/ or et?omidat$.af. or (r?26?490 or R?16659).mp. or radenar?on.mp.\n2. ((Intubation, Intratracheal/ or Intubation/ or intubat$.ti,ab. or anesthesia/ or anesthesia, intravenous/ or an?esthesia.ti,ab. or anesthesia, general/ or anesthetics/ or an?esthetic$.ti,ab. or (airway adj5 protect$).mp. or Laryngoscopy/ or laryngoscop$.mp. or sedat$.mp. or Hypnotics.mp.) and Sedatives/) or Deep Sedation/ or single bolus dose.mp. or induction.mp. or Conscious Sedation/ or intensive care units/ or burn units/ or coronary care units/ or recovery room/ or respiratory care units/ or Intensive Care/ or Critical Care/ or Emergencies/ or emergenc$.mp. or Emergency Treatment/ or ambulanc$.mp. or emergency service, hospital/ or trauma centers/ or Emergency medical services/ or trauma.ti,ab. or Critical Illness/ or ((intensive or critical$ or serious$) adj5 (ill$ or care or sick$)).mp. or ICU.mp. or shock$.ti,ab.\n3. 1 and 2\n4. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or drug therapy.fs. or randomly.ab. or trial.ab. or groups.ab.) not (animals not (humans and animals)).sh.\n5. 3 and 4",
"notes": "MEDLINE via OvidSP (1950 to 8 February 2013)",
"start_date": "1949-12-31",
"end_date": "2013-02-07",
"annotator_id": 1
},
{
"id": 51,
"document_id": 64,
"query": "#1. exp HOMEOPATHY/\n#2. homeopath$.mp.\n#3. homoeopath$.mp.\n#4. oscillococcinum.mp.\n#5. or/1-4\n#6. exp INFLUENZA/\n#7. influenza.mp.\n#8. flu.mp.\n#9. exp COUGH/\n#10. cough$.mp.\n#11. exp VIRUSES/\n#12. virus$.mp.\n#13. exp Respiratory Tract Infections/\n#14. exp Respiratory System/\n#15. respiratory tract$.mp.\n#16. exp INFECTION/\n# 17. infection$.mp.\n# 18. exp FEVER/\n# 19. fever$.mp.\n# 20. or/6-19\n# 21. 5 and 20\n# 22. limit 21 to yr=2003-2006",
"notes": "MEDLINE (Ovid)\n--\n\nThese queries come from the first search done.",
"start_date": "1965-12-31",
"end_date": "2003-06-29",
"annotator_id": 1
},
{
"id": 53,
"document_id": 64,
"query": "1 oscillo*.tw.\n2 \"anas barbariae\".tw.\n3 (homeopath* or homoeopath*).tw.\n4 or/1-3\n5 influenza.tw.\n6 flu.tw.\n7 influenzavirus.tw.\n8 cough*.tw.\n9 sore throat*.tw.\n10 virus*.tw.\n11 respiratory tract infection*.tw.\n12 respiratory infection*.tw.\n13 fever*.tw.\n14 runny nose*.tw.\n15 headache*.tw.\n16 (pain adj2 (limb* or joint*)).tw.\n17 infection*.tw.\n18 or/5-17\n19 4 and 18",
"notes": "MEDLINE In-Process & Other Non-Indexed Citations (Ovid)\n\n--\nMEDLINE In-Process & Other Non-Indexed Citations (4 September 2014)",
"start_date": "2012-06-30",
"end_date": "2014-08-30",
"annotator_id": 1
},
{
"id": 54,
"document_id": 65,
"query": "#7\tSearch #3 AND #4 AND #5 Limits: Publication Date from 1996/01/01 to 2008/08/29\n\n#6\tSearch #3 AND #4 AND #5 Limits: Publication Date from 1996/01/01 to 2008\n\n#5\tSearch STAVUDINE OR D4T OR ZERIT OR STAVIR\n\n#4\tSearch randomized controlled trial [pt] OR controlled clinical trial [pt] OR randomized controlled trials [mh] OR random allocation [mh] OR double-blind method [mh] OR single-blind method [mh] OR clinical trial [pt] OR clinical trials [mh] OR (\"clinical trial\" [tw]) OR ((singl* [tw] OR doubl* [tw] OR trebl* [tw] OR tripl* [tw]) AND (mask* [tw] OR blind* [tw])) OR ( placebos [mh] OR placebo* [tw] OR random* [tw] OR research design [mh:noexp] OR comparative study [mh] OR evaluation studies [mh] OR follow-up studies [mh] OR prospective studies [mh] OR control* [tw] OR prospectiv* [tw] OR volunteer* [tw]) NOT (animals [mh] NOT human [mh])\n\n#3\tSearch #1 OR #2\n\n#2\tSearch Antiretroviral Therapy, Highly Active[MeSH] OR Anti-Retroviral Agents[MeSH] OR Antiviral Agents[MeSH:NoExp] OR ((anti) AND (hiv[tw])) OR antiretroviral*[tw] OR ((anti) AND (retroviral*[tw])) OR HAART[tw] OR ((anti) AND (acquired immunodeficiency[tw])) OR ((anti) AND (acquired immunedeficiency[tw])) OR ((anti) AND (acquired immuno-deficiency[tw])) OR ((anti) AND (acquired immune-deficiency[tw])) OR ((anti) AND (acquired immun*) AND (deficiency[tw]))\n\n#1\tSearch HIV Infections[MeSH] OR HIV[MeSH] OR hiv[tw] OR hiv-1*[tw] OR hiv-2*[tw] OR hiv1[tw] OR hiv2[tw] OR hiv infect*[tw] OR human immunodeficiency virus[tw] OR human immunedeficiency virus[tw] OR human immuno-deficiency virus[tw] OR human immune-deficiency virus[tw] OR ((human immun*) AND (deficiency virus[tw])) OR acquired immunodeficiency syndrome[tw] OR acquired immunedeficiency syndrome[tw] OR acquired immuno-deficiency syndrome[tw] OR acquired immune-deficiency syndrome[tw] OR ((acquired immun*) AND (deficiency syndrome[tw])) OR \"sexually transmitted diseases, viral\"[MH]",
"notes": "Types of studies: Randomised, controlled blinded and non-blinded clinical trials.\n\nMy feeling is that each of the #number search should be treated as a different query",
"start_date": "1995-12-31",
"end_date": "2008-08-28",
"annotator_id": 3
},
{
"id": 57,
"document_id": 97,
"query": "((randomized controlled trial [pt]) OR (controlled clinical trial [pt]) OR (clinical trial [pt]) OR (random allocation [mh]) OR (randomized controlled trials [mh])) AND ((herpes OR herpetic OR simplex) AND (cornea OR corneal OR keratitis OR ocular))",
"notes": "PubMed (January 1946 to 31 December 2014)",
"start_date": "1945-12-31",
"end_date": "2014-12-30",
"annotator_id": 1
},
{
"id": 58,
"document_id": 65,
"query": "#1\tSearch (HIV Infections[MeSH] OR HIV[MeSH] OR hiv[tiab] OR hiv-1*[tiab] OR hiv-2*[tiab] OR hiv1[tiab] OR hiv2[tiab] OR hiv infect*[tiab] OR human immunodeficiency virus[tiab] OR human immunedeficiency virus[tiab] OR human immuno-deficiency virus[tiab] OR human immune-deficiency virus[tiab] OR ((human immun*[tiab]) AND (deficiency virus[tiab])) OR acquired immunodeficiency syndrome[tiab] OR acquired immunedeficiency syndrome[tiab] OR acquired immuno-deficiency syndrome[tiab] OR acquired immune-deficiency syndrome[tiab] OR ((acquired immun*[tiab]) AND (deficiency syndrome[tiab])) OR \"sexually transmitted diseases, Viral\"[MeSH:NoExp])\n\n#2\tSearch (antiretroviral therapy, highly active[MeSH] OR anti-retroviral agents[MeSH] OR antiviral agents[MeSH:NoExp] OR ((anti[tiab]) AND (hiv[tiab])) OR antiretroviral*[tiab] OR ((anti[tiab]) AND (retroviral*[tiab])) OR HAART[tiab] OR ((anti[tiab]) AND (acquired immunodeficiency[tiab])) OR ((anti[tiab]) AND (acquired immuno-deficiency[tiab])) OR ((anti[tiab]) AND (acquired immune-deficiency[tiab])) OR ((anti[tiab]) AND (acquired immun*[tiab]) AND (deficiency[tiab])))\n\n#3\tSearch (#1 AND #2)\n\n#4\tSearch (randomized controlled trial [pt] OR controlled clinical trial [pt] OR randomized [tiab] OR placebo [tiab] OR drug therapy [sh] OR randomly [tiab] OR trial [tiab] OR groups [tiab]) NOT (animals [mh] NOT humans [mh]))\n\n#5\tSearch (stavudine OR d4T OR zerit OR stavir)\n\n#6\tSearch (#3 AND #4 AND #5)\n\n#7\tSearch ((#3 AND #4 AND #5)) AND (\"2009/06/01\"[Date - Publication] : \"2012/11\"[Date - Publication])",
"notes": "Types of studies: Randomised, controlled blinded and non-blinded clinical trials.\n\nMy feeling is that each of the #number search should be treated as a different query",
"start_date": "2009-05-31",
"end_date": "2012-11-29",
"annotator_id": 3
},
{
"id": 61,
"document_id": 86,
"query": "1 exp Vitamin B Complex/\n2 vitamin b.tw.\n3 folic acid.tw.\n4 folate$.tw.\n5 ((homocystein$ or homocystin$) adj3 (low$ or reduc$)).tw.\n6 pyridoxin$.tw.\n7 cobalamin$.tw.\n8 cyanocobalamin$.tw.\n9 pyridoxol$.tw.\n10 Vitamins/\n11 or/1-10\n12 Cardiovascular Diseases/\n13 exp Myocardial Ischemia/\n14 exp Brain Ischemia/\n15 Cerebrovascular Disorders/\n16 (coronary adj3 disease$).tw.\n17 angina.tw.\n18 myocardial infarct$.tw.\n19 heart infarct$.tw.\n20 heart attack$.tw.\n21 (stroke or strokes).tw.\n22 (cerebr$ adj3 (accident$ or infarct$)).tw.\n23 (brain adj3 infarct$).tw.\n24 apoplexy.tw.\n25 (cardiovascular adj2 (disease$ or event$)).tw.\n26 Hyperhomocysteinemia/\n27 hyperhomocyst?in?emi$.tw.\n28 or/12-27\n29 11 and 28\n30 randomized controlled trial.pt.\n31 controlled clinical trial.pt.\n32 Randomized controlled trials/\n33 random allocation/\n34 double blind method/\n35 single-blind method/\n36 or/30-35\n37 exp animal/ not humans/\n38 36 not 37\n39 clinical trial.pt.\n40 exp Clinical Trials as Topic/\n41 (clin$ adj25 trial$).ti,ab.\n42 ((singl$ or doubl$ or trebl$ or tripl$) adj (blind$ or mask$)).ti,ab.\n43 placebos/\n44 placebo$.ti,ab.\n45 random$.ti,ab.\n46 research design/\n47 or/39-46\n48 47 not 37\n49 38 or 48\n50 49 and 29",
"notes": "",
"start_date": "2004-12-31",
"end_date": "2008-12-30",
"annotator_id": 1
},
{
"id": 63,
"document_id": 86,
"query": "1 exp Vitamin B Complex/\n2 vitamin b.tw.\n3 folic acid.tw.\n4 folate$.tw.\n5 ((homocystein$ or homocystin$) adj3 (low$ or reduc$)).tw.\n6 pyridoxin$.tw.\n7 cobalamin$.tw.\n8 cyanocobalamin$.tw.\n9 pyridoxol$.tw.\n10 Vitamins/\n11 or/1-10\n12 Cardiovascular Diseases/\n13 exp Myocardial Ischemia/\n14 exp Brain Ischemia/\n15 Cerebrovascular Disorders/\n16 (coronary adj3 disease$).tw.\n17 angina.tw.\n18 myocardial infarct$.tw.\n19 heart infarct$.tw.\n20 heart attack$.tw.\n21 (stroke or strokes).tw.\n22 (cerebr$ adj3 (accident$ or infarct$)).tw.\n23 (brain adj3 infarct$).tw.\n24 apoplexy.tw.\n25 (cardiovascular adj2 (disease$ or event$)).tw.\n26 Hyperhomocysteinemia/\n27 hyperhomocyst?in?emi$.tw.\n28 or/12-27\n29 11 and 28\n30 randomized controlled trial.pt.\n31 controlled clinical trial.pt.\n32 randomized.ab.\n33 placebo.ab.\n34 drug therapy.fs.\n35 randomly.ab.\n36 trial.ab.\n37 groups.ab.\n38 30 or 31 or 32 or 33 or 34 or 35 or 36 or 37\n39 exp animals/ not humans.sh. (3663238)\n40 38 not 39\n41 29 and 40\n42 (2012* or 2013* or 2014*).ed.\n43 41 and 42",
"notes": "",
"start_date": "2004-12-31",
"end_date": "2014-02-11",
"annotator_id": 1
},
{
"id": 69,
"document_id": 59,
"query": "neuroblastoma OR neuroblastomas OR neuroblast* OR ganglioneuroblastoma OR ganglioneuroblastomas OR ganglioneuroblast* OR neuroepithelioma OR neuroepitheliomas OR neuroepitheliom* OR esthesioneuroblastoma OR esthesioneuroblastomas OR esthesioneuroblastom* OR schwannian",
"notes": "For Neuroblastoma the following MeSH headings and text words were used",
"start_date": "1945-12-31",
"end_date": "2014-09-30",
"annotator_id": 1
},
{
"id": 87,
"document_id": 112,
"query": "1 exp Orthognathic Surgery/ (87)\n2 exp Orthognathic Surgical Procedures/ (1052)\n3 exp Osteotomy, Le Fort/ (1454)\n4 (orthognathic adj5 surg*).tw. (2516)\n5 (maxillary osteotom* or Le Fort osteotom* or (mandibular adj5 osteotom*) or vertical ramus osteotom* or genioplast*).tw. (2160)\n6 or/1-5 (5695)\n7 exp Antibiotic Prophylaxis/ (8683)\n8 exp Anti-Bacterial Agents/ (527266)\n9 (antibiotic* or cephalosporin* or cefazolin or cefuroxime or amox?cillin* or clindam?cin or penicillin* or levofloxacin).tw. (260904)\n10 or/7-9 (629847)\n11 6 and 10 (65)\n12 randomized controlled trial.pt. (374960)\n13 controlled clinical trial.pt. (88427)\n14 randomi?ed.ab. (327203)\n15 placebo.ab. (146420)\n16 clinical trials as topic.sh. (170264)\n17 randomly.ab. (193925)\n18 trial.ti. (117951)\n19 or/12-18 (878362)\n20 exp animals/ not humans.sh. (3947165)\n21 19 not 20 (807587)\n22 11 and 21 (13)",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2014-05-30",
"annotator_id": 1
},
{
"id": 56,
"document_id": 65,
"query": "#1\tSearch HIV Infections[MeSH] OR HIV[MeSH] OR hiv[tw] OR hiv-1*[tw] OR hiv-2*[tw] OR hiv1[tw] OR hiv2[tw] OR hiv infect*[tw] OR human immunodeficiency virus[tw] OR human immunedeficiency virus[tw] OR human immuno-deficiency virus[tw] OR human immune-deficiency virus[tw] OR ((human immun*) AND (deficiency virus[tw])) OR acquired immunodeficiency syndrome[tw] OR acquired immunedeficiency syndrome[tw] OR acquired immuno-deficiency syndrome[tw] OR acquired immune-deficiency syndrome[tw] OR ((acquired immun*) AND (deficiency syndrome[tw])) OR \"sexually transmitted diseases, viral\"[MH]\n\n#2\tSearch Antiretroviral Therapy, Highly Active[MeSH] OR Anti-Retroviral Agents[MeSH] OR Antiviral Agents[MeSH:NoExp] OR ((anti) AND (hiv[tw])) OR antiretroviral*[tw] OR ((anti) AND (retroviral*[tw])) OR HAART[tw] OR ((anti) AND (acquired immunodeficiency[tw])) OR ((anti) AND (acquired immunedeficiency[tw])) OR ((anti) AND (acquired immuno-deficiency[tw])) OR ((anti) AND (acquired immune-deficiency[tw])) OR ((anti) AND (acquired immun*) AND (deficiency[tw]))\n\n#3\tSearch #1 OR #2\n\n#4\tSearch randomized controlled trial [pt] OR controlled clinical trial [pt] OR randomized controlled trials [mh] OR random allocation [mh] OR double-blind method [mh] OR single-blind method [mh] OR clinical trial [pt] OR clinical trials [mh] OR (\"clinical trial\" [tw]) OR ((singl* [tw] OR doubl* [tw] OR trebl* [tw] OR tripl* [tw]) AND (mask* [tw] OR blind* [tw])) OR ( placebos [mh] OR placebo* [tw] OR random* [tw] OR research design [mh:noexp] OR comparative study [mh] OR evaluation studies [mh] OR follow-up studies [mh] OR prospective studies [mh] OR control* [tw] OR prospectiv* [tw] OR volunteer* [tw]) NOT (animals [mh] NOT human [mh])\n\n#5\tSearch STAVUDINE OR D4T OR ZERIT OR STAVIR\n\n#6\tSearch #3 AND #4 AND #5\n\n#7\tSearch #3 AND #4 AND #5 Limits: Publication Date from 2008/08/29 to 2009/06/05",
"notes": "Types of studies: Randomised, controlled blinded and non-blinded clinical trials.\n\nMy feeling is that each of the #number search should be treated as a different query",
"start_date": "2008-08-28",
"end_date": "2009-06-04",
"annotator_id": 3
},
{
"id": 59,
"document_id": 18,
"query": "1 exp Surgical Wound Infection/ \n2 exp Surgical Wound Dehiscence/ \n3 (surg* adj5 infect*).tw. \n4 (surg* adj5 wound*).tw. \n5 (surg* adj5 site*).tw. \n6 (surg* adj5 incision*).tw. \n7 (surg* adj5 dehiscen*).tw. \n8 ((post-operative or postoperative) adj5 wound infection*).tw. \n9 exp Preoperative Care/ \n10 exp Perioperative Care/ \n11 ((preoperative or pre-operative) adj care).tw. \n12 or/1-11 \n13 exp Skin/ \n14 exp Antisepsis/ \n15 and/13-14 \n16 skin antisep*.tw. \n17 exp Anti-Infective Agents, Local/ \n18 exp Iodophors/ \n19 exp Povidone-Iodine/ \n20 exp Chlorhexidine/ \n21 exp Alcohols/ \n22 exp Soaps/ \n23 (iodophor* or povidone-iodine or betadine or chlorhexidine or triclosan or hexachlorophene or benzalkonium or alcohol or alcohols or antiseptic* or soap*).tw. \n24 exp Disinfectants/ \n25 13 and 24 \n26 (skin adj5 disinfect*).tw. \n27 exp Detergents/ \n28 13 and 27 \n29 (skin adj5 detergent*).tw. \n30 or/15-23,25-26,28-29 \n31 exp Handwashing/ \n32 exp Hand/ \n33 (hand or hands or handwash* or surgical scrub*).tw. \n34 or/31-33 \n35 12 and 30 and 34",
"notes": "Ovid MEDLINE (2005 to May Week 5 2007);",
"start_date": "2004-12-31",
"end_date": "2007-05-30",
"annotator_id": 1
},
{
"id": 60,
"document_id": 65,
"query": "#6\t Search: (((((HIV INFECTIONS) OR HIV OR HIV OR HIV-1* OR HIV-2* OR HIV1 OR HIV2 OR (HIV INFECT*) OR (HUMAN IMMUNODEFICIENCY VIRUS) OR (HUMAN IMMUNEDEFICIENCY VIRUS) OR (HUMAN IMMUNO-DEFICIENCY VIRUS) OR (HUMAN IMMUNE-DEFICIENCY VIRUS) OR ((HUMAN IMMUN*) AND (DEFICIENCY VIRUS)) OR (ACQUIRED IMMUNODEFICIENCY SYNDROME))) OR (((ACQUIRED IMMUNEDEFICIENCY SYNDROME) OR (ACQUIRED IMMUNO-DEFICIENCY SYNDROME) OR (ACQUIRED IMMUNE-DEFICIENCY SYNDROME) OR ((ACQUIRED IMMUN*) AND (DEFICIENCY SYNDROME)) OR (SEXUALLY TRANSMITTED DISEASES, VIRAL)))) OR ((Antiretroviral Therapy, Highly Active[MeSH] OR Anti-Retroviral Agents[MeSH] OR Antiviral Agents[MeSH:NoExp] OR ((anti) AND (hiv[tw])) OR antiretroviral*[tw] OR ((anti) AND (retroviral*[tw])) OR HAART[tw] OR ((anti) AND (acquired immunodeficiency[tw]))) OR (((anti) AND (acquired immunedeficiency[tw])) OR ((anti) AND (acquired immuno-deficiency[tw])) OR ((anti) AND (acquired immune-deficiency[tw])) OR ((anti) AND (acquired immun*) AND (deficiency[tw]))))) AND ((((RANDOMIZED CONTROLLED TRIAL) OR (CONTROLLED CLINICAL TRIAL) OR (RANDOMIZED CONTROLLED TRIALS) OR (RANDOM ALLOCATION) OR (DOUBLE-BLIND METHOD) OR (SINGLE-BLIND METHOD) OR (CLINICAL TRIAL) OR (CLINICAL TRIALS) OR (CLINICAL TRIAL) OR ((SINGL* OR DOUBL* OR TREBL* OR TRIPL*) AND (MASK* OR BLIND* )))) OR ((PLACEBOS OR PLACEBO* OR RANDOM* OR (COMPARATIVE STUDY) OR (EVALUATION STUDIES) OR (FOLLOW-UP STUDIES) OR (PROSPECTIVE STUDIES) OR CONTROL* OR PROSPECTIV* OR VOLUNTEER*))) AND (STAVUDINE OR D4T OR ZERIT OR STAVIR) Limit: 2008/08/29:2009/06/05\n\n\n#5\t Search: STAVUDINE OR D4T OR ZERIT OR STAVIR\n\n\n#4\t Search: (((RANDOMIZED CONTROLLED TRIAL) OR (CONTROLLED CLINICAL TRIAL) OR (RANDOMIZED CONTROLLED TRIALS) OR (RANDOM ALLOCATION) OR (DOUBLE-BLIND METHOD) OR (SINGLE-BLIND METHOD) OR (CLINICAL TRIAL) OR (CLINICAL TRIALS) OR (CLINICAL TRIAL) OR ((SINGL* OR DOUBL* OR TREBL* OR TRIPL*) AND (MASK* OR BLIND* )))) OR ((PLACEBOS OR PLACEBO* OR RANDOM* OR (COMPARATIVE STUDY) OR (EVALUATION STUDIES) OR (FOLLOW-UP STUDIES) OR (PROSPECTIVE STUDIES) OR CONTROL* OR PROSPECTIV* OR VOLUNTEER*))\n\n\n#3\t Search: ((((HIV INFECTIONS) OR HIV OR HIV OR HIV-1* OR HIV-2* OR HIV1 OR HIV2 OR (HIV INFECT*) OR (HUMAN IMMUNODEFICIENCY VIRUS) OR (HUMAN IMMUNEDEFICIENCY VIRUS) OR (HUMAN IMMUNO-DEFICIENCY VIRUS) OR (HUMAN IMMUNE-DEFICIENCY VIRUS) OR ((HUMAN IMMUN*) AND (DEFICIENCY VIRUS)) OR (ACQUIRED IMMUNODEFICIENCY SYNDROME))) OR (((ACQUIRED IMMUNEDEFICIENCY SYNDROME) OR (ACQUIRED IMMUNO-DEFICIENCY SYNDROME) OR (ACQUIRED IMMUNE-DEFICIENCY SYNDROME) OR ((ACQUIRED IMMUN*) AND (DEFICIENCY SYNDROME)) OR (SEXUALLY TRANSMITTED DISEASES, VIRAL)))) OR ((Antiretroviral Therapy, Highly Active[MeSH] OR Anti-Retroviral Agents[MeSH] OR Antiviral Agents[MeSH:NoExp] OR ((anti) AND (hiv[tw])) OR antiretroviral*[tw] OR ((anti) AND (retroviral*[tw])) OR HAART[tw] OR ((anti) AND (acquired immunodeficiency[tw]))) OR (((anti) AND (acquired immunedeficiency[tw])) OR ((anti) AND (acquired immuno-deficiency[tw])) OR ((anti) AND (acquired immune-deficiency[tw])) OR ((anti) AND (acquired immun*) AND (deficiency[tw]))))\n\n\n#2\t Search: (Antiretroviral Therapy, Highly Active[MeSH] OR Anti-Retroviral Agents[MeSH] OR Antiviral Agents[MeSH:NoExp] OR ((anti) AND (hiv[tw])) OR antiretroviral*[tw] OR ((anti) AND (retroviral*[tw])) OR HAART[tw] OR ((anti) AND (acquired immunodeficiency[tw]))) OR (((anti) AND (acquired immunedeficiency[tw])) OR ((anti) AND (acquired immuno-deficiency[tw])) OR ((anti) AND (acquired immune-deficiency[tw])) OR ((anti) AND (acquired immun*) AND (deficiency[tw])))\n\n\n#1\t Search: (((HIV INFECTIONS) OR HIV OR HIV OR HIV-1* OR HIV-2* OR HIV1 OR HIV2 OR (HIV INFECT*) OR (HUMAN IMMUNODEFICIENCY VIRUS) OR (HUMAN IMMUNEDEFICIENCY VIRUS) OR (HUMAN IMMUNO-DEFICIENCY VIRUS) OR (HUMAN IMMUNE-DEFICIENCY VIRUS) OR ((HUMAN IMMUN*) AND (DEFICIENCY VIRUS)) OR (ACQUIRED IMMUNODEFICIENCY SYNDROME))) OR (((ACQUIRED IMMUNEDEFICIENCY SYNDROME) OR (ACQUIRED IMMUNO-DEFICIENCY SYNDROME) OR (ACQUIRED IMMUNE-DEFICIENCY SYNDROME) OR ((ACQUIRED IMMUN*) AND (DEFICIENCY SYNDROME)) OR (SEXUALLY TRANSMITTED DISEASES, VIRAL)))",
"notes": "Types of studies: Randomised, controlled blinded and non-blinded clinical trials.\n\nThis is a PubMed query",
"start_date": "2007-12-31",
"end_date": "2009-12-30",
"annotator_id": 3
},
{
"id": 62,
"document_id": 86,
"query": "1 exp Vitamin B Complex/\n2 vitamin b.tw.\n3 folic acid.tw.\n4 folate$.tw.\n5 ((homocystein$ or homocystin$) adj3 (low$ or reduc$)).tw.\n6 pyridoxin$.tw.\n7 cobalamin$.tw.\n8 cyanocobalamin$.tw.\n9 pyridoxol$.tw.\n10 Vitamins/\n11 or/1-10\n12 Cardiovascular Diseases/\n13 exp Myocardial Ischemia/\n14 exp Brain Ischemia/\n15 Cerebrovascular Disorders/\n16 (coronary adj3 disease$).tw.\n17 angina.tw.\n18 myocardial infarct$.tw.\n19 heart infarct$.tw.\n20 heart attack$.tw.\n21 (stroke or strokes).tw.\n22 (cerebr$ adj3 (accident$ or infarct$)).tw.\n23 (brain adj3 infarct$).tw.\n24 apoplexy.tw.\n25 (cardiovascular adj2 (disease$ or event$)).tw.\n26 Hyperhomocysteinemia/\n27 hyperhomocyst?in?emi$.tw.\n28 or/12-27\n29 11 and 28\n30 randomized controlled trial.pt.\n31 controlled clinical trial.pt.\n32 randomized.ab.\n33 placebo.ab.\n34 drug therapy.fs.\n35 randomly.ab.\n36 trial.ab.\n37 groups.ab.\n38 30 or 31 or 32 or 33 or 34 or 35 or 36 or 37\n39 exp animals/ not humans.sh. (3663238)\n40 38 not 39\n41 29 and 40\n42 (200808* or 200809* or 20081* or 2009* or 2010* or 2011* or 2012*).ed.\n43 41 and 42",
"notes": "",
"start_date": "2004-12-31",
"end_date": "2012-12-30",
"annotator_id": 1
},
{
"id": 64,
"document_id": 35,
"query": "1. exp Nicotine/ or exp Nicotinic Agonists/ or exp Receptors, Nicotinic/ or nicotin*.af.\n2. exp Analgesics/ or exp Analgesia/ or analges*.mp. or exp Pain, Postoperative/ or exp pain/dt or exp Surgical Procedures, Operative/ or su.fs. or (pain* adj5 ((post or follow* or after*) adj3 (surger* or surgic* or operat* or procedur*))).mp.\n3. 1 and 2\n4. (randomized controlled trial.pt. or controlled clinical trial.pt. or randomized.ab. or placebo.ab. or drug therapy.fs. or randomly.ab. or trial.ab. or groups.ab.) not (animals.sh not (humans.sh and animals.sh))\n5. 3 and 4",
"notes": "We searched MEDLINE (1966 to 20 March 2014)",
"start_date": "1965-12-31",
"end_date": "2014-03-19",
"annotator_id": 1
},
{
"id": 65,
"document_id": 115,
"query": "1\texp health promotion/ or residence characteristics/\n2\tcommunity health planning/ or exp community health services/\n3\t(national adj (policy or policies or strateg$ or program$)).ti,ab.\n4\texp mass media/\n5\tcommunity networks/\n6\tcommunity health centers/\n7\t\"marketing of health services\"/\n8\tcities/\n9\trural population/ or rural health/\n10\turban population/\n11\tcommunity-institutional relations/\n12\texp environment design/\n13\tcity planning/\n14\tenvironmental planning.ti,ab.\n15\tsocial environment/\n16\turban health/\n17\tsocial marketing/ or \"health education\"/\n18\t((state or county or town or city or village or nation*) adj2 (wide or whole or communit*)).ti,ab.\n19\t((combined$ or multiple or multi or multifactorial or partner$) adj2 (program$ or strateg$ or intervention$ or organi?ation$)).ti,ab.\n20\t(media intervention* or whole community or community intervention* or community organsai?ation$1).ti,ab.\n21\t(community adj2 (design or action or program* or partner$)).ti,ab.\n22\t((health or community or environment*) adj (policy or policies)).ti,ab.\n23\t(urban design or \"land use policies\" or \"land use policy\").ti,ab.\n24\t((transportation or travel) adj (policy or policies)).ti,ab.\n25\thealth planning.ti,ab.\n26\t((neighbo?rhood* or city or cities or community) adj2 (development or regeneration or renewal or design* or plan* or polic*)).ti,ab.\n27\t(community wide or community setting$ or community group$ or organi?ation$ level$1).ti,ab.\n28\t(Communit$ adj2 base$).ti,ab.\n29\t((built environment* or urban environment* or environmental) adj (change* or intervention*)).ti,ab.\n30\t(environment$ adj2 infrastructure).ti,ab.\n31\t(urban adj2 (regeneration or renewal or plan* or design* or policy or policies or strateg* or program$)).ti,ab.\n32\t(urban adj2 (regeneration or renewal or plan* or design* or policy or policies or strateg* or program$)).ti,ab.\n33\tsocial marketing.ti,ab.\n34\t(\"point of decision\" adj3 (stair* or travel*)).ti,ab.\n35\t(health counsel* or individual counsel*).ti,ab.\n36\t(community adj3 (collaborati* or coalition)).ti,ab.\n37\t((school* or work?place* or employer* or classroom or college) adj2 (strateg$ or program$ or policy or policies)).ti,ab.\n38\t((public or community) adj2 (information or education or campaign or intervention or strateg$ or program$ or policy or policies)).ti,ab.\n39\t(policy change* or fiscal change*).ti,ab.\n40\t(policy adj3 (interven$ or change or introduce$ or modif$ or alter$)).ti,ab.\n41\tphysical infrastructure.ti,ab.\n42\t((road or land) adj us*).ti,ab.\n43\t(Legislation or legislative).ti,ab.\n44\t((Voluntary or volunteer or charities or charity or non-government or government or \"not for profit\") adj2 (group$1 or organisation$ or department$1 or club$1)).ti,ab.\n45\tor/1-44\n46\texp exercise/\n47\trunning/\n48\twalking/\n49\tphysical fitness/\n50\tswimming/\n51\t(fitness adj class*).ti,ab.\n52\tgardening/\n53\texp \"physical education and training\"/\n54\texp dancing/\n55\texp sports/\n56\texp yoga/ or exp fitness centers/ or recreation/ or \"play and playthings\"/ or exp motor activity/\n57\t(fitness adj (regime* or program*)).ti,ab.\n58\tcardiorespiratory fitness.ti,ab.\n59\taerobic capacity.ti,ab.\n60\t((moderate or vigorous*) adj activ*).ti,ab.\n61\t(led walk* or health walk*).ti,ab.\n62\t(physical adj5 (fit* or train* or activ* or endur*)).ti,ab.\n63\t(exercis* adj5 (fit* or train* or activ* or endur*)).ti,ab.\n64\t((leisure or fitness) adj5 (centre* or center* or facilit*)).ti,ab.\n65\t((promot* or uptak* or encourag* or increas* or start* or adher* or sustain* or maintain*) adj5 gym*).ti,ab.\n66\t((promot* or uptak* or encourag* or increas* or start* or adher* or sustain* or maintain*) adj5 physical activ*).ti,ab.\n67\t((promot* or uptak* or encourag* or increas* or start* or adher* or sustain* or maintain*) adj5 (circuit* or aqua*)).ti,ab.\n68\t((promot* or uptak* or encourag* or increas* or start* or adher* or sustain* or maintain*) adj5 (exercis* or exertion or keep fit or fitness class or yoga or aerobic*)).ti,ab.\n69\t((decreas* or reduc* or discourag*) adj5 (sedentary or deskbound or \"physical* inactiv*\")).ti,ab.\n70\tsport*3.ti,ab.\n71\twalk*3.ti,ab.\n72\trunning.ti,ab.\n73\tjogging.ti,ab.\n74\tpilates.ti,ab.\n75\tyoga.ti,ab.\n76\t((cycle or cycling) adj5 (school$ or work or workplace or commut$ or travel$ or equipment or facilit$ or rack$1 or store$1 or storing or park$ or friendly or infrastructure)).ti,ab.\n77\tbicycl*.ti,ab.\n78\t(bike*1 or biking).ti,ab.\n79\t(swim*1 or swimming).ti,ab.\n80\t(exercis*3 adj5 aerobic*).ti,ab.\n81\trollerblading.ti,ab.\n82\trollerskating.ti,ab.\n83\tskating.ti,ab.\n84\texertion*1.ti,ab.\n85\tstrength training.ti,ab.\n86\tresilience training.ti,ab.\n87\tweight lifting.tw.\n88\ttravel mode*1.tw.\n89\t(active adj (travel*4 or transportation or commut$)).tw.\n90\t(multimodal transportation or alternative transport* or alternative travel*).ti,ab.\n91\trecreation*1.ti,ab.\n92\t(\"use\" adj3 stair*).ti,ab.\n93\t(pedestrianis* or pedestrianiz*).ti,ab.\n94\tor/46-93\n95\trandomized controlled trial.pt.\n96\tcontrolled clinical trial.pt.\n97\t(randomized or randomised or placebo or randomly or trial).ab.\n98\trandom allocation/ or clinical trial/ or single-blind method/ or double-blind method/ or control groups/\n99\tIntervention studies/\n100\tevaluation studies/\n101\tprogram evaluation/\n102\tComparative study.pt.\n103\tquasi-experiment$.ti,ab.\n104\t(pre test or pretest or (posttest or post test)).ti,ab.\n105\ttrial.ti.\n106\t(time adj series).ti,ab.\n107\t(pre test or pretest or (posttest or post test)).ti,ab.\n108\t((evaluat$ or intervention or interventional) adj8 (control or controlled or study or program$ or comparison or \"before and after\" or comparative)).ti,ab.\n109\t((intervention or interventional) adj8 (effect* or evaluat* or outcome*)).ti,ab.\n110\t((process or program*) adj3 (effect* or evaluat*)).ti,ab.\n111\t(controlled before or \"before and after stud$\" or follow up assessment).ti,ab.\n112\tor/95-111\n113\t45 and 94 and 112\n114\tanimals/ not (humans/ and animals/)\n115\t113 not 114",
"notes": "MEDLINE (Ovid) January 1995 to 9 November 2009 [Medline/Medline in Process 5691 hits]; November 2009 to 17 January 2014 [3370 hits]; Total = 9061 hits\n\nlimited by year\n\n--\n\nsame search was done for MEDLINE In-process",
"start_date": "1994-12-31",
"end_date": "2014-01-16",
"annotator_id": 1
},
{
"id": 66,
"document_id": 58,
"query": "1. Glaucoma/cn [Congenital]\n2. ((congenital or neonat$ or pediatric$ or paediatric$ or child$) adj5 glaucoma$).tw.\n3. or/1-2\n4. exp trabeculectomy/\n5. goniotom$.tw.\n6. trabeculotom$.tw.\n7. trabeculectom$.tw.\n8. trabectom$.tw.\n9. exp filtering surgery/\n10. ((surg$ or operat$) adj3 filtrat$).tw.\n11. exp sclerostomy/\n12. sclerostom$.tw.\n13. sclerectom$.tw.\n14. viscocanalostom$.tw.\n15. (glaucoma$ adj4 surg$).tw.\n16. exp glaucoma drainage implants/\n17. (molteno or ahmed or baerveldt or krupin or schocket or joseph or optimed).tw.\n18. ((tube$ or device$ or drain$ or shunt$ or implant$ or seton$) adj6 glaucoma$).tw.\n19. laser coagulation/\n20. cyclophotocoagulat$.tw.\n21. cyclocryotherap$.tw.\n22. or/4-21\n23. 3 and 22",
"notes": "Ovid MEDLINE, Ovid MEDLINE In-Process and Other Non-Indexed Citations, Ovid MEDLINE Daily, Ovid OLDMEDLINE (January 1946 to June 2014)",
"start_date": "1945-12-31",
"end_date": "2014-07-30",
"annotator_id": 1
},
{
"id": 67,
"document_id": 58,
"query": "#1 (glaucoma*[tw] AND (congenital[tw] OR neonat*[tw] OR pediatric*[tw] OR paediatric*[tw] OR child*[tw])) NOT Medline[sb]\n#2 goniotom*[tw] NOT Medline[sb]\n#3 trabeculotom*[tw] NOT Medline[sb]\n#4 trabeculectom*[tw] NOT Medline[sb]\n#5 trabectom*[tw] NOT Medline[sb]\n#6 (filtrat*[tw] AND (surg*[tw] OR operat*[tw])) NOT Medline[sb]\n#7 sclerostom*[tw] NOT Medline[sb]\n#8 sclerectom*[tw] NOT Medline[sb]\n#9 viscocanalostom*[tw] NOT Medline[sb]\n#10 (glaucoma*[tw] AND surg*[tw]) NOT Medline[sb]\n#11 (molteno[tw] OR ahmed[tw] OR baerveldt[tw] OR krupin[tw] OR schocket[tw] OR joseph[tw] OR optimed[tw]) NOT Medline[sb]\n#12 (glaucoma*[tw] AND (tube*[tw] OR device*[tw] OR drain*[tw] OR shunt*[tw] OR implant*[tw] OR seton*[tw]) NOT Medline[sb]\n#13 cyclophotocoagulat*[tw] NOT Medline[sb]\n#14 cyclocryotherap*[tw] NOT Medline[sb]\n#15 (#2 OR #3 OR #4 OR #5 OR #6 OR #7 OR #8 OR #9 OR #10 OR #11 OR #12 OR #13 OR #14)\n#16 (#1 AND #15)",
"notes": "PubMed search strategy\n\nPubMed (January 1946 to June 2014)",
"start_date": "1945-12-31",
"end_date": "2014-06-29",
"annotator_id": 1
},
{
"id": 68,
"document_id": 59,
"query": "retinoic acid OR retinoic acids OR Retinoid* OR Retinoid OR Retinoids OR tretinoin OR Vitamin A Acid OR Acid, Vitamin A OR trans-Retinoic Acid OR Acid, trans-Retinoic OR trans Retinoic Acid OR all-trans-Retinoic Acid OR Acid, all-trans-Retinoic OR all trans Retinoic Acid OR beta-all-trans-Retinoic Acid OR beta all trans Retinoic Acid OR 3-cis-RA OR 13-cis-retinoic acid OR 4759-48-2 OR Retin-A OR Retin A OR Vesanoid OR isotretinoin OR ATRA OR Accutane OR Airol OR Dermairol",
"notes": "For Retinoic acid the following MeSH headings and text words were used",
"start_date": "1945-12-31",
"end_date": "2014-09-30",
"annotator_id": 1
},
{
"id": 70,
"document_id": 59,
"query": "((randomized controlled trial[pt]) OR (controlled clinical trial[pt]) OR (randomized[tiab]) OR (placebo[tiab]) OR (drug therapy[sh]) OR (randomly[tiab]) OR (trial[tiab]) OR (groups[tiab])) AND (humans[mh])\n\nFinal search 1 and 2 and 3",
"notes": "For RCTs and CCTs the following MeSH headings and text words were used",
"start_date": "1945-12-31",
"end_date": "2014-09-30",
"annotator_id": 1
},
{
"id": 71,
"document_id": 96,
"query": "1. (zentralveno?s* kathet* or (venostrom* or venenkathe*) or hickman line* or central line* insertion* or pulmonary arter* flotation* or ((venous or vein*) adj4 (cannulation or access or catheter* puncture)) or central venous line* or central venous pressure).mp. or exp Venous Cutdown/ or Central Venous Pressure/ or exp Catheterization Central Venous/ \n2. (ultrasound* or ultrasonic* or Doppler or echography or ultrasonograpgh*).mp. or exp Ultrasonography Doppler Color/ or exp Echocardiography Doppler/ or exp Ultrasonography/ or exp Ultrasonics/\n3. 1 and 2 \n4. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or drug therapy.fs. or randomly.ab. or trial.ab. or groups.ab.) not (animals not (humans and animals)).sh. \n5. 3 and 4",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2013-01-14",
"annotator_id": 1
},
{
"id": 72,
"document_id": 76,
"query": "1. exp Extracorporeal Membrane Oxygenation/ or ((extracor* or extra-cor*) and membra* and oxygen*).mp. or ECMO.ti,ab. or ((carbon dioxide or CO2) adj3 remov*).mp. or ((pump?free or pumpless or interventional) adj3 lung?assist*).mp. or (PECLA or iLA).ti,ab.\n2. ((lung adj5 assist*) or (severe adj3 (respiratory or cardiac or lung or heart) adj3 (insufficiency or failure))).af.\n3. (lung adj5 assist*).ti,ab.\n4. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or drug therapy.fs. or randomly.ab. or trial.ab. or groups.ab.) not (animals not (humans and animals)).sh.\n5. ((1 and 2) or 3) and 4",
"notes": "",
"start_date": "1970-12-31",
"end_date": "2014-08-17",
"annotator_id": 1
},
{
"id": 74,
"document_id": 103,
"query": "1 Pneumonia, Mycoplasma/\n2 (mycoplasma adj3 pneumonia*).tw.\n3 primary atypical pneumonia.tw.\n4 or/1-3\n5 Mycoplasma pneumoniae/\n6 (mycoplasma pneumoniae or \"M. pneumoniae\").tw.\n7 Mycoplasma Infections/\n8 mycoplasma.tw.\n9 or/5-8\n10 exp Pneumonia/\n11 (pneumon* or bronchopneumon* or pleuropneumon*).tw.\n12 exp Bronchitis/\n13 (bronchit* or tracheobronchit*).tw.\n14 Respiratory Sounds/\n15 wheez*.tw.\n16 exp Respiratory Tract Infections/\n17 (respiratory tract infection* or acute respiratory infection* or lower respiratory infection* or lower respiratory tract infection* or lrti).tw.\n18 or/10-17\n19 9 and 18\n20 4 or 19\n21 exp Anti-Bacterial Agents/\n22 exp Macrolides/\n23 exp Quinolones/\n24 exp Tetracyclines/\n25 antibiotic*.tw,nm.\n26 (macrolide* or erythromycin* or roxithromycin* or clarithromycin* or azithromycin*).tw,nm.\n27 or/21-26\n28 20 and 27",
"notes": "Previously we searched the Cochrane Central Register of Controlled Trials (CENTRAL) (2012, Issue 2) (accessed 13 March 2012), which contains the Acute Respiratory Infection Group's Specialised Register, MEDLINE (1966 to February Week 5, 2012)",
"start_date": "1965-12-31",
"end_date": "2012-02-28",
"annotator_id": 1
},
{
"id": 76,
"document_id": 103,
"query": "1 exp MYCOPLASMA/\n2 exp Mycoplasma pneumoniae/\n3 mycoplasma\n4 or/1-3\n5 exp BRONCHITIS/\n6 exp PNEUMONIA/\n7 exp Respiratory Tract Infections/\n8 bronchitis\n9 pneumonia\n10 atypical pneumonia\n11 respiratory tract infection$\n12 acute respiratory infection$\n13 or/5-12\n14 exp Anti-Bacterial Agents/\n15 exp MACROLIDES/\n16 exp QUINOLONES/\n17 exp TETRACYCLINES/\n18 antibiotic$\n19 (macrolide$ or erythromycin or roxithromycin or clarithromycin or azithromycin)\n20 or/14-19\n21 exp CHILD/\n22 (child or children)\n23 (paediatric or pediatric)\n24 or/21-23\n25 4 and 13 and 20 and 24",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2005-02-27",
"annotator_id": 1
},
{
"id": 81,
"document_id": 19,
"query": "1. exp \"clinical trial [publication type]\"/\n\n2. (randomized or randomised).ab,ti.\n\n3. placebo.ab,ti.\n\n4. dt.fs.\n\n5. randomly.ab,ti.\n\n6. trial.ab,ti.\n\n7. groups.ab,ti.\n\n8. or/1-7\n\n9. Animals/\n\n10. Humans/\n\n11. 9 not (9 and 10)\n\n12. 8 not 11\n\n",
"notes": "Filter to identify RCTs\n\n--\nThe MEDLINE strategy and RCT filter are adapted to identify trials in other electronic databases.",
"start_date": null,
"end_date": "2016-01-30",
"annotator_id": 1
},
{
"id": 82,
"document_id": 81,
"query": "1. Alcohol-Related Disorders [mesh]\n2. alcohol* [tiab]\n3. dependen* or disorder* or drink* or misuse or abuse* or consumption [tiab]\n4. #2 AND #3\n5. alcoholism [mesh]\n6. exp drinking behaviour\n7. #1 or #4 or #5 or #6\n8. Anxiety* [tiab]\n9. Anxiety Disorders [mesh]\n10. #8 OR #9\n11. randomized controlled trial [pt]\n12. controlled clinical trial [pt]\n13. random* [tiab]\n14. placebo [tiab]\n15. drug therapy [mesh]\n16. trial [tiab]\n17. groups [tiab]\n18. #11 or #12 or #13 or #14 or #15 or #16 or #17\n19. Animals[mesh] NOT humans [mesh]\n20. #18 NOT #19\n21. #4 AND #10 AND #20",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2013-08-30",
"annotator_id": 1
},
{
"id": 83,
"document_id": 74,
"query": "1 (climacteric or menopaus$).tw. (37286)\n2 (postmenopaus$ or perimenopaus$).tw. (42140)\n3 vasomotor.tw. (10342)\n4 exp Menopause, Premature/ or exp Menopause/ (44481)\n5 exp Climacteric/ (47888)\n6 exp Perimenopause/ (748)\n7 exp Postmenopause/ (18274)\n8 exp Hot Flashes/ (2212)\n9 (hot flash$ or hot flush$).tw. (3446)\n10 night sweat$.tw. (1409)\n11 Nocturnal diaphoresis.tw. (7)\n12 vagina$ dry$.tw. (617)\n13 sexual function$.tw. (8686)\n14 sexual satisfaction.tw. (1342)\n15 vagina$ atrophy.tw. (309)\n16 or/1-15 (101033)\n17 exp Dehydroepiandrosterone Sulfate/ or exp Dehydroepiandrosterone/ (10083)\n18 Dehydroepiandrosterone.tw. (9609)\n19 DHEA$.tw. (6434)\n20 androstenedione.tw. (8040)\n21 Prasterone.tw. (82)\n22 dehydroisoandrosterone.tw. (220)\n23 dha sulfate.tw. (54)\n24 androstenolone.tw. (59)\n25 or/17-24 (19764)\n26 16 and 25 (1887)\n27 randomized controlled trial.pt. (360999)\n28 controlled clinical trial.pt. (87042)\n29 randomized.ab. (281866)\n30 randomised.ab. (55469)\n31 placebo.tw. (153268)\n32 clinical trials as topic.sh. (166848)\n33 randomly.ab. (205060)\n34 trial.ti. (120220)\n35 (crossover or cross-over or cross over).tw. (58959)\n36 or/27-35 (912453)\n37 exp animals/ not humans.sh. (3871615)\n38 36 not 37 (841156)\n39 26 and 38 (281)",
"notes": "Database: Ovid MEDLINE(R) In-Process & Other Non-Indexed Citations, Ovid MEDLINE(R) Daily and Ovid MEDLINE(R) <1946 to Present>",
"start_date": "1945-12-31",
"end_date": "2014-02-09",
"annotator_id": 1
},
{
"id": 88,
"document_id": 110,
"query": "1. exp Adrenergic alpha-Agonists/ or exp Dexmedetomidine/ or exp Clonidine/ or alpha?2 adrenergic agonist*.af. or (dexmed*or precede* or clonidin* or catapresan* or isoglancon or ST-155).mp.\n\n2. exp Respiration, Artificial/ or Ventilation/ or ((invasive or intubat* or mechanical or artificial) adj3 (ventilat* or respire*)).mp. or ventilat*.ti,ab.\n\n3. 1 and 2\n\n4. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or clinical trials as topic.sh. or randomly.ab. or trial.ti.) not (animals not (humans and animals)).sh.\n\n5. 3 and 4",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2014-10-08",
"annotator_id": 1
},
{
"id": 89,
"document_id": 104,
"query": "exp PAIN/ (306193)\n\nexp PERIPHERAL NERVOUS SYSTEM DISEASES/ (115068)\n\nexp SOMATOSENSORY DISORDERS/ (16091)\n\n((pain* or discomfort*) adj10 (central or complex or nerv* or neuralg* or neuropath*)).mp. (38237)\n\n((neur* or nerv*) adj6 (compress* or damag*)).mp. (47759)\n\n1 or 2 or 3 or 4 or 5 (449361)\n\nNortriptyline/ (2043)\n\n(nortriptyline or Allegron or Aventyl or Noritren or Norpress or Nortrilen or Pamelor or Sensoval).mp. (2781)\n\n7 or 8 (2781)\n\nrandomized controlled trial.pt. (376175)\n\ncontrolled clinical trial.pt. (88531)\n\nrandomized.ab. (274544)\n\nplacebo.ab. (146796)\n\ndrug therapy.fs. (1708719)\n\nrandomly.ab. (194627)\n\ntrial.ab. (284610)\n\ngroups.ab. (1250317)\n\nor/10-17 (3208598)\n\n6 and 9 and 18 (107)",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2015-01-06",
"annotator_id": 1
},
{
"id": 109,
"document_id": 27,
"query": "1. exp Antifungal Agents/ or exp Mycoses/ or (micafungin or anidulafungin or fung* or fluconazole or diflucan or itraconazole or sporanox or ketoconazole or nizoral or voriconazole or amphotericin or ambisome or amphotec or abelcet or flucytosine or nystatin or miconazole or echinocandin* or caspofungin or (select* adj3 decontam*)).mp.\n\n2. exp Intensive Care Units/ or (intensive care or critical* or surg*).mp.\n\n3. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or clinical trials as topic.sh. or randomly.ab. or trial.ti.) not (animals not (humans and animals)).sh.\n\n4. 1 and 2 and 3",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2005-09-01",
"annotator_id": 1
},
{
"id": 75,
"document_id": 103,
"query": "1 exp MYCOPLASMA/\n2 exp Mycoplasma pneumoniae/\n3 mycoplasma.tw.\n4 \"m. pneumoniae\".tw.\n5 or/1-4\n6 exp BRONCHITIS/\n7 exp PNEUMONIA/\n8 exp Respiratory Tract Infections/\n9 bronchit*.tw.\n10 pneumon*.tw.\n11 wheez*.tw.\n12 tracheobronchit*.tw.\n13 respiratory tract infection*.tw.\n14 acute respiratory infection*.tw.\n15 or/6-14\n16 exp Anti-Bacterial Agents/\n17 exp MACROLIDES/\n18 exp QUINOLONES/\n19 exp TETRACYCLINES/\n20 antibiotic*.tw,nm.\n21 (macrolide* or erythromycin or roxithromycin or clarithromycin or azithromycin).tw,nm.\n22 or/16-21\n23 5 and 15 and 22\n24 exp Infant/\n25 (infant* or infancy or newborn* or baby* or babies or neonat* or preterm* or prematur*).tw.\n26 exp Child/\n27 (child* or schoolchild* or school age* or preschool* or kid or kids or toddler*).tw.\n28 Adolescent/\n29 (adoles* or teen* or boy* or girl*).tw.\n30 Minors/\n31 Puberty/\n32 (minor* or pubert* or pubescen*).tw.\n33 exp Pediatrics/\n34 (pediatric* or paediatric*).tw.\n35 exp Schools/\n36 (nursery school* or kindergar* or primary school* or secondary school* or elementary school* or high school* or highschool*).tw.\n37 or/24-36\n38 37 and 23",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2010-02-11",
"annotator_id": 1
},
{
"id": 77,
"document_id": 103,
"query": "1 Pneumonia, Mycoplasma/\n2 (mycoplasma adj3 pneumon*).tw.\n3 primary atypical pneumonia.tw.\n4 or/1-3\n5 Mycoplasma pneumoniae/\n6 (mycoplasma pneumoniae or \"M. pneumoniae\").tw.\n7 Mycoplasma Infections/\n8 mycoplasma.tw.\n9 or/5-8\n10 exp Pneumonia/\n11 (pneumon* or bronchopneumon* or pleuropneumon*).tw.\n12 exp Bronchitis/\n13 (bronchit* or tracheobronchit*).tw.\n14 Respiratory Sounds/\n15 wheez*.tw.\n16 exp Respiratory Tract Infections/\n17 (respiratory tract infection* or acute respiratory infection* or lower respiratory infection* or lower respiratory tract infection* or lrti).tw.\n18 or/10-17\n19 9 and 18\n20 4 or 19\n21 exp Anti-Bacterial Agents/\n22 exp Macrolides/\n23 exp Quinolones/\n24 exp Tetracyclines/\n25 antibiotic*.tw,nm.\n26 (macrolide* or erythromycin* or roxithromycin* or clarithromycin* or azithromycin*).tw,nm.\n27 or/21-26\n28 20 and 27",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2012-02-27",
"annotator_id": 1
},
{
"id": 78,
"document_id": 109,
"query": "1. (protocol* or non?protocol* or directed or guide* or algorithm* or manage* or ((standar* or regular*) adj3 assess*)).mp. or algorithms/ or exp Guideline/ or exp Clinical Protocols/ or exp Medication Therapy Management/ \n2. exp Conscious Sedation/ or exp Analgesia, Patient-Controlled/ or exp Analgesics/ or exp \"Hypnotics and Sedatives\"/ or sedat*.af. or analge*.ti,ab.\n3. 1 and 2 \n4. (((mechanical* or artificial) adj4 (ventil* or wean* or respirat*)) or ((crtical* or intens* or emergency) adj5 (care or ill* or patient* or unit* or ward*)) or (length adj3 stay) or ICU).mp. or exp Intensive Care/ or exp Intensive Care Units/ or exp Critical Care/ or exp Critical Illness/ or exp Respiration, Artificial/ or exp Ventilator Weaning/ or \"Length of Stay\"/\n5. 3 and 4 \n6. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or clinical trials as topic.sh. or randomly.ab. or trial.ti.) not (animals not (humans and animals)).sh. \n7. 5 and 6",
"notes": "",
"start_date": "1989-12-31",
"end_date": "2013-11-29",
"annotator_id": 1
},
{
"id": 79,
"document_id": 57,
"query": "1 Noise/\n2 Acoustic Stimulation/\n3 hearing loss/ or deafness/ or hearing loss, bilateral/ or hearing loss, conductive/ or hearing loss, functional/ or hearing loss, high-frequency/ or hearing loss, noise-induced/ (26183)\n4 Sound/ (\n5 1 or 2 or 3 or 4\n6 Intensive Care, Neonatal/\n7 intensive care units/ or intensive care units, neonatal/\n8 6 or 7\n9 exp Infant, Newborn, Diseases/\n10 8 or 9\n11 5 and 10\n12 limit 11 to (\"newborn infant (birth to 1 month)\" and randomised controlled trial)\n13 limit 11 to randomised controlled trial\n14 13 not 12\n15 from 12 keep 5,8\n16 limit 11 to (\"newborn infant (birth to 1 month)\" and controlled clinical trial)\n17 limit 11 to (\"newborn infant (birth to 1 month)\" and clinical trial)\n18 17 not (16 or 12)\n19 limit 5 to (\"newborn infant (birth to 1 month)\" and (clinical trial or controlled clinical trial or randomised controlled trial)) (58)\n20 19 not (12 or 16 or 17)\n21 from 20 keep 4,21,29-32,35,37,40\n22 exp infant, low birth weight/ or infant, premature/\n23 5 and 22\n24 limit 23 to (clinical trial or controlled clinical trial or randomised controlled trial)\n25 24 not (12 or 16 or 17 or 19)\n26 21 or 15",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2014-12-30",
"annotator_id": 1
},
{
"id": 80,
"document_id": 19,
"query": "1. exp Asthma/\n\n2. asthma$.mp.\n\n3. (antiasthma$ or anti-asthma$).mp.\n\n4. Respiratory Sounds/\n\n5. wheez$.mp.\n\n6. Bronchial Spasm/\n\n7. bronchospas$.mp.\n\n8. (bronch$ adj3 spasm$).mp.\n\n9. bronchoconstrict$.mp.\n\n10. exp Bronchoconstriction/\n\n11. (bronch$ adj3 constrict$).mp.\n\n12. Bronchial Hyperreactivity/\n\n13. Respiratory Hypersensitivity/\n\n14. ((bronchial$ or respiratory or airway$ or lung$) adj3 (hypersensitiv$ or hyperreactiv$ or allerg$ or insufficiency)).mp.\n\n15. ((dust or mite$) adj3 (allerg$ or hypersensitiv$)).mp.\n\n16. or/1-15",
"notes": "Asthma search",
"start_date": null,
"end_date": "2016-01-30",
"annotator_id": 1
},
{
"id": 85,
"document_id": 116,
"query": "1 exp Central Nervous System Depressants/\n\n2 exp Anesthesia/\n\n3 exp Benzodiazepines/\n\n4 exp Barbiturates/\n\n5 exp Histamine Antagonists/\n\n6 exp Psychotropic Drugs/\n\n7 (benzodiazepine* or barbiturate* or anaesthesia or anesthesia or opioid* or antipsychotic* or anti-psychotic* or antihistamine* or anti-histamine* or hypnotic* or sedat* or tranquil*).mp.\n\n8 (symptom* adj6 (relie* or control*)).mp.\n\n9 1 or 2 or 3 or 4 or 5 or 6 or 7 or 8\n\n10 Palliative Care/\n\n11 exp Terminal Care/\n\n12 Terminally Ill/\n\n13 palliat*.mp.\n\n14 (terminal* adj6 (care or caring or ill*)).mp.\n\n15 (terminal-stage* or terminal stage* or dying or (close adj6 death)).mp.\n\n16 (end adj3 life).mp.\n\n17 hospice*.mp.\n\n18 ((end-stage* or end stage*) adj6 (disease* or ill* or care or caring)).mp.\n\n19 ((incurable or advanced) adj6 (ill* or disease*)).mp.\n\n20 10 or 11 or 12 or 13 or 14 or 15 or 16 or 17 or 18 or 19\n\n21 9 and 20\n\n22 randomized controlled trial.pt.\n\n23 controlled clinical trial.pt.\n\n24 randomized.ab.\n\n25 placebo.ab.\n\n26 clinical trials as topic.sh.\n\n27 randomly.ab.\n\n28 trial.ti.\n\n29 exp Cohort Studies/\n\n30 (cohort* or observational* or comparative* or quantitative* or (before and after) or (interrupted and time)).mp.\n\n31 22 or 23 or 24 or 25 or 26 or 27 or 28 or 29 or 30\n\n32 21 and 31",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2014-11-29",
"annotator_id": 1
},
{
"id": 86,
"document_id": 88,
"query": "1. exp lung neoplasms/\n\n2. carcinoma, non-small-cell lung/\n\n3. (lung adj2 cancer).tw.\n\n4. (lung adj2 carcinoma$).tw.\n\n5. (lung adj2 neoplas$).tw.\n\n6. (pulmonary adj2 neoplas$).tw.\n\n7. (lung$ adj2 metast$).tw.\n\n8. exp carcinoma,bronchogenic/\n\n9. exp bronchial neoplasms/\n\n10. (bronch$ adj2 cancer$).tw.\n\n11. (bronch$ adj2 carcinoma$).tw.\n\n12. exp pleural neoplasms/\n\n13. or/1-12\n\n14. (lung$ or bronch$ or pulmonary).tw.\n\n15. exp carcinoma, squamous cell/\n\n16. exp adenocarcinoma/\n\n17. ((round adj cell) and (carcinoma$ or cancer$)).tw.\n\n18. ((reserve adj cell) and (carcinoma$ or cancer$)).tw.\n\n19. ((large adj cell) and (carcinoma$ or cancer$)).tw.\n\n20. ((squamous adj cell) and (carcinoma$ or cancer$)).tw.\n\n21. adenocarcinoma$.tw.\n\n22. carcinoma, large cell/\n\n23. or/15-22\n\n24. 14 and 23\n\n25. 13 or 24\n\n26. exp radiotherapy/\n\n27. exp radiotherapy, computer-assisted/\n\n28. exp radiation dosage/\n\n29. exp radiotherapy dosage/\n\n30. exp radiotherapy, high-energy/\n\n31. exp radiotherapy,adjuvant/\n\n32. exp dose fractionation/\n\n33. exp brachytherapy/\n\n34. exp radiation oncology/\n\n35. radiotherap$.tw.\n\n36. (thorac$ adj2 radiotherap$).mp.\n\n37. (radiat$ adj2 therap$).mp.\n\n38. (thorac$ adj2 radiat$).mp.\n\n39. irradiation.tw.\n\n40. (endobronch$ adj2 brachytherap$).mp.\n\n41. or/26-40\n\n42. exp palliative care/\n\n43. exp terminal care/\n\n44. exp quality of life/\n\n45. (symptom$ adj2 control$).mp.\n\n46. (symptom$ adj2 relief).mp.\n\n47. (symptom$ adj2 manag$).mp.\n\n48. (palliat$ adj2 manag$).mp.\n\n49. exp appetite/\n\n50. exp fatigue/\n\n51. exp cough/\n\n52. exp dyspnea/\n\n53. dyspnoea.tw.\n\n54. exp hemoptysis/\n\n55. haemoptysis.tw.\n\n56. exp chest pain/\n\n57. exp deglutition disorders/\n\n58. exp nausea/\n\n59. exp weight loss/\n\n60. tiredness.tw.\n\n61. exp hoarseness/\n\n62. breathlessness.tw.\n\n63. (symptom$ adj2 palliat$).mp.\n\n64. (palliat$ adj2 radiat$).mp.\n\n65. (palliat$ adj2 intent$).mp.\n\n66. or/42-65\n\n67. 41 and 66\n\n68. 25 and 67\n\n69. randomized controlled trial.pt.\n\n70. controlled clinical trial.pt.\n\n71. randomized.ab.\n\n72. placebo.ab.\n\n73. drug therapy.fs.\n\n74. randomly.ab.\n\n75. trial.ab.\n\n76. groups.ab.\n\n77. or/69-76\n\n78. exp animals/ not humans.sh.\n\n79. 77 not 78\n\n80. 68 and 79\n\n81 (201112* or 2012* or 2013* or 2014*).em.\n\n80 and 81",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2014-01-30",
"annotator_id": 1
},
{
"id": 110,
"document_id": 36,
"query": " pneumothorax AND ((infant, newborn[MeSH] OR newborn OR neonate OR neonatal OR premature OR low birth weight OR VLBW OR LBW or infan* or neonat*) AND (randomized controlled trial [pt] OR controlled clinical trial [pt] OR Clinical Trial[ptyp] OR randomized [tiab] OR placebo [tiab] OR clinical trials as topic [mesh: noexp] OR randomly [tiab] OR trial [ti]) NOT (animals [mh] NOT humans [mh]))",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2015-11-29",
"annotator_id": 1
},
{
"id": 90,
"document_id": 51,
"query": "1. exp Dementia/\n\n2. Cognition Disorders/\n\n3. (alzheimer$ or dement$).ti,ab.\n\n4. ((cognit$ or memory or cerebr$ or mental$) adj3 (declin$ or impair$ or los$ or deteriorat$ or degenerat$ or complain$ or disturb$ or disorder$)).ti,ab.\n\n5. (forgetful$ or confused or confusion).ti,ab.\n\n6. MCI.ti,ab.\n\n7. ACMI.ti,ab.\n\n8. ARCD.ti,ab.\n\n9. SMC.ti,ab.\n\n10. CIND.ti,ab.\n\n11. BSF.ti,ab.\n\n12. AAMI.ti,ab.\n\n13. MD.ti,ab.\n\n14. LCD.ti,ab.\n\n15. QD.ti,ab.\n\n16. AACD.ti,ab.\n\n17. MNCD.ti,ab.\n\n18. MCD.ti,ab.\n\n19. (\"N-MCI\" or \"A-MCI\" or \"M-MCI\").ti,ab.\n\n20. or/1-19\n\n21. \"Positron emission tomography\".ti,ab.\n\n22. *Positron-Emission Tomography/\n\n23. PET.ti,ab.\n\n24. \"FDG-PET\".ti,ab.\n\n25. (\"PET-FDG\" or \"18f-fdg\" or \"fdg uptake\").ti,ab.\n\n26. fluodeoxyglucose*.ti,ab.\n\n27. fluorodexyglucose*.ti,ab.\n\n28. Fluorodeoxyglucose F18/\n\n29. or/21-28\n\n30. glucose metabolism.ti,ab.\n\n31. hypometabolism.ti,ab.\n\n32. cerebral metabolic rate.ti,ab.\n\n33. metabolic activity.ti,ab.\n\n34. hypoperfusion.ti,ab.\n\n35. (CMRgl or rCMRGlu).ti,ab.\n\n36. or/30-35\n\n37. 20 and 29 and 36\n\n38. disease progression/\n\n39. (dement* or alzheimer* or AD or MCI).ti,ab.\n\n40. exp *Dementia/\n\n41. 39 or 40\n\n42. 41 and 38\n\n43. 29 and 42\n\n44. 37 or 43\n\n45. exp Dementia/di\n\n46. 36 and 45\n\n47. 44 or 46",
"notes": "1. MEDLINE In-process and other non-indexed citations and MEDLINE 1950-present (January 2013) (Ovid SP)\n--\n\nhits retrieved\nJuly 2012: 1480\nJanuary 2013: 120",
"start_date": "1949-12-31",
"end_date": "2013-01-30",
"annotator_id": 1
},
{
"id": 91,
"document_id": 16,
"query": "1. exp Ovarian Neoplasms/\n2. (ovar* adj5 (cancer* or tumor* or tumour* or neoplas* or carcinoma* or adenocarcinoma* or malignan*)).mp.\n3. 1 or 2\n4. surgery.fs.\n5. exp Gynecologic Surgical Procedures/\n6. (cytoreduct* or debulk*).mp.\n7. 4 or 5 or 6\n8. Tranexamic Acid/\n9. (tranexamic acid or amchafibrin or anvitoff or cyclokapron or cyklokapron or exacyl or kabi 2161 or lysteda or spotof or t-amcha or tranhexamic acid or transamin or ugurol or xp12b).mp\n10. 8 or 9\n11. 3 and 7 and 10",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2015-05-30",
"annotator_id": 1
},
{
"id": 92,
"document_id": 47,
"query": "1 exp Gastrointestinal Neoplasms/\n\n2 exp Genital Neoplasms, Female/\n\n3 exp Ovarian Neoplasms/\n\n4 (gynaecological or gynecological).mp.\n\n5 (gastrointestin$ or gastro-intestin$ or intestin$ or bowel$ or colon$ or colorectal or rectal$ or stomach$ or gastric$).mp.\n\n6 (ovarian or ovary or ovaries).mp.\n\n7 (endometrial or endometrium).mp.\n\n8 (uterine or uterus or vaginal or vulvar or vagina$).mp.\n\n9 (cervix or cervical).mp.\n\n10 or/4-9\n\n11 Neoplasms/\n\n12 (neoplasm$ or cancer$ or carcinoma$ or tumor$ or tumour$).mp.\n\n13 or/11-12\n\n14 10 and 13\n\n15 1 or 2 or 3 or 14\n\n16 exp Intestinal Obstruction/\n\n17 ((bowel$ or intestin$ or gastrointestin$ or gastro-intestin$ or colon$ or colorect$ or retrosigmoid$) and (obstruct$ or blockage)).mp.\n\n18 or/16-17\n\n19 Colorectal Surgery/\n\n20 Surgical Procedures, Elective/\n\n21 (surgery or surgical$ or resect$).mp.\n\n22 19 or 20 or 21\n\n23 18 and 22",
"notes": "",
"start_date": "1996-12-31",
"end_date": "2015-06-29",
"annotator_id": 1
},
{
"id": 93,
"document_id": 39,
"query": "1 Pneumonia, Ventilator-Associated/\n2 vap.tw.\n3 exp Pneumonia/\n4 pneumon*.tw.\n5 3 or 4\n6 exp Respiration, Artificial/\n7 exp Ventilators, Mechanical/\n8 (ventilat* or respirat*).tw.\n9 or/6-8\n10 5 and 9\n11 1 or 2 or 10\n12 exp Posture/\n13 posture*.tw.\n14 Patient Positioning/\n15 position*.tw.\n16 Supine Position/\n17 supine*.tw.\n18 (semi-recumbent* or semi-recumbent*).tw.\n19 (semi-reclin* or semireclin*).tw.\n20 (semisupin* or semi-supin*).tw.\n21 half-sitting.tw.\n22 ((head* or bed or backrest) adj5 (elevat* or rais* or inclin* or angle)).tw.\n23 or/12-22\n24 11 and 23",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2015-10-30",
"annotator_id": 1
},
{
"id": 94,
"document_id": 79,
"query": "1 Patellofemoral Pain Syndrome/ (453)\n2 Patella/ or exp Knee Joint/ or Knee/ (56364)\n3 Arthralgia/ or Pain/ (112939)\n4 2 and 3 (3290)\n5 anterior knee pain.tw. (1003)\n6 ((patell* or femoropatell* or femoro-patell* or retropatell*) adj2 (pain or syndrome or dysfunction)).tw. (1766)\n7 ((lateral compression or lateral facet or lateral pressure or odd facet) adj2 syndrome).tw. (20)\n8 ((chondromalac* or chondropath* or chondrosis) adj2 (knee*1 or patell* or femoropatell* or femoro-patell* or retropatell*)).tw. (513)\n9 Chondromalacia Patellae/ (59)\n10 or/1,4-9 (5753)\n11 exp Exercise Therapy/ or exp Exercise/ (140226)\n12 (exercis* or strengthen* or stretch* or train* or physiotherapy or physical therap*).tw. (595688)\n13 or/11-12 (655179)\n14 Randomized controlled trial.pt. (373732)\n15 Controlled clinical trial.pt. (88369)\n16 randomized.ab. (293610)\n17 placebo.ab. (153908)\n18 Drug therapy.fs. (1698370)\n19 randomly.ab. (212608)\n20 trial.ab. (304899)\n21 groups.ab. (1353578)\n22 or/14-21 (3335964)\n23 exp Animals/ not Humans/ (3938734)\n24 22 not 23 (2860785)\n25 and/10,13,24 (343)",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2014-05-10",
"annotator_id": 1
},
{
"id": 95,
"document_id": 45,
"query": "1. exp Myocardial Ischemia/\n\n2. (myocard* adj5 (ischaemia or ischemia)).tw.\n\n3. (isch?emi* adj5 heart).tw.\n\n4. exp Coronary Artery Bypass/\n\n5. (myocard* adj5 infarct*).tw.\n\n6. (heart adj5 infarct*).tw.\n\n7. angina.tw.\n\n8. (coronary adj5 (disease* or bypass or thrombo* or angioplast*)).tw.\n\n9. exp Percutaneous Coronary Intervention/\n\n10. (percutaneous coronary adj2 (interven* or revascular*)).tw.\n\n11. exp Angioplasty/\n\n12. angioplast*.tw.\n\n13. ((coronary or arterial) adj4 dilat*).tw.\n\n14. endoluminal repair*.tw.\n\n15. exp Stents/\n\n16. stent*.tw.\n\n17. (pci or ptca).tw.\n\n18. exp Atherectomy/\n\n19. atherectom*.tw.\n\n20. acute coronary syndrom*.tw.\n\n21. or/1-8\n\n22. or/1-20\n\n23. exp Exercise Therapy/\n\n24. Sports/\n\n25. Physical Exertion/\n\n26. rehabilitat*.mp.\n\n27. (physical* adj5 (fit* or train* or therap* or activit*)).mp.\n\n28. exp Exercise/\n\n29. (train* adj5 (strength* or aerobic* or exercise*)).tw.\n\n30. ((exercise* or fitness) adj3 (treatment or intervent* or program*)).tw.\n\n31. exp Rehabilitation/\n\n32. kinesiotherap*.tw.\n\n33. \"Physical Education and Training\"/\n\n34. Patient Education as Topic/\n\n35. (patient* adj5 educat*).tw.\n\n36. ((lifestyle or life-style) adj5 (interven* or program* or treatment*)).tw.\n\n37. Self Care/\n\n38. (self adj5 (manag* or care or motivate*)).tw.\n\n39. exp Psychotherapy/\n\n40. psychotherap*.tw.\n\n41. (psycholog* adj5 intervent*).tw.\n\n42. Counseling/\n\n43. (counselling or counseling).tw.\n\n44. ((behavior* or behaviour*) adj5 (modify or modificat* or therap* or change)).tw.\n\n45. (psycho-educat* or psychoeducat*).tw.\n\n46. (motivat* adj5 (intervention or interv*)).tw.\n\n47. Health Education/\n\n48. (health adj5 educat*).tw.\n\n49. (psychosocial or psycho-social).tw.\n\n50. (cognitive adj2 behav*).tw.\n\n51. or/23-33\n\n52. or/23-50\n\n53. 21 and 51\n\n54. 22 and 52\n\n55. randomized controlled trial.pt.\n\n56. controlled clinical trial.pt.\n\n57. randomized.ab.\n\n58. placebo.ab.\n\n59. drug therapy.fs.\n\n60. randomly.ab.\n\n61. trial.ab.\n\n62. groups.ab.\n\n63. 55 or 56 or 57 or 58 or 59 or 60 or 61 or 62\n\n64. exp animals/ not humans.sh.\n\n65. 63 not 64\n\n66. 53 and 65\n\n67. 54 and 65\n\n68. 67 not 66\n\n69. (200912* or 2010* or 2011* or 2012* or 2013* or 2014*).ed.\n\n70. 66 and 69\n\n71. 68 or 70",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2014-07-01",
"annotator_id": 1
},
{
"id": 96,
"document_id": 38,
"query": "randomized controlled trial.pt.\n\ncontrolled clinical trial.pt.\n\nclinical trial.pt.\n\nexp clinical trial/\n\nRandom Allocation/\n\nDouble-Blind Method/\n\nSingle-Blind Method/\n\nComparative Study/\n\nevaluation studies/\n\nFollow-Up Studies/\n\ncross-over studies/\n\nResearch Design/\n\nPlacebos/\n\n(clinic$ adj25 trial$).tw.\n\n((single$ or double$ or treble$ or triple$) adj (mask$ or blind$)).tw.\n\n(control$ or prospective$ or volunteer$).tw.\n\n(latin adj square).tw.\n\nplacebo$.tw.\n\nrandom$.tw.\n\nor/1-19\n\n(animals not (humans and animals)).sh.\n\n20 not 21\n\ndorsalgia.ti,ab.\n\nexp Back Pain/\n\nbackache.ti,ab.\n\n(lumbar adj pain).ti,ab.\n\ncoccyx.ti,ab.\n\ncoccydynia.ti,ab.\n\nsciatica.ti,ab.\n\nexp sciatic neuropathy/\n\nspondylosis.ti,ab.\n\nlumbago.ti,ab.\n\nlow back pain.mp.\n\nor/23-33\n\n22 and 34\n\nexp Exercise/\n\nexercise$.mp.\n\ntrain$.mp.\n\n36 or 37 or 38\n\nspecific.mp.\n\nstabili$.mp.\n\nsegment$.mp.\n\nmultifidus.mp.\n\ntransversus.mp.\n\nmotor control.mp.\n\nor/40-45\n\n39 and 46\n\n35 and 47\n\nlimit 48 to yr=2014-2015\n\nlimit 48 to ed=20140516-20150402\n\n49 or 50",
"notes": "MEDLINE",
"start_date": "1945-12-31",
"end_date": "2014-04-01",
"annotator_id": 1
},
{
"id": 111,
"document_id": 75,
"query": "(zonisamid* or Exceglan or Excegram or Excegran or Zonegran).mp.\n\nexp Pain/\n\n(pain* or analges*).mp.\n\n2 or 3\n\n1 and 4\n\nrandomized controlled trial.pt.\n\nrandomized.ab.\n\nplacebo.ab.\n\ndrug therapy.fs.\n\nrandomly.ab.\n\ntrial.ab.\n\ngroups.ab.\n\n6 or 7 or 8 or 9 or 10 or 11 or 12\n\n5 and 13 (43)",
"notes": "",
"start_date": "1945-12-31",
"end_date": "2014-07-31",
"annotator_id": 1
},
{
"id": 97,
"document_id": 38,
"query": "randomized controlled trial.pt.\n\ncontrolled clinical trial.pt.\n\nclinical trial.pt.\n\nexp clinical trial/\n\nRandom Allocation/\n\nDouble-Blind Method/\n\nSingle-Blind Method/\n\nComparative Study/\n\nevaluation studies/\n\nFollow-Up Studies/\n\ncross-over studies/\n\nResearch Design/\n\nPlacebos/\n\n(clinic$ adj25 trial$).tw.\n\n((single$ or double$ or treble$ or triple$) adj (mask$ or blind$)).tw.\n\n(control$ or prospective$ or volunteer$).tw.\n\n(latin adj square).tw.\n\nplacebo$.tw.\n\nrandom$.tw.\n\nor/1-19\n\n(animals not (humans and animals)).sh.\n\n20 not 21\n\ndorsalgia.ti,ab.\n\nexp Back Pain/\n\nbackache.ti,ab.\n\n(lumbar adj pain).ti,ab.\n\ncoccyx.ti,ab.\n\ncoccydynia.ti,ab.\n\nsciatica.ti,ab.\n\nexp sciatic neuropathy/\n\nspondylosis.ti,ab.\n\nlumbago.ti,ab.\n\nlow back pain.mp.\n\nor/23-33\n\n22 and 34\n\nexp Exercise/\n\nexercise$.mp.\n\ntrain$.mp.\n\n36 or 37 or 38\n\nspecific.mp.\n\nstabili$.mp.\n\nsegment$.mp.\n\nmultifidus.mp.\n\ntransversus.mp.\n\nmotor control.mp.\n\nor/40-45\n\n39 and 46\n\n35 and 47",
"notes": "MEDLINE In-Process & Other Non-Indexed Citations",
"start_date": "1945-12-31",
"end_date": "2014-04-01",
"annotator_id": 1
},
{
"id": 98,
"document_id": 67,
"query": "1. RANDOMIZED CONTROLLED TRIAL.pt.\n2. CONTROLLED CLINICAL TRIAL.pt.\n3. RANDOMIZED CONTROLLED TRIALS.sh.\n4. RANDOM ALLOCATION. sh.\n5. DOUBLE BLIND METHOD. sh.\n6. SINGLE BLIND METHOD. sh.\n7. or/1 6\n8. ANIMALS. sh. not HUMAN. sh.\n9. 7 not 8",
"notes": "It was stated that this was not the most recent version of the article and so I clicked the button at the top of the review to view the current version. This is the same for any further queries (if any)",
"start_date": "1965-12-31",
"end_date": "2008-03-30",
"annotator_id": 1
},
{
"id": 99,
"document_id": 67,
"query": "10. CLINICAL TRIAL.pt.\n11. exp CLINICAL TRIALS/\n12. (clin$ adj25 trial$).ti,ab.\n13. ((singl$ or doubl$ or trebl$ or tripl$) adj25 (blind$ or mask$)).ti,ab.\n14. PLACEBOS.sh.\n15. placebo$.ti,ab.\n16. random$.ti,ab.\n17. RESEARCH DESIGN. sh.\n18. or /10- 17\n19. 18 not 8\n20. 19 not 9\n21. 9 or 20",
"notes": "Phase 2",
"start_date": "2008-03-30",
"end_date": "2015-07-30",
"annotator_id": 1
},
{
"id": 100,
"document_id": 67,
"query": "22. Brief intervention$.mp. [mp=title, subject heading word, abstract, instrumentation]\n23. Social norms intervention$.mp. [mp=title, subject heading word, abstract, instrumentation]\n24. (Social$ adj1 norms$).ti,ab.\n25. (norm$ adj1 feedback$).ti,ab.\n26. (person$ adj1 feedback$).ti,ab.\n27. (individual$ adj1 feedback$).ti,ab.\n28. (computer$ adj1 feedback$).ti,ab.\n29. (market$ adj1 campaign$).ti,ab.\n30. normative$.ti,ab.\n31. or/ 22 - 30\n32. Alcohol$.mp. [mp=title, subject heading word, abstract, instrumentation]\n33. Alcohol intervention$.mp. [mp=title, subject heading word, abstract, instrumentation]\n34. (alcohol$ adj1use$).ti,ab.\n35. (alcohol$ adj1 abuse$).ti,ab.\n36. (alcohol$ adj1 misuse$).ti,ab.\n37. (binge$ adj1 drink$).ti,ab.\n38. binge drink$.mp. [mp=title, subject heading word, abstract, instrumentation]\n39. alcohol use$.mp. [mp=title, subject heading word, abstract, instrumentation]\n40. alcohol abuse$.mp. [mp=title, subject heading word, abstract, instrumentation]\n41. alcohol misuse$.mp. [mp=title, subject heading word, abstract, instrumentation]\n42. (alcohol$ adj1 problems$).ti,ab.\n43. or/ 32-42\n44. Student$.mp[mp=title, subject heading word, abstract, instrumentation]\n45. (university$ adj1 student$).ti,ab.\n46. (college$ adj1 student$).ti,ab.\n47. education$.mp[mp=title, subject heading word, abstract, instrumentation]\n48. or/ 44-47\n44. 21 and 31 and 43 and 48",
"notes": "Alcohol, social norms and student terms",
"start_date": "2008-03-30",
"end_date": "2015-07-30",
"annotator_id": 1
},
{
"id": 101,
"document_id": 78,
"query": "incontinence, urinary, male, postprostatectomy, stimulation, electrical stimulation, biofeedback, pelvic muscle exercises, Kegel exercises, behavioural, behaviour, behavior, therapy, behaviour modification, therapy, physiotherapy, lifestyle, weight loss, caffeine, smoking, extracorporeal magnetic innervation, external penile compression devices, continence, bladder control, quality of life, randomised (randomized) controlled trial, evaluation, effectiveness, efficacy, outcomes",
"notes": "",
"start_date": "1965-12-31",
"end_date": "2006-01-30",
"annotator_id": 1
},
{
"id": 102,
"document_id": 25,
"query": "1. exp Fluorides, topical/\n\n(fluoride$ or fluor or \"PPM F\" or PPMF or APF or NAF or \"Sodium F\" or \"Amine F\" or SNF2 or \"Stannous F\" or \"phosphat$ F\" or \"acidulat$ F\" or \"acidulat$ fluor$\" or \"phosphat$ fluor$\" or fluorphosphat$ or \"amin$ fluor$\" or \"sodium$ fluor$\" or \"stannous$ fluor$\" or SMFP or MFP or monofluor$).mp.\n\n(varnish$ or lacquer$ or laquer$ or lacker$ or lakk$ or polyurethane$).mp.\n\n2 and 3\n\n1 or 4\n\n\"Pit and fissure sealants\"/\n\n(fiss$ adj6 seal$).mp.\n\n(dental adj3 seal$).mp.\n\n(compomer$ adj4 seal$).mp.\n\n(composite$ adj4 seal$).mp.\n\nexp Glass ionomer cements/\n\nexp Resin cements/\n\n(\"glass ionomer$\" or glassionomer$ or \"cermet cement$\" or \"resin cement$\").mp.\n\nor/6-13\n\n5 and 14",
"notes": "MEDLINE via Ovid search strategy",
"start_date": "1945-12-31",
"end_date": "2016-12-17",
"annotator_id": 1
},
{
"id": 103,
"document_id": 60,
"query": "(third stage OR post partum OR postpartum OR postnatal* OR post natal* OR \"Delivery, Obstetric/methods\"[MeSH]) AND (cord AND traction)",
"notes": "PubMed search strategy",
"start_date": "1965-12-31",
"end_date": "2014-01-28",
"annotator_id": 1
},
{
"id": 105,
"document_id": 114,
"query": "1 inflammatory demyelinating.tw. (3256)\n2 (polyradiculoneuropath$3 or polyneuropath$3).tw. (11425)\n3 polyneuropathies/ or Polyradiculoneuropathy/ (7927)\n4 (polyneuritis or polyradiculoneuritis).tw. (1715)\n5 2 or 3 or 4 (17287)\n6 Chronic disease/ or \"chronic disease\".mp. (239755)\n7 1 and 5 and 6 (322)\n8 chronic inflammatory demyelinating polyradiculoneuropathy.mp. or Polyradiculoneuropathy, Chronic Inflammatory Demyelinating/ (1215)\n9 cidp.tw. (1080)\n10 7 or 8 or 9 (1655)\n11 randomized controlled trial.pt. (397325)\n12 controlled clinical trial.pt. (90482)\n13 randomized.ab. (292700)\n14 placebo.ab. (154093)\n15 drug therapy.fs. (1776484)\n16 randomly.ab. (205493)\n17 trial.ab. (304804)\n18 groups.ab. (1306164)\n19 or/11-18 (3347080)\n20 exp animals/ not humans.sh. (4079851)\n21 19 not 20 (2851539)\n22 10 and 21 (508)\n23 Adrenocorticotropic Hormone/ (44964)\n24 exp Adrenal Cortex Hormones/ (345255)\n25 exp Steroids/ (722046)\n26 (prednisone$ or prednisolone$ or dexamethasone$ or corticosteroid$).mp. (195435)\n27 or/23-26 (854879)\n28 22 and 27 (221)\n29 remove duplicates from 28 (203)",
"notes": "The number after each query looks like the number of hits returned (and so shouldn't be included in the annotation).",
"start_date": "1965-12-31",
"end_date": "2014-10-30",
"annotator_id": 1
},
{
"id": 106,
"document_id": 23,
"query": "Renal Insufficiency/\n\nexp Renal Insufficiency, Chronic/\n\nKidney Diseases/\n\n(chronic kidney or chronic renal).tw.\n\n(CKF or CKD or CRF or CRD).tw.\n\n(pre-dialy$ or predialy$).tw.\n\nexp Uremia/\n\nur$emi$.tw.\n\nor/1-8\n\nexp Anemia/\n\n(anemia or anaemia).tw.\n\nor/10-11\n\nexp Erythropoietin/\n\n(EPO or darbepoetin$ or epoetin or erythropoietin).tw.\n\nor/13-14\n\nand/9,12,15",
"notes": "",
"start_date": null,
"end_date": "2015-06-28",
"annotator_id": 1
},
{
"id": 107,
"document_id": 63,
"query": "1. exp Hypothermia Induced/ or Circulatory Arrest Deep Hypothermia Induced/ or exp Hypothermia/ or exp Cryotherapy/ or exp Cryosurgery/ or (Cooling or Cryotherapy or Hypotherm*).mp. or (cryo* or cold).ti,ab.\n2. exp Neurosurgical Procedures/ or exp Neurosurgery/ or exp Brain Injuries/ or exp Intracranial Aneurysm/ or exp Intracranial Arterial Diseases/ or exp Cerebrovascular Disorders/ or exp Cerebrovascular Trauma/ or ((operat* or surg* or procedur*) adj5 (brain* or neuro*)).mp. or ((Brain or Cerebro*) adj5 (disord* or trauma* or damage)).mp. or Intracranial.mp.\n3. 1 and 2\n4. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or clinical trials as topic.sh. or randomly.ab. or trial.ti.) not (animals not (humans and animals)).sh.\n5. 3 and 4",
"notes": "",
"start_date": "1949-12-31",
"end_date": "2011-05-30",
"annotator_id": 1
},
{
"id": 108,
"document_id": 93,
"query": "exp Vitamin B Complex/\n\nthiamin$.tw.\n\nniacin$.tw.\n\nriboflavin$.tw.\n\nfolic acid.tw.\n\nfolate$.tw.\n\ncobalamin$.tw.\n\nbiotin$.tw.\n\nneurobion$.tw.\n\npantothenic acid.tw.\n\npyridox$.tw.\n\nbenfotiamine.tw.\n\nvitamin b.tw.\n\n(vitamin b1 or \"vitamin b 1\").tw.\n\n(vitamin b2 or \"vitamin b 2\").tw.\n\n(vitamin b3 or \"vitamin b 3\").tw.\n\n(vitamin b5 or \"vitamin b 5\").tw.\n\n(vitamin b6 or \"vitamin b 6\").tw.\n\n(vitamin b7 or \"vitamin b 7\").tw.\n\n(vitamin b9 or \"vitamin b 9\").tw.\n\n(vitamin b12 or \"vitamin b 12\").tw.\n\nor/1-21\n\nDiabetic Nephropathies/\n\n((diabetes or diabetic) and (kidney$ or renal or nephro$ or nephriti$ or glomerulo$ or albuminur$)).tw.\n\nor/23-24\n\nand/22,25",
"notes": "",
"start_date": "1949-12-31",
"end_date": "2012-10-28",
"annotator_id": 1
},
{
"id": 112,
"document_id": 91,
"query": "#1 \"Vestibular Diseases/nursing\"[Mesh] OR \"Vestibular Diseases/rehabilitation\"[Mesh] OR \"Vertigo/nursing\"[Mesh] OR \"Vertigo /rehabilitation\"[Mesh] OR \"Dizziness /nursing\"[Mesh] OR \"Dizziness /rehabilitation\"[Mesh]\n#2 (VESTIBULAR [tiab] AND (REHABILITATION [tiab] OR ADAPTATION [tiab] OR HABITUATION [tiab]))\n#3 “LABYRINTH DISEASES” [Mesh] OR “VESTIBULOCOCHLEAR NERVE DISEASES” OR (“PERILYMPH” [MeSH] AND “FISTULA” [Mesh])\n#4 Vertigo [tiab] OR vestibulopath* [tiab] OR dizziness [tiab] OR ((vestibular [ti] OR balance* [ti]) AND (disorder [ti] OR hypofunction* [ti] OR dysfunction* [ti] OR impair* [ti] OR disability* [ti] OR pathology* [ti] OR disturbance* [ti]))\n#5 NEUROLABYRINTHITIDES [tiab] OR NEUROLABYRINTHITIS [tiab] OR (VESTIBULAR [tiab] AND (NEURITIS [tiab] OR NEURONITIS [tiab] OR NEURITIDES[tiab]))\n#6 “VESTIBULAR NERVE” [tiab] AND (INFLAMMATION [tiab] OR COMPRESSION [tiab]))\n#7 “ACOUSTIC NEUROMA” [tiab] OR “ACOUSTIC NEURINOMA” [tiab] OR “ACOUSTIC NEURILEMOMA” [tiab] OR “ACOUSTIC NEURILEMMOMA” [tiab] OR “VESTIBULAR SCHWANNOMA” [tiab] OR “ACOUSTIC SCHWANNOMA” [tiab] OR “MOTION SENSITIVITY” [tiab] OR (VESTIBULAR [tiab] AND PERIPHERAL [tiab]) OR (PERILYMPHATIC [tiab] AND FISTULA [tiab]) OR MENIERE* [tiab] OR “ENDOLYMPHATIC HYDROPS” [tiab] OR (LABYRINTH* [tiab] AND HYDROPS [tiab]) OR (LABYRINTH* [tiab] AND SYNDROME [tiab]) OR BPV [tiab] OR BPPV [tiab] OR ANTBPPV [tiab]\n#8 #3 OR #4 OR #5 OR #6 OR #7\n#9 “OCCUPATIONAL THERAPY” [Mesh] OR “PHYSICAL THERAPY MODALITIES” [Mesh] OR “EXERCISE THERAPY” [Mesh] OR “EXERCISE” [Mesh] OR “HEAD MOVEMENTS” [Mesh] OR “VESTIBULAR FUNCTION TESTS” [Mesh]\n#10 REHABILITATION [tiab] OR PHYSIOTHERAP* [tiab] OR (PHYSICAL [tiab] AND THERAP* [tiab]) OR EXERCIS* [tiab] OR HABITUAT* [tiab] OR EPLEY [tiab] OR CANALITH [tiab] OR SEMONT [tiab] OR MANOEUVRE* [tiab] OR MANEUVER* [tiab] OR “RECONDITIONING ACTIVIT*” [tiab] OR POSTUROGRAPHY [tiab] OR “POSTURAL CONTROL” [tiab] OR PFPP [tiab] OR (SENSORY [tiab] AND RELEARN* [tiab]) OR (SENSORY [tiab] AND RETRAIN* [tiab]) OR (POSTURAL [tiab] AND RELEARN* [tiab]) OR (POSTURAL [tiab] AND RETRAIN* [tiab])\n#11 (POSITION* [tiab] AND PROCEDURE* [tiab]) OR (REPOSITION* [tiab] AND PROCEDURE* [tiab]) OR (REPOSITION* [tiab] AND PARTICLE* [tiab]) OR (VISUAL [tiab] AND VESTIBULAR [tiab]) OR (FUNCTIONAL [tiab] AND RETRAIN* [tiab]) OR (OCCUPATIONAL [tiab] AND RETRAIN* [tiab]) OR (OCCUPATIONAL [tiab] AND ADAPTATION [tiab]) OR (COOKSEY [tiab] AND CAWTHORNE [tiab])\n#12 #9 OR #10 OR #11\n#13 #8 AND #12\n#14 #1 OR #2 OR #13",
"notes": "",
"start_date": null,
"end_date": "2014-01-17",
"annotator_id": 1
},
{
"id": 113,
"document_id": 52,
"query": "1 first-rank.mp.\n\n2 first rank.mp.\n\n3 first?rank.mp.\n\n4 FRS$.mp.\n\n5 Schneiderian.mp\n\n6 1 or 2 or 3 or 4 or 5 (2137)",
"notes": "",
"start_date": null,
"end_date": "2011-04-12",
"annotator_id": 1
},
{
"id": 114,
"document_id": 52,
"query": "1 exp \"International Classification of Diseases\"/ (3305)\n\n2 exp \"Diagnostic and Statistical Manual of Mental Disorders\"/ (9349)\n\n3 \"Research Diagnostic Criteria\".mp. (1325)\n\n4 Feighner.mp. (147)\n\n5 ICD.mp. (13774)\n\n6 DSM.mp. (29660)\n\n7 RDC.mp. (1143)\n\n8 schneider.mp. (1529)\n\n9 bleuler.mp. (215)\n\n10 kraepelin.mp. (495)\n\n11 \"international pilot study of schizophrenia\".mp. (47)\n\n12 IPSS.mp. (1436)\n\n13 \"new haven schizophrenia index\".mp. (13)\n\n14 NHSI.mp. (14)\n\n15 \"present state examination\".mp. (412)\n\n16 PSE.mp. (1394)\n\n17 \"operational criteria\".mp. (431)\n\n18 (operation$ adj3 criteri$).mp. [mp=protocol supplementary concept, rare disease supplementary concept, title, original title, abstract, name of substance word, subject heading word, unique identifier] (1077)\n\n19 \"Sensitivity and Specificity\"/ (233760)\n\n20 Diagnosis/ (15703)\n\n21 1 or 2 or 3 or 4 or 5 or 6 or 7 or 8 or 9 or 10 or 11 or 12 or 13 or 14 or 15 or 16 or 17 or 18 or 19 or 20 (303793)\n\n22 exp Schizophrenia/ (74720)\n\n23 schizophren$.mp. (93319)\n\n24 22 or 23 (93528)\n\n25 21 and 24 (7401)\n\n26 (animals not (humans and animals)).sh. (3503422)\n\n27 25 not 26 (7398)",
"notes": "",
"start_date": null,
"end_date": "2011-05-31",
"annotator_id": 1
},
{
"id": 115,
"document_id": 52,
"query": " *schizophrenia/di [Diagnosis] (16918)",
"notes": "",
"start_date": null,
"end_date": "2011-07-16",
"annotator_id": 1
},
{
"id": 116,
"document_id": 69,
"query": "#1 (work[tw] OR works*[tw] OR work'*[tw] OR worka*[tw] OR worke*[tw] OR workg*[tw] OR worki*[tw] OR workl*[tw] OR workp*[tw] OR occupation*[tw] OR employe*[tw])\n\n#2 (effect*[tw] OR control[tw] OR controls*[tw] OR controla*[tw] OR controle*[tw] OR controli*[tw] OR controll*[tw] OR evaluat*[tw] OR intervention*[tw] OR program*[tw] OR compare*[tw])\n\n#3 (sedentary OR sitting) OR seated posture OR chair[tiab] OR desk[tiab] OR (office AND inactiv*)\n\n#4 (animals [mh] NOT humans [mh])\n\n#5 #1 AND #2 AND #3 NOT #4",
"notes": "",
"start_date": null,
"end_date": "2013-12-16",
"annotator_id": 1
},
{
"id": 117,
"document_id": 90,
"query": "Anemia (MeSH, ti, ab ) OR anaemia (ti, ab)\n\nMalaria (MeSH, ti,ab)\n\n1 OR 2\n\nChild* OR infant*(ti,ab)\n\n3 and 4\n\n(Intermittent preventive treatment) ti, ab\n\nIPT*(ti,ab)\n\n6 or 7\n\n5 and 8",
"notes": "",
"start_date": null,
"end_date": "2014-12-03",
"annotator_id": 1
},
{
"id": 118,
"document_id": 41,
"query": "Arteriovenous Shunt, Surgical/\n\nArteriovenous Fistula/\n\nBlood Vessel Prosthesis/\n\n(fistula$ or AVF$ or graft or grafts or shunt or shunts).tw.\n\n(vascular access or venous access).tw.\n\n(dialysis access or hemodialysis access or haemodialysis access).tw.\n\nor/1-6\n\nRenal Dialysis/\n\nexp Hemofiltration/\n\ndialysis.tw.\n\n(predialysis or pre-dialysis).tw.\n\n(hemodialysis or haemodialysis).tw.\n\n(hemofiltration or haemofiltration).tw.\n\n(hemodiafiltration or haemodiafiltration).tw.\n\nRenal Insufficiency/\n\nexp Renal Insufficiency, Chronic/\n\n(kidney failure or kidney disease or renal failure or renal disease).tw.\n\n(CKD or CKF or CRD or CRF or ESKD or ESKF or ESRD or ESRF).tw.\n\nor/8-18\n\nConstriction, Pathologic/\n\nConstriction/\n\nGraft Occlusion Vascular/\n\nThrombosis/\n\n(stenosis or stenoses or stenosed or stenotic or restenos*).tw.\n\n(thrombosis or thrombosed or thrombotic).tw.\n\n(occlud* or occlusion or obstruct*).tw.\n\nor/20-26\n\nAngioplasty/\n\nAngioplasty, Balloon/\n\nexp Angioplasty, Laser/\n\nBalloon Dilation/\n\nangioplasty.tw.\n\nballoon dilation.tw.\n\nPTA.tw.\n\nEndovascular Procedures/\n\nexp Stents/\n\nImplants, Artificial/\n\n(endovascular treatment* or endovascular procedure* or endoluminal repair or endovascular surgery*).tw.\n\n(stent or stents or stenting).tw.\n\n(vein patch* or transposition* or interposition* or revision* or proximalization).tw.\n\n((pre-emptive or preemptive) adj (strateg* or correction*)).tw.\n\nor/28-41\n\nand/7,19,27,42",
"notes": "",
"start_date": null,
"end_date": "2015-11-29",
"annotator_id": 1
},
{
"id": 119,
"document_id": 89,
"query": "1. Pulmonary Ventilation/ or Ventilation/ or Positive-Pressure Respiration/ or Respiration, Artificial/ or Ventilators, Mechanical/ or High-Frequency Ventilation/ or High-Frequency Jet Ventilation/\n\n2. ((Pressure-controlled or volume-controlled) and ventilat*).mp. or ventilat*.ti.\n\n3. 1 or 2\n\n4. Respiratory Distress Syndrome, Adult/ or Respiratory Insufficiency/ or exp Severe Acute Respiratory Syndrome/ or Lung Injury/\n\n5. (acute respiratory failure or acute lung injury or (acute adj3 distress syndrome)).mp. or (ALI or ARDS).ti,ab.\n\n6. 5 or 4\n\n7. ((randomized controlled trial or controlled clinical trial).pt. or randomized.ab. or placebo.ab. or clinical trials as topic.sh. or randomly.ab. or trial.ti.) not (animals not (humans and animals)).sh.\n\n8. 7 and 6 and 3",
"notes": "",
"start_date": "1949-12-31",
"end_date": "2014-09-30",
"annotator_id": 1
},
{
"id": 120,
"document_id": 28,
"query": "1. randomized controlled trial.pt.\n2. (randomized or randomised).ab,ti.\n3. placebo.ab,ti.\n4. dt.fs.\n5. randomly.ab,ti.\n6. trial.ab,ti.\n7. groups.ab,ti.\n8. or/1-7\n9. exp animals/\n10. exp humans/\n11. 9 not (9 and 10)\n12. 8 not 11\n13. exp glaucoma/\n14. exp intraocular pressure/\n15. exp filtering surgery/\n16. trabeculectom$.tw.\n17. sclerostom$.tw.\n18. ((surg$ or filter$ or filtrat$) adj5 glaucoma$).tw.\n19. (surg$ adj5 intra?ocular pressure$).tw.\n20. or/13-19\n21. exp angiogenesis inhibitors/\n22. angiogenesis inducing agents/\n23. endothelial growth factors/\n24. exp vascular endothelial growth factors/\n25. (macugen$ or pegaptanib$ or lucentis$ or rhufab$ or ranibizumab$ or bevacizumab$ or avastin or or aflibercept$).tw.\n26. (anti adj2 VEGF$).tw.\n27. (endothelial adj2 growth adj2 factor$).tw.\n28. or/21-27\n29. 20 and 28\n30. 12 and 29",
"notes": "The search filter for trials at the beginning of the MEDLINE strategy is from the published paper by Glanville (Glanville 2006).",
"start_date": "1945-12-31",
"end_date": "2015-11-29",
"annotator_id": 1
},
{
"id": 121,
"document_id": 54,
"query": "procalcitonin.tw.\n\nprocalcitonin.nm.\n\nPCT.tw.\n\nor/1-3\n\nc-Reactive Protein/\n\nc-reactive protein.tw.\n\nCRP.tw.\n\nor/5-7\n\nBlood Sedimentation/\n\nerythrocyte sedimentation rate.tw.\n\nESR.tw.\n\nblood sedimentation.tw.\n\nor/9-12\n\nor/4,8,13\n\nTechnetium Tc 99m Dimercaptosuccinic Acid/\n\nDMSA.tw.\n\ndimercaptosuccin$.tw.\n\nscintigra$.tw.\n\nRadionuclide Imaging/\n\nSuccimer/du\n\nKidney/ri\n\nor/15-21\n\nor/14,22\n\nUrinary Tract Infections/\n\nPyelonephritis/\n\nurinary tract infection$.tw.\n\npyelonephritis.tw.\n\n(UTI or UTIs).tw.\n\nor/24-28\n\nand/23,29",
"notes": "",
"start_date": null,
"end_date": "2013-02-12",
"annotator_id": 1
},
{
"id": 155,
"document_id": 120,
"query": "1. randomised controlled trial.pt.\n\n2. controlled clinical trial.pt.\n\n3. randomised.ab.\n\n4. placebo.ab.\n\n5. clinical trials as topic.sh.\n\n6. randomly.ab.\n\n7. trial.ti.\n\n8. 1 or 2 or 3 or 4 or 5 or 6 or 7\n\n9. exp animals/ not humans.sh.\n\n10. 8 not 9\n\n11. (epilep$ or seizure$ or convuls$).tw.\n\n12. exp Epilepsy/\n\n13. exp Seizures/\n\n14. 11 or 12 or 13\n\n15.stiripentol.tw.\n\n16. Diacomit.tw.\n\n17.15 or 16\n\n18. 10 and 14 and 17",
"notes": "This strategy is based on the Cochrane Highly Sensitive Search Strategy for identifying randomised trials (Lefebvre 2011).",
"start_date": null,
"end_date": "2014-01-30",
"annotator_id": 1
},
{
"id": 122,
"document_id": 80,
"query": "1. exp arthritis, rheumatoid/\n2. (felty$ adj2 syndrome).tw.\n3. (caplan$ adj2 syndrome).tw.\n4. rheumatoid nodule.tw.\n5. (sjogren$ adj2 syndrome).tw.\n6. (sicca adj2 syndrome).tw.\n7. still$ disease.tw.\n8. bechterew$ disease.tw.\n9. (arthritis adj2 rheumat$).tw.\n10. or/1-9\n11. Antibodies, Monoclonal/\n12. Immunologic Factors/\n13. rituximab.tw.\n14. rituxan.tw.\n15. mabthera.tw.\n16. or/11-15\n17. 10 and 16\n18. clinical trial.pt.\n19. randomized.ab.\n20. placebo.ab.\n21. dt.fs.\n22. clinical trials/\n23. randomly.ab.\n24. trial.ti.\n25. groups.ab.\n26. or/18-25\n27. animals/\n28. humans/\n29. 27 and 28\n30. 27 not 29\n31. 26 not 30\n32. 17 and 31",
"notes": "",
"start_date": null,
"end_date": "2013-12-31",
"annotator_id": 1
},
{
"id": 123,
"document_id": 37,
"query": "1 exp Ovarian Neoplasms/\n2 (ovar* adj5 (cancer* or neoplas* or carcinom* or malignan* or tumor* or tumour*)).mp.\n3 1 or 2\n4 exp Surgical Procedures, Operative/\n5 surg*.mp.\n6 surgery.fs.\n7 4 or 5 or 6\n8 (interval or debulk* or cytoreduc* or secondary).mp.\n9 3 and 7 and 8\n10 randomized controlled trial.pt.\n11 controlled clinical trial.pt.\n12 randomized.ab.\n13 randomly.ab.\n14 trial.ab.\n15 groups.ab.\n16 10 or 11 or 12 or 13 or 14 or 15\n17 9 and 16",
"notes": "key: mp = title, original title, abstract, name of substance word, subject heading word\nfs = floating subheading\npt = publication type\nab = abstract\nsh = subject heading",
"start_date": "1965-12-31",
"end_date": "2008-06-29",
"annotator_id": 1
},
{
"id": 124,
"document_id": 66,
"query": "#1 exp Ethanol/ad, tu [Administration & Dosage, Therapeutic Use]\n\n#2 exp Acetic Acid/ad, tu [Administration & Dosage, Therapeutic Use]\n\n#3 exp Injections/\n\n#4 (((ethanol or alcohol or acetic acid or vinegar) and (inject* or ablati*)) or PEI or PAI or PAAI).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\n#5 #1 or #2 or #3 or #4\n\n#6 exp Liver Neoplasms/\n\n#7 (((liver or hepatic or hepatocellular or hepato-cellular) and (carcinom* or cancer* or neoplasm* or malign* or tumo*)) or HCC).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\n#8 #6 or #7\n\n#9 #5 and #8\n\n#10 (random* or blind* or placebo* or meta-analys*).mp. [mp=title, abstract, original title, name of substance word, subject heading word, keyword heading word, protocol supplementary concept word, rare disease supplementary concept word, unique identifier]\n\n#11 #9 and #10",
"notes": "MEDLINE (Ovid SP)",
"start_date": "1945-12-31",
"end_date": "2014-07-30",
"annotator_id": 1
},
{
"id": 125,
"document_id": 62,
"query": "1. exp OSTEOARTHRITIS/\n2. osteoarthr$.tw.\n3. (degenerative adj2 arthritis).tw.\n4. or/1-3\n5. exp CHONDROITIN/\n6. chondroitin.sh,rn,tw.\n7. 5 or 6\n8. 4 and 7\n9. randomized controlled trial.pt.\n10. controlled clinical trial.pt.\n11. randomized controlled trials.sh.\n12. random allocation.sh.\n13. double blind method.sh.\n14. single-blind method.sh.\n15. clinical trial.pt.\n16. clinical trials.sh.\n17. clinical trial.tw.\n18. ((singl$ or doubl$ or trebl$ or tripl$) and (mask$ or blind$)).tw.\n19. placebos.sh.\n20. placebo$.tw.\n21. random$.tw.\n22. Research Design/\n23. comparative study.sh.\n24. evaluation studies.sh.\n25. follow-up studies.sh.\n26. prospective studies.sh.\n27. control$.tw.\n28. prospectiv$.tw.\n29. volunteer$.tw.\n30. or/9-29\n31. (animal not human).mp.\n32. 30 not 31\n33. 8 and 32",
"notes": "No language or date restrictions were applied in the search for trials.",
"start_date": null,
"end_date": "2013-11-29",
"annotator_id": 1
},