-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
1424 lines (1409 loc) · 64.3 KB
/
data.js
File metadata and controls
1424 lines (1409 loc) · 64.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Raw CSV data processed into JavaScript
const rawData = [
{
"PMID": "40516907",
"Title": "Platform for Drug Testing and Studying Rapid-Onset Signaling and Induction of Cellular Phenotypes Ex Vivo",
"Authors": "Dworak H, Valdivieso K, Schädl B, Ruth Ring NA, Rozmaric T, Slezak P, Grillari J, Redl H, Ogrodnik M.",
"Citation": "J Invest Dermatol. 2025 Jun 12:S0022-202X(25)00560-3. doi: 10.1016/j.jid.2025.05.033. Online ahead of print.",
"FirstAuthor": "Dworak H",
"Journal": "J Invest Dermatol",
"PublicationYear": "2025",
"CreateDate": "2025/06/14",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1016/j.jid.2025.05.033"
},
{
"PMID": "40225119",
"Title": "Circulating miRNAs are associated with successful bone regeneration",
"Authors": "Frank JK, Kampleitner C, Heimel P, Leinfellner G, Hanetseder D, Sperger S, Frischer A, Schädl B, Tangl S, Lindner C, Gamauf J, Grillari-Voglauer R, O'Brien FJ, Pultar M, Redl H, Hackl M, Grillari J, Marolt Presen D.",
"Citation": "Front Bioeng Biotechnol. 2025 Mar 28;13:1527493. doi: 10.3389/fbioe.2025.1527493. eCollection 2025.",
"FirstAuthor": "Frank JK",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2025",
"CreateDate": "2025/04/14",
"PMCID": "PMC11985807",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2025.1527493"
},
{
"PMID": "40114270",
"Title": "The novel biomarker t(6)A accurately identified septic patients at admission but failed to predict outcome",
"Authors": "Osuchowski MF, Adamik B, Gozdzik W, Skalec T, Mascher D, Redl H, Zipperle J, Fritsch G, Voelckel W, Winkler MS, Moerer O, Schütz H, Mascher H.",
"Citation": "Crit Care. 2025 Mar 20;29(1):129. doi: 10.1186/s13054-025-05354-2.",
"FirstAuthor": "Osuchowski MF",
"Journal": "Crit Care",
"PublicationYear": "2025",
"CreateDate": "2025/03/21",
"PMCID": "PMC11924750",
"NIHMSID": "",
"DOI": "10.1186/s13054-025-05354-2"
},
{
"PMID": "40047248",
"Title": "Silk Fibroin-Based Hydrogels Supplemented with Decellularized Extracellular Matrix and Gelatin Facilitate 3D Bioprinting for Meniscus Tissue Engineering",
"Authors": "Fritz J, Moser AC, Otahal A, Redl H, Teuschl-Woller AH, Schneider KH, Nehrer S.",
"Citation": "Macromol Biosci. 2025 Jun;25(6):e2400515. doi: 10.1002/mabi.202400515. Epub 2025 Mar 6.",
"FirstAuthor": "Fritz J",
"Journal": "Macromol Biosci",
"PublicationYear": "2025",
"CreateDate": "2025/03/06",
"PMCID": "PMC12169504",
"NIHMSID": "",
"DOI": "10.1002/mabi.202400515"
},
{
"PMID": "39551765",
"Title": "Prolonged cultivation enhances the stimulatory activity of hiPSC mesenchymal progenitor-derived conditioned medium",
"Authors": "Marolt Presen D, Goeschl V, Hanetseder D, Ogrin L, Stetco AL, Tansek A, Pozenel L, Bruszel B, Mitulovic G, Oesterreicher J, Zipperle J, Schaedl B, Holnthoner W, Grillari J, Redl H.",
"Citation": "Stem Cell Res Ther. 2024 Nov 17;15(1):434. doi: 10.1186/s13287-024-03960-5.",
"FirstAuthor": "Marolt Presen D",
"Journal": "Stem Cell Res Ther",
"PublicationYear": "2024",
"CreateDate": "2024/11/17",
"PMCID": "PMC11572509",
"NIHMSID": "",
"DOI": "10.1186/s13287-024-03960-5"
},
{
"PMID": "39417424",
"Title": "Artificial intelligence in traumatology",
"Authors": "Breu R, Avelar C, Bertalan Z, Grillari J, Redl H, Ljuhar R, Quadlbauer S, Hausner T.",
"Citation": "Bone Joint Res. 2024 Oct 17;13(10):588-595. doi: 10.1302/2046-3758.1310.BJR-2023-0275.R3.",
"FirstAuthor": "Breu R",
"Journal": "Bone Joint Res",
"PublicationYear": "2024",
"CreateDate": "2024/10/17",
"PMCID": "PMC11484119",
"NIHMSID": "",
"DOI": "10.1302/2046-3758.1310.BJR-2023-0275.R3"
},
{
"PMID": "39121846",
"Title": "Guidelines for minimal information on cellular senescence experimentation in vivo",
"Authors": "Ogrodnik M, Carlos Acosta J, Adams PD, d'Adda di Fagagna F, Baker DJ, Bishop CL, Chandra T, Collado M, Gil J, Gorgoulis V, Gruber F, Hara E, Jansen-Dürr P, Jurk D, Khosla S, Kirkland JL, Krizhanovsky V, Minamino T, Niedernhofer LJ, Passos JF, Ring NAR, Redl H, Robbins PD, Rodier F, Scharffetter-Kochanek K, Sedivy JM, Sikora E, Witwer K, von Zglinicki T, Yun MH, Grillari J, Demaria M.",
"Citation": "Cell. 2024 Aug 8;187(16):4150-4175. doi: 10.1016/j.cell.2024.05.059.",
"FirstAuthor": "Ogrodnik M",
"Journal": "Cell",
"PublicationYear": "2024",
"CreateDate": "2024/08/09",
"PMCID": "PMC11790242",
"NIHMSID": "NIHMS2051282",
"DOI": "10.1016/j.cell.2024.05.059"
},
{
"PMID": "38764077",
"Title": "Synergistic effect of umbilical cord extracellular vesicles and rhBMP-2 to enhance the regeneration of a metaphyseal femoral defect in osteoporotic rats",
"Authors": "Deluca A, Wagner A, Heimel P, Deininger C, Wichlas F, Redl H, Rohde E, Tempfer H, Gimona M, Traweger A.",
"Citation": "Stem Cell Res Ther. 2024 May 20;15(1):144. doi: 10.1186/s13287-024-03755-8.",
"FirstAuthor": "Deluca A",
"Journal": "Stem Cell Res Ther",
"PublicationYear": "2024",
"CreateDate": "2024/05/19",
"PMCID": "PMC11103988",
"NIHMSID": "",
"DOI": "10.1186/s13287-024-03755-8"
},
{
"PMID": "38638321",
"Title": "Single molecule studies of dynamic platelet interactions with endothelial cells",
"Authors": "Hauser F, Naderer C, Priglinger E, Peterbauer A, Fischer MB, Redl H, Jacak J.",
"Citation": "Front Bioeng Biotechnol. 2024 Apr 3;12:1372807. doi: 10.3389/fbioe.2024.1372807. eCollection 2024.",
"FirstAuthor": "Hauser F",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2024",
"CreateDate": "2024/04/19",
"PMCID": "PMC11025363",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2024.1372807"
},
{
"PMID": "37600321",
"Title": "Engineering of extracellular matrix from human iPSC-mesenchymal progenitors to enhance osteogenic capacity of human bone marrow stromal cells independent of their age",
"Authors": "Hanetseder D, Levstek T, Teuschl-Woller AH, Frank JK, Schaedl B, Redl H, Marolt Presen D.",
"Citation": "Front Bioeng Biotechnol. 2023 Aug 2;11:1214019. doi: 10.3389/fbioe.2023.1214019. eCollection 2023.",
"FirstAuthor": "Hanetseder D",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2023",
"CreateDate": "2023/08/21",
"PMCID": "PMC10434254",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2023.1214019"
},
{
"PMID": "37510998",
"Title": "Pulsed Electromagnetic Fields (PEMF)-Physiological Response and Its Potential in Trauma Treatment",
"Authors": "Flatscher J, Pavez Loriè E, Mittermayr R, Meznik P, Slezak P, Redl H, Slezak C.",
"Citation": "Int J Mol Sci. 2023 Jul 8;24(14):11239. doi: 10.3390/ijms241411239.",
"FirstAuthor": "Flatscher J",
"Journal": "Int J Mol Sci",
"PublicationYear": "2023",
"CreateDate": "2023/07/29",
"PMCID": "PMC10379303",
"NIHMSID": "",
"DOI": "10.3390/ijms241411239"
},
{
"PMID": "37189661",
"Title": "Ischemia Impaired Wound Healing Model in the Rat-Demonstrating Its Ability to Test Proangiogenic Factors",
"Authors": "Hofmann AT, Slezak P, Neumann S, Ferguson J, Redl H, Mittermayr R.",
"Citation": "Biomedicines. 2023 Mar 28;11(4):1043. doi: 10.3390/biomedicines11041043.",
"FirstAuthor": "Hofmann AT",
"Journal": "Biomedicines",
"PublicationYear": "2023",
"CreateDate": "2023/05/16",
"PMCID": "PMC10135779",
"NIHMSID": "",
"DOI": "10.3390/biomedicines11041043"
},
{
"PMID": "37098351",
"Title": "The p-rpS6-zone delineates wounding responses and the healing process",
"Authors": "Ring NAR, Dworak H, Bachmann B, Schädl B, Valdivieso K, Rozmaric T, Heimel P, Fischer I, Klinaki E, Gutasi A, Schuetzenberger K, Leinfellner G, Ferguson J, Drechsler S, Mildner M, Schosserer M, Slezak P, Meyuhas O, Gruber F, Grillari J, Redl H, Ogrodnik M.",
"Citation": "Dev Cell. 2023 Jun 5;58(11):981-992.e6. doi: 10.1016/j.devcel.2023.04.001. Epub 2023 Apr 24.",
"FirstAuthor": "Ring NAR",
"Journal": "Dev Cell",
"PublicationYear": "2023",
"CreateDate": "2023/04/25",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1016/j.devcel.2023.04.001"
},
{
"PMID": "36982967",
"Title": "Wavelength-Dependent Effects of Photobiomodulation for Wound Care in Diabetic Wounds",
"Authors": "Dungel P, Sutalo S, Slezak C, Keibl C, Schädl B, Schnidar H, Metzger M, Meixner B, Hartmann J, Oesterreicher J, Redl H, Slezak P.",
"Citation": "Int J Mol Sci. 2023 Mar 20;24(6):5895. doi: 10.3390/ijms24065895.",
"FirstAuthor": "Dungel P",
"Journal": "Int J Mol Sci",
"PublicationYear": "2023",
"CreateDate": "2023/03/29",
"PMCID": "PMC10054229",
"NIHMSID": "",
"DOI": "10.3390/ijms24065895"
},
{
"PMID": "36290335",
"Title": "Bone Graft Packing and Its Association with Bone Regeneration in Maxillary Sinus Floor Augmentations: Histomorphometric Analysis of Human Biopsies",
"Authors": "Reich KM, Beck F, Heimel P, Lettner S, Redl H, Ulm C, Tangl S.",
"Citation": "Biology (Basel). 2022 Sep 30;11(10):1431. doi: 10.3390/biology11101431.",
"FirstAuthor": "Reich KM",
"Journal": "Biology (Basel)",
"PublicationYear": "2022",
"CreateDate": "2022/10/27",
"PMCID": "PMC9598793",
"NIHMSID": "",
"DOI": "10.3390/biology11101431"
},
{
"PMID": "36257968",
"Title": "Generation and maturation of human iPSC-derived 3D organotypic cardiac microtissues in long-term culture",
"Authors": "Ergir E, Oliver-De La Cruz J, Fernandes S, Cassani M, Niro F, Pereira-Sousa D, Vrbský J, Vinarský V, Perestrelo AR, Debellis D, Vadovičová N, Uldrijan S, Cavalieri F, Pagliari S, Redl H, Ertl P, Forte G.",
"Citation": "Sci Rep. 2022 Oct 18;12(1):17409. doi: 10.1038/s41598-022-22225-w.",
"FirstAuthor": "Ergir E",
"Journal": "Sci Rep",
"PublicationYear": "2022",
"CreateDate": "2022/10/18",
"PMCID": "PMC9579206",
"NIHMSID": "",
"DOI": "10.1038/s41598-022-22225-w"
},
{
"PMID": "36231032",
"Title": "Effects of Endochondral and Intramembranous Ossification Pathways on Bone Tissue Formation and Vascularization in Human Tissue-Engineered Grafts",
"Authors": "Bernhard JC, Marolt Presen D, Li M, Monforte X, Ferguson J, Leinfellner G, Heimel P, Betti SL, Shu S, Teuschl-Woller AH, Tangl S, Redl H, Vunjak-Novakovic G.",
"Citation": "Cells. 2022 Sep 29;11(19):3070. doi: 10.3390/cells11193070.",
"FirstAuthor": "Bernhard JC",
"Journal": "Cells",
"PublicationYear": "2022",
"CreateDate": "2022/10/14",
"PMCID": "PMC9564153",
"NIHMSID": "",
"DOI": "10.3390/cells11193070"
},
{
"PMID": "36053026",
"Title": "Muscle-Specific Micro-Ribonucleic Acids miR-1-3p, miR-133a-3p, and miR-133b Reflect Muscle Regeneration After Single-Dose Zoledronic Acid Following Rotator Cuff Repair in a Rodent Chronic Defect Model",
"Authors": "Schanda JE, Heher P, Weigl M, Drechsler S, Schädl B, Prueller J, Kocijan R, Heuberer PR, Hackl M, Muschitz C, Grillari J, Redl H, Feichtinger X, Fialka C, Mittermayr R.",
"Citation": "Am J Sports Med. 2022 Oct;50(12):3355-3367. doi: 10.1177/03635465221119507. Epub 2022 Sep 2.",
"FirstAuthor": "Schanda JE",
"Journal": "Am J Sports Med",
"PublicationYear": "2022",
"CreateDate": "2022/09/02",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1177/03635465221119507"
},
{
"PMID": "35935507",
"Title": "Tips and Tricks and Clinical Outcome of Cryopreserved Human Amniotic Membrane Application for the Management of Medication-Related Osteonecrosis of the Jaw (MRONJ): A Pilot Study",
"Authors": "Odet S, Meyer C, Gaudet C, Weber E, Quenot J, Derruau S, Laurence S, Bompy L, Girodon M, Chatelain B, Mauprivez C, Brenet E, Kerdjoudj H, Zwetyenga N, Marchetti P, Hatzfeld AS, Toubeau D, Pouthier F, Lafarge X, Redl H, Fenelon M, Fricain JC, Di Pietro R, Ledouble C, Gualdi T, Parmentier AL, Louvrier A, Gindraux F.",
"Citation": "Front Bioeng Biotechnol. 2022 Jul 22;10:936074. doi: 10.3389/fbioe.2022.936074. eCollection 2022.",
"FirstAuthor": "Odet S",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2022",
"CreateDate": "2022/08/08",
"PMCID": "PMC9355383",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2022.936074"
},
{
"PMID": "35884935",
"Title": "Effects of Extracorporeal Shockwave Therapy on Functional Recovery and Circulating miR-375 and miR-382-5p after Subacute and Chronic Spinal Cord Contusion Injury in Rats",
"Authors": "Ashmwe M, Posa K, Rührnößl A, Heinzel JC, Heimel P, Mock M, Schädl B, Keibl C, Couillard-Despres S, Redl H, Mittermayr R, Hercher D.",
"Citation": "Biomedicines. 2022 Jul 7;10(7):1630. doi: 10.3390/biomedicines10071630.",
"FirstAuthor": "Ashmwe M",
"Journal": "Biomedicines",
"PublicationYear": "2022",
"CreateDate": "2022/07/27",
"PMCID": "PMC9313454",
"NIHMSID": "",
"DOI": "10.3390/biomedicines10071630"
},
{
"PMID": "35669058",
"Title": "Changes in Elastic Moduli of Fibrin Hydrogels Within the Myogenic Range Alter Behavior of Murine C2C12 and Human C25 Myoblasts Differently",
"Authors": "Tomasch J, Maleiner B, Heher P, Rufin M, Andriotis OG, Thurner PJ, Redl H, Fuchs C, Teuschl-Woller AH.",
"Citation": "Front Bioeng Biotechnol. 2022 May 20;10:836520. doi: 10.3389/fbioe.2022.836520. eCollection 2022.",
"FirstAuthor": "Tomasch J",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2022",
"CreateDate": "2022/06/07",
"PMCID": "PMC9164127",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2022.836520"
},
{
"PMID": "35472291",
"Title": "The role of senescence in cellular plasticity: Lessons from regeneration and development and implications for age-related diseases",
"Authors": "Ring NAR, Valdivieso K, Grillari J, Redl H, Ogrodnik M.",
"Citation": "Dev Cell. 2022 May 9;57(9):1083-1101. doi: 10.1016/j.devcel.2022.04.005. Epub 2022 Apr 25.",
"FirstAuthor": "Ring NAR",
"Journal": "Dev Cell",
"PublicationYear": "2022",
"CreateDate": "2022/04/26",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1016/j.devcel.2022.04.005"
},
{
"PMID": "35189712",
"Title": "Engineering of Tracheal Grafts Based on Recellularization of Laser-Engraved Human Airway Cartilage Substrates",
"Authors": "Baranovskii D, Demner J, Nürnberger S, Lyundup A, Redl H, Hilpert M, Pigeot S, Krasheninnikov M, Krasilnikova O, Klabukov I, Parshin V, Martin I, Lardinois D, Barbero A.",
"Citation": "Cartilage. 2022 Jan-Mar;13(1):19476035221075951. doi: 10.1177/19476035221075951.",
"FirstAuthor": "Baranovskii D",
"Journal": "Cartilage",
"PublicationYear": "2022",
"CreateDate": "2022/02/22",
"PMCID": "PMC9137320",
"NIHMSID": "",
"DOI": "10.1177/19476035221075951"
},
{
"PMID": "35008718",
"Title": "Enhanced BMP-2-Mediated Bone Repair Using an Anisotropic Silk Fibroin Scaffold Coated with Bone-like Apatite",
"Authors": "Deininger C, Wagner A, Heimel P, Salzer E, Vila XM, Weißenbacher N, Grillari J, Redl H, Wichlas F, Freude T, Tempfer H, Teuschl-Woller AH, Traweger A.",
"Citation": "Int J Mol Sci. 2021 Dec 28;23(1):283. doi: 10.3390/ijms23010283.",
"FirstAuthor": "Deininger C",
"Journal": "Int J Mol Sci",
"PublicationYear": "2021",
"CreateDate": "2022/01/11",
"PMCID": "PMC8745248",
"NIHMSID": "",
"DOI": "10.3390/ijms23010283"
},
{
"PMID": "34986173",
"Title": "Improved biomechanics in experimental chronic rotator cuff repair after shockwaves is not reflected by bone microarchitecture",
"Authors": "Feichtinger X, Heimel P, Tangl S, Keibl C, Nürnberger S, Schanda JE, Hercher D, Kocijan R, Redl H, Grillari J, Fialka C, Mittermayr R.",
"Citation": "PLoS One. 2022 Jan 5;17(1):e0262294. doi: 10.1371/journal.pone.0262294. eCollection 2022.",
"FirstAuthor": "Feichtinger X",
"Journal": "PLoS One",
"PublicationYear": "2022",
"CreateDate": "2022/01/05",
"PMCID": "PMC8730430",
"NIHMSID": "",
"DOI": "10.1371/journal.pone.0262294"
},
{
"PMID": "34963684",
"Title": "Author Correction: Quality control methods in musculoskeletal tissue engineering: from imaging to biosensors",
"Authors": "Zuncheddu D, Della Bella E, Schwab A, Petta D, Rocchitta G, Generelli S, Kurth F, Parrilli A, Verrier S, Rau JV, Fosca M, Maioli M, Serra PA, Alini M, Redl H, Grad S, Basoli V.",
"Citation": "Bone Res. 2021 Dec 28;9(1):51. doi: 10.1038/s41413-021-00174-w.",
"FirstAuthor": "Zuncheddu D",
"Journal": "Bone Res",
"PublicationYear": "2021",
"CreateDate": "2021/12/29",
"PMCID": "PMC8714806",
"NIHMSID": "",
"DOI": "10.1038/s41413-021-00174-w"
},
{
"PMID": "34861104",
"Title": "Gelatin methacryloyl as environment for chondrocytes and cell delivery to superficial cartilage defects",
"Authors": "Hölzl K, Fürsatz M, Göcerler H, Schädl B, Žigon-Branc S, Markovic M, Gahleitner C, Hoorick JV, Van Vlierberghe S, Kleiner A, Baudis S, Pauschitz A, Redl H, Ovsianikov A, Nürnberger S.",
"Citation": "J Tissue Eng Regen Med. 2022 Feb;16(2):207-222. doi: 10.1002/term.3273. Epub 2021 Dec 15.",
"FirstAuthor": "Hölzl K",
"Journal": "J Tissue Eng Regen Med",
"PublicationYear": "2022",
"CreateDate": "2021/12/03",
"PMCID": "PMC9299930",
"NIHMSID": "",
"DOI": "10.1002/term.3273"
},
{
"PMID": "34757193",
"Title": "A data-driven model of the role of energy in sepsis",
"Authors": "Ramirez-Zuniga I, Rubin JE, Swigon D, Redl H, Clermont G.",
"Citation": "J Theor Biol. 2022 Jan 21;533:110948. doi: 10.1016/j.jtbi.2021.110948. Epub 2021 Oct 30.",
"FirstAuthor": "Ramirez-Zuniga I",
"Journal": "J Theor Biol",
"PublicationYear": "2022",
"CreateDate": "2021/11/10",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1016/j.jtbi.2021.110948"
},
{
"PMID": "34714165",
"Title": "Novel Human Placenta-Based Extract for Vascularization Strategies in Tissue Engineering",
"Authors": "Hackethal J, Weihs AM, Karner L, Metzger M, Dungel P, Hennerbichler S, Redl H, Teuschl-Woller AH.",
"Citation": "Tissue Eng Part C Methods. 2021 Nov;27(11):616-632. doi: 10.1089/ten.TEC.2021.0173.",
"FirstAuthor": "Hackethal J",
"Journal": "Tissue Eng Part C Methods",
"PublicationYear": "2021",
"CreateDate": "2021/10/29",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1089/ten.TEC.2021.0173"
},
{
"PMID": "34707086",
"Title": "Quality control methods in musculoskeletal tissue engineering: from imaging to biosensors",
"Authors": "Zuncheddu D, Della Bella E, Schwab A, Petta D, Rocchitta G, Generelli S, Kurth F, Parrilli A, Verrier S, Rau JV, Fosca M, Maioli M, Serra PA, Alini M, Redl H, Grad S, Basoli V.",
"Citation": "Bone Res. 2021 Oct 27;9(1):46. doi: 10.1038/s41413-021-00167-9.",
"FirstAuthor": "Zuncheddu D",
"Journal": "Bone Res",
"PublicationYear": "2021",
"CreateDate": "2021/10/28",
"PMCID": "PMC8551153",
"NIHMSID": "",
"DOI": "10.1038/s41413-021-00167-9"
},
{
"PMID": "34505620",
"Title": "Establishment of a human three-dimensional chip-based chondro-synovial coculture joint model for reciprocal cross talk studies in arthritis research",
"Authors": "Rothbauer M, Byrne RA, Schobesberger S, Olmos Calvo I, Fischer A, Reihs EI, Spitz S, Bachmann B, Sevelda F, Holinka J, Holnthoner W, Redl H, Toegel S, Windhager R, Kiener HP, Ertl P.",
"Citation": "Lab Chip. 2021 Oct 26;21(21):4128-4143. doi: 10.1039/d1lc00130b.",
"FirstAuthor": "Rothbauer M",
"Journal": "Lab Chip",
"PublicationYear": "2021",
"CreateDate": "2021/09/10",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1039/d1lc00130b"
},
{
"PMID": "34488680",
"Title": "Antibody seroprevalence and rate of asymptomatic infections with SARS-CoV-2 in Austrian hospital personnel",
"Authors": "Leister I, Ponocny-Seliger E, Kollaritsch H, Dungel P, Holzer B, Grillari J, Redl H, Ponocny I, Wilfing C, Aigner L, Exner M, Stainer M, Hackl M, Hausner T, Mittermayr R, Schaden W.",
"Citation": "BMC Infect Dis. 2021 Sep 6;21(1):915. doi: 10.1186/s12879-021-06586-7.",
"FirstAuthor": "Leister I",
"Journal": "BMC Infect Dis",
"PublicationYear": "2021",
"CreateDate": "2021/09/07",
"PMCID": "PMC8419821",
"NIHMSID": "",
"DOI": "10.1186/s12879-021-06586-7"
},
{
"PMID": "33919955",
"Title": "Cre mRNA Is Not Transferred by EVs from Endothelial and Adipose-Derived Stromal/Stem Cells during Vascular Network Formation",
"Authors": "Schneider J, Pultar M, Oesterreicher J, Bobbili MR, Mühleder S, Priglinger E, Redl H, Spittler A, Grillari J, Holnthoner W.",
"Citation": "Int J Mol Sci. 2021 Apr 14;22(8):4050. doi: 10.3390/ijms22084050.",
"FirstAuthor": "Schneider J",
"Journal": "Int J Mol Sci",
"PublicationYear": "2021",
"CreateDate": "2021/04/30",
"PMCID": "PMC8070972",
"NIHMSID": "",
"DOI": "10.3390/ijms22084050"
},
{
"PMID": "33849592",
"Title": "Lugol's solution but not formaldehyde affects bone microstructure and bone mineral density parameters at the insertion site of the rotator cuff in rats",
"Authors": "Feichtinger X, Heimel P, Keibl C, Hercher D, Schanda JE, Kocijan R, Redl H, Grillari J, Fialka C, Mittermayr R.",
"Citation": "J Orthop Surg Res. 2021 Apr 13;16(1):254. doi: 10.1186/s13018-021-02394-6.",
"FirstAuthor": "Feichtinger X",
"Journal": "J Orthop Surg Res",
"PublicationYear": "2021",
"CreateDate": "2021/04/14",
"PMCID": "PMC8045387",
"NIHMSID": "",
"DOI": "10.1186/s13018-021-02394-6"
},
{
"PMID": "33660785",
"Title": "Evaluation of BMP2/miRNA co-expression systems for potent therapeutic efficacy in bone-tissue regeneration",
"Authors": "Brenner TK, Posa-Markaryan K, Hercher D, Sperger S, Heimel P, Keibl C, Nürnberger S, Grillari J, Redl H, Hacobian A.",
"Citation": "Eur Cell Mater. 2021 Mar 3;41:245-268. doi: 10.22203/eCM.v041a18.",
"FirstAuthor": "Brenner TK",
"Journal": "Eur Cell Mater",
"PublicationYear": "2021",
"CreateDate": "2021/03/04",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.22203/eCM.v041a18"
},
{
"PMID": "33598975",
"Title": "Longitudinal Changes of Circulating miRNAs During Bisphosphonate and Teriparatide Treatment in an Animal Model of Postmenopausal Osteoporosis",
"Authors": "Weigl M, Kocijan R, Ferguson J, Leinfellner G, Heimel P, Feichtinger X, Pietschmann P, Grillari J, Zwerina J, Redl H, Hackl M.",
"Citation": "J Bone Miner Res. 2021 Jun;36(6):1131-1144. doi: 10.1002/jbmr.4276. Epub 2021 Mar 10.",
"FirstAuthor": "Weigl M",
"Journal": "J Bone Miner Res",
"PublicationYear": "2021",
"CreateDate": "2021/02/18",
"PMCID": "PMC8252367",
"NIHMSID": "",
"DOI": "10.1002/jbmr.4276"
},
{
"PMID": "33594992",
"Title": "Crosslinking strategies for silk fibroin hydrogels: promising biomedical materials",
"Authors": "Farokhi M, Aleemardani M, Solouk A, Mirzadeh H, Teuschl AH, Redl H.",
"Citation": "Biomed Mater. 2021 Feb 17;16(2):022004. doi: 10.1088/1748-605X/abb615.",
"FirstAuthor": "Farokhi M",
"Journal": "Biomed Mater",
"PublicationYear": "2021",
"CreateDate": "2021/02/17",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1088/1748-605X/abb615"
},
{
"PMID": "33483297",
"Title": "Repopulation of decellularised articular cartilage by laser-based matrix engraving",
"Authors": "Nürnberger S, Schneider C, Keibl C, Schädl B, Heimel P, Monforte X, Teuschl AH, Nalbach M, Thurner PJ, Grillari J, Redl H, Wolbank S.",
"Citation": "EBioMedicine. 2021 Feb;64:103196. doi: 10.1016/j.ebiom.2020.103196. Epub 2021 Jan 19.",
"FirstAuthor": "Nürnberger S",
"Journal": "EBioMedicine",
"PublicationYear": "2021",
"CreateDate": "2021/01/23",
"PMCID": "PMC7910698",
"NIHMSID": "",
"DOI": "10.1016/j.ebiom.2020.103196"
},
{
"PMID": "33339453",
"Title": "Polymer Based Bioadhesive Biomaterials for Medical Application-A Perspective of Redefining Healthcare System Management",
"Authors": "Saha N, Saha N, Sáha T, Toksoy Öner E, Brodnjak UV, Redl H, von Byern J, Sáha P.",
"Citation": "Polymers (Basel). 2020 Dec 16;12(12):3015. doi: 10.3390/polym12123015.",
"FirstAuthor": "Saha N",
"Journal": "Polymers (Basel)",
"PublicationYear": "2020",
"CreateDate": "2020/12/19",
"PMCID": "PMC7766067",
"NIHMSID": "",
"DOI": "10.3390/polym12123015"
},
{
"PMID": "32715479",
"Title": "The vertical course of bone regeneration in maxillary sinus floor augmentations: A histomorphometric analysis of human biopsies",
"Authors": "Beck F, Reich KM, Lettner S, Heimel P, Tangl S, Redl H, Ulm C.",
"Citation": "J Periodontol. 2021 Feb;92(2):263-272. doi: 10.1002/JPER.19-0656. Epub 2020 Aug 19.",
"FirstAuthor": "Beck F",
"Journal": "J Periodontol",
"PublicationYear": "2021",
"CreateDate": "2020/07/28",
"PMCID": "PMC7984041",
"NIHMSID": "",
"DOI": "10.1002/JPER.19-0656"
},
{
"PMID": "32543880",
"Title": "Zoledronic Acid Substantially Improves Bone Microarchitecture and Biomechanical Properties After Rotator Cuff Repair in a Rodent Chronic Defect Model",
"Authors": "Schanda JE, Keibl C, Heimel P, Monforte X, Tangl S, Feichtinger X, Teuschl AH, Baierl A, Muschitz C, Redl H, Fialka C, Mittermayr R.",
"Citation": "Am J Sports Med. 2020 Jul;48(9):2151-2160. doi: 10.1177/0363546520926471. Epub 2020 Jun 16.",
"FirstAuthor": "Schanda JE",
"Journal": "Am J Sports Med",
"PublicationYear": "2020",
"CreateDate": "2020/06/17",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1177/0363546520926471"
},
{
"PMID": "32426347",
"Title": "Stiffness Matters: Fine-Tuned Hydrogel Elasticity Alters Chondrogenic Redifferentiation",
"Authors": "Bachmann B, Spitz S, Schädl B, Teuschl AH, Redl H, Nürnberger S, Ertl P.",
"Citation": "Front Bioeng Biotechnol. 2020 Apr 30;8:373. doi: 10.3389/fbioe.2020.00373. eCollection 2020.",
"FirstAuthor": "Bachmann B",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2020",
"CreateDate": "2020/05/20",
"PMCID": "PMC7204401",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2020.00373"
},
{
"PMID": "32350368",
"Title": "SVF-derived extracellular vesicles carry characteristic miRNAs in lipedema",
"Authors": "Priglinger E, Strohmeier K, Weigl M, Lindner C, Auer D, Gimona M, Barsch M, Jacak J, Redl H, Grillari J, Sandhofer M, Hackl M, Wolbank S.",
"Citation": "Sci Rep. 2020 Apr 29;10(1):7211. doi: 10.1038/s41598-020-64215-w.",
"FirstAuthor": "Priglinger E",
"Journal": "Sci Rep",
"PublicationYear": "2020",
"CreateDate": "2020/05/01",
"PMCID": "PMC7190633",
"NIHMSID": "",
"DOI": "10.1038/s41598-020-64215-w"
},
{
"PMID": "32338217",
"Title": "Evaluation of BMP-2 Minicircle DNA for Enhanced Bone Engineering and Regeneration",
"Authors": "Zimmermann A, Hercher D, Regner B, Frischer A, Sperger S, Redl H, Hacobian A.",
"Citation": "Curr Gene Ther. 2020;20(1):55-63. doi: 10.2174/1566523220666200427121350.",
"FirstAuthor": "Zimmermann A",
"Journal": "Curr Gene Ther",
"PublicationYear": "2020",
"CreateDate": "2020/04/28",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.2174/1566523220666200427121350"
},
{
"PMID": "32326741",
"Title": "Mechanical Stimulation of Fibroblasts by Extracorporeal Shock Waves: Modulation of Cell Activation and Proliferation Through a Transient Proinflammatory Milieu",
"Authors": "Basoli V, Chaudary S, Cruciani S, Santaniello S, Balzano F, Ventura C, Redl H, Dungel P, Maioli M.",
"Citation": "Cell Transplant. 2020 Jan-Dec;29:963689720916175. doi: 10.1177/0963689720916175.",
"FirstAuthor": "Basoli V",
"Journal": "Cell Transplant",
"PublicationYear": "2020",
"CreateDate": "2020/04/25",
"PMCID": "PMC7586264",
"NIHMSID": "",
"DOI": "10.1177/0963689720916175"
},
{
"PMID": "32279758",
"Title": "A novel fluorescent hydroxyapatite based on iron quantum cluster template to enhance osteogenic differentiation",
"Authors": "Hashemi N, Vaezi Z, Khanmohammadi S, Naderi Sohi A, Masoumi S, Hruschka V, Wolbank S, Redl H, Marolt Presen D, Naderi-Manesh H.",
"Citation": "Mater Sci Eng C Mater Biol Appl. 2020 Jun;111:110775. doi: 10.1016/j.msec.2020.110775. Epub 2020 Feb 24.",
"FirstAuthor": "Hashemi N",
"Journal": "Mater Sci Eng C Mater Biol Appl",
"PublicationYear": "2020",
"CreateDate": "2020/04/14",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1016/j.msec.2020.110775"
},
{
"PMID": "32097542",
"Title": "The course of recovery of locomotor function over a 10-week observation period in a rat model of femoral nerve resection and autograft repair",
"Authors": "Heinzel JC, Hercher D, Redl H.",
"Citation": "Brain Behav. 2020 Apr;10(4):e01580. doi: 10.1002/brb3.1580. Epub 2020 Feb 25.",
"FirstAuthor": "Heinzel JC",
"Journal": "Brain Behav",
"PublicationYear": "2020",
"CreateDate": "2020/02/26",
"PMCID": "PMC7177579",
"NIHMSID": "",
"DOI": "10.1002/brb3.1580"
},
{
"PMID": "32096088",
"Title": "Stromal vascular fraction cells as biologic coating of mesh for hernia repair",
"Authors": "Guillaume O, Pérez-Köhler B, Schädl B, Keibl C, Saxenhuber N, Heimel P, Priglinger E, Wolbank S, Redl H, Petter-Puchner A, Fortelny R.",
"Citation": "Hernia. 2020 Dec;24(6):1233-1243. doi: 10.1007/s10029-020-02135-4. Epub 2020 Feb 24.",
"FirstAuthor": "Guillaume O",
"Journal": "Hernia",
"PublicationYear": "2020",
"CreateDate": "2020/02/26",
"PMCID": "PMC7701131",
"NIHMSID": "",
"DOI": "10.1007/s10029-020-02135-4"
},
{
"PMID": "31983073",
"Title": "Motor and sensory Schwann cell phenotype commitment is diminished by extracorporeal shockwave treatment in vitro",
"Authors": "Hercher D, Redl H, Schuh CMAP.",
"Citation": "J Peripher Nerv Syst. 2020 Mar;25(1):32-43. doi: 10.1111/jns.12365. Epub 2020 Feb 5.",
"FirstAuthor": "Hercher D",
"Journal": "J Peripher Nerv Syst",
"PublicationYear": "2020",
"CreateDate": "2020/01/27",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1111/jns.12365"
},
{
"PMID": "31959032",
"Title": "Tissue reactions to polyethylene glycol and glutaraldehyde-based surgical sealants in a rabbit aorta model",
"Authors": "Slezak P, Klang A, Ferguson J, Monforte X, Schmidt P, Bauder B, Url A, Osuchowski M, Redl H, Spazierer D, Gulle H.",
"Citation": "J Biomater Appl. 2020 Apr;34(9):1330-1340. doi: 10.1177/0885328219900078. Epub 2020 Jan 20.",
"FirstAuthor": "Slezak P",
"Journal": "J Biomater Appl",
"PublicationYear": "2020",
"CreateDate": "2020/01/22",
"PMCID": "PMC7088439",
"NIHMSID": "",
"DOI": "10.1177/0885328219900078"
},
{
"PMID": "31828066",
"Title": "Mesenchymal Stromal Cell-Based Bone Regeneration Therapies: From Cell Transplantation and Tissue Engineering to Therapeutic Secretomes and Extracellular Vesicles",
"Authors": "Marolt Presen D, Traweger A, Gimona M, Redl H.",
"Citation": "Front Bioeng Biotechnol. 2019 Nov 27;7:352. doi: 10.3389/fbioe.2019.00352. eCollection 2019.",
"FirstAuthor": "Marolt Presen D",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2019",
"CreateDate": "2019/12/13",
"PMCID": "PMC6890555",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2019.00352"
},
{
"PMID": "31683019",
"Title": "MicroRNA levels in bone and blood change during bisphosphonate and teriparatide therapy in an animal model of postmenopausal osteoporosis",
"Authors": "Kocijan R, Weigl M, Skalicky S, Geiger E, Ferguson J, Leinfellner G, Heimel P, Pietschmann P, Grillari J, Redl H, Hackl M.",
"Citation": "Bone. 2020 Feb;131:115104. doi: 10.1016/j.bone.2019.115104. Epub 2019 Nov 1.",
"FirstAuthor": "Kocijan R",
"Journal": "Bone",
"PublicationYear": "2020",
"CreateDate": "2019/11/05",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1016/j.bone.2019.115104"
},
{
"PMID": "31278420",
"Title": "Purinergic P2Y(2) receptors modulate endothelial sprouting",
"Authors": "Mühleder S, Fuchs C, Basílio J, Szwarc D, Pill K, Labuda K, Slezak P, Siehs C, Pröll J, Priglinger E, Hoffmann C, Junger WG, Redl H, Holnthoner W.",
"Citation": "Cell Mol Life Sci. 2020 Mar;77(5):885-901. doi: 10.1007/s00018-019-03213-2. Epub 2019 Jul 5.",
"FirstAuthor": "Mühleder S",
"Journal": "Cell Mol Life Sci",
"PublicationYear": "2020",
"CreateDate": "2019/07/07",
"PMCID": "PMC11104991",
"NIHMSID": "",
"DOI": "10.1007/s00018-019-03213-2"
},
{
"PMID": "31206305",
"Title": "Substantial Biomechanical Improvement by Extracorporeal Shockwave Therapy After Surgical Repair of Rodent Chronic Rotator Cuff Tears",
"Authors": "Feichtinger X, Monforte X, Keibl C, Hercher D, Schanda J, Teuschl AH, Muschitz C, Redl H, Fialka C, Mittermayr R.",
"Citation": "Am J Sports Med. 2019 Jul;47(9):2158-2166. doi: 10.1177/0363546519854760. Epub 2019 Jun 17.",
"FirstAuthor": "Feichtinger X",
"Journal": "Am J Sports Med",
"PublicationYear": "2019",
"CreateDate": "2019/06/18",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1177/0363546519854760"
},
{
"PMID": "31139050",
"Title": "Spatiotemporal Differences in Gene Expression Between Motor and Sensory Autografts and Their Effect on Femoral Nerve Regeneration in the Rat",
"Authors": "Hercher D, Kerbl M, Schuh CMAP, Heinzel J, Gal L, Stainer M, Schmidhammer R, Hausner T, Redl H, Nógrádi A, Hacobian A.",
"Citation": "Front Cell Neurosci. 2019 May 8;13:182. doi: 10.3389/fncel.2019.00182. eCollection 2019.",
"FirstAuthor": "Hercher D",
"Journal": "Front Cell Neurosci",
"PublicationYear": "2019",
"CreateDate": "2019/05/30",
"PMCID": "PMC6519304",
"NIHMSID": "",
"DOI": "10.3389/fncel.2019.00182"
},
{
"PMID": "31111776",
"Title": "Neuroectodermal Stem Cells Grafted into the Injured Spinal Cord Induce Both Axonal Regeneration and Morphological Restoration via Multiple Mechanisms",
"Authors": "Pajer K, Bellák T, Redl H, Nógrádi A.",
"Citation": "J Neurotrauma. 2019 Nov 1;36(21):2977-2990. doi: 10.1089/neu.2018.6332. Epub 2019 Jul 10.",
"FirstAuthor": "Pajer K",
"Journal": "J Neurotrauma",
"PublicationYear": "2019",
"CreateDate": "2019/05/22",
"PMCID": "PMC6791485",
"NIHMSID": "",
"DOI": "10.1089/neu.2018.6332"
},
{
"PMID": "31049044",
"Title": "Iodine-Enhanced Micro-CT Imaging of Soft Tissue on the Example of Peripheral Nerve Regeneration",
"Authors": "Heimel P, Swiadek NV, Slezak P, Kerbl M, Schneider C, Nürnberger S, Redl H, Teuschl AH, Hercher D.",
"Citation": "Contrast Media Mol Imaging. 2019 Mar 27;2019:7483745. doi: 10.1155/2019/7483745. eCollection 2019.",
"FirstAuthor": "Heimel P",
"Journal": "Contrast Media Mol Imaging",
"PublicationYear": "2019",
"CreateDate": "2019/05/04",
"PMCID": "PMC6458925",
"NIHMSID": "",
"DOI": "10.1155/2019/7483745"
},
{
"PMID": "30907197",
"Title": "An Efficacy Comparison of Two Hemostatic Agents in a Porcine Liver Bleeding Model: Gelatin/Thrombin Flowable Matrix versus Collagen/Thrombin Powder",
"Authors": "Slezak P, Keibl C, Redl H, Labahn D, Gulle H.",
"Citation": "J Invest Surg. 2020 Oct;33(9):828-838. doi: 10.1080/08941939.2019.1571130. Epub 2019 Mar 24.",
"FirstAuthor": "Slezak P",
"Journal": "J Invest Surg",
"PublicationYear": "2020",
"CreateDate": "2019/03/26",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1080/08941939.2019.1571130"
},
{
"PMID": "30891456",
"Title": "Histomorphometric Analysis of Callus Formation Stimulated by Axial Dynamisation in a Standardised Ovine Osteotomy Model",
"Authors": "Reich KM, Tangl S, Heimel P, Lettner S, Ignatius A, Claes LE, Pfeil J, Janousek A, Redl H.",
"Citation": "Biomed Res Int. 2019 Feb 12;2019:4250940. doi: 10.1155/2019/4250940. eCollection 2019.",
"FirstAuthor": "Reich KM",
"Journal": "Biomed Res Int",
"PublicationYear": "2019",
"CreateDate": "2019/03/21",
"PMCID": "PMC6390264",
"NIHMSID": "",
"DOI": "10.1155/2019/4250940"
},
{
"PMID": "30793275",
"Title": "Adipose-tissue-derived therapeutic cells in their natural environment as an autologous cell therapy strategy: the microtissue-stromal vascular fraction",
"Authors": "Nürnberger S, Lindner C, Maier J, Strohmeier K, Wurzer C, Slezak P, Suessner S, Holnthoner W, Redl H, Wolbank S, Priglinger E.",
"Citation": "Eur Cell Mater. 2019 Feb 22;37:113-133. doi: 10.22203/eCM.v037a08.",
"FirstAuthor": "Nürnberger S",
"Journal": "Eur Cell Mater",
"PublicationYear": "2019",
"CreateDate": "2019/02/23",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.22203/eCM.v037a08"
},
{
"PMID": "30673752",
"Title": "Physical stimulation by REAC and BMP4/WNT-1 inhibitor synergistically enhance cardiogenic commitment in iPSCs",
"Authors": "Basoli V, Santaniello S, Rinaldi S, Fontani V, Pigliaru G, Wieser M, Strajeriu A, Castagna A, Redl H, Ventura C, Grillari R, Maioli M.",
"Citation": "PLoS One. 2019 Jan 23;14(1):e0211188. doi: 10.1371/journal.pone.0211188. eCollection 2019.",
"FirstAuthor": "Basoli V",
"Journal": "PLoS One",
"PublicationYear": "2019",
"CreateDate": "2019/01/24",
"PMCID": "PMC6343882",
"NIHMSID": "",
"DOI": "10.1371/journal.pone.0211188"
},
{
"PMID": "30653344",
"Title": "Osteointegration of a Novel Silk Fiber-Based ACL Scaffold by Formation of a Ligament-Bone Interface",
"Authors": "Teuschl AH, Tangl S, Heimel P, Schwarze UY, Monforte X, Redl H, Nau T.",
"Citation": "Am J Sports Med. 2019 Mar;47(3):620-627. doi: 10.1177/0363546518818792. Epub 2019 Jan 17.",
"FirstAuthor": "Teuschl AH",
"Journal": "Am J Sports Med",
"PublicationYear": "2019",
"CreateDate": "2019/01/18",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1177/0363546518818792"
},
{
"PMID": "30651735",
"Title": "Environmental Influences on Stem Cell Behavior",
"Authors": "Maioli M, Redl H, Stoddart MJ.",
"Citation": "Stem Cells Int. 2018 Dec 10;2018:7415460. doi: 10.1155/2018/7415460. eCollection 2018.",
"FirstAuthor": "Maioli M",
"Journal": "Stem Cells Int",
"PublicationYear": "2018",
"CreateDate": "2019/01/18",
"PMCID": "PMC6311709",
"NIHMSID": "",
"DOI": "10.1155/2018/7415460"
},
{
"PMID": "30590183",
"Title": "Repopulation of an auricular cartilage scaffold, AuriScaff, perforated with an enzyme combination",
"Authors": "Nürnberger S, Schneider C, van Osch GVM, Keibl C, Rieder B, Monforte X, Teuschl AH, Mühleder S, Holnthoner W, Schädl B, Gahleitner C, Redl H, Wolbank S.",
"Citation": "Acta Biomater. 2019 Mar 1;86:207-222. doi: 10.1016/j.actbio.2018.12.035. Epub 2018 Dec 25.",
"FirstAuthor": "Nürnberger S",
"Journal": "Acta Biomater",
"PublicationYear": "2019",
"CreateDate": "2018/12/28",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1016/j.actbio.2018.12.035"
},
{
"PMID": "30510589",
"Title": "Oxygen Tension Strongly Influences Metabolic Parameters and the Release of Interleukin-6 of Human Amniotic Mesenchymal Stromal Cells In Vitro",
"Authors": "Banerjee A, Lindenmair A, Steinborn R, Dumitrescu SD, Hennerbichler S, Kozlov AV, Redl H, Wolbank S, Weidinger A.",
"Citation": "Stem Cells Int. 2018 Oct 28;2018:9502451. doi: 10.1155/2018/9502451. eCollection 2018.",
"FirstAuthor": "Banerjee A",
"Journal": "Stem Cells Int",
"PublicationYear": "2018",
"CreateDate": "2018/12/05",
"PMCID": "PMC6230389",
"NIHMSID": "",
"DOI": "10.1155/2018/9502451"
},
{
"PMID": "30451865",
"Title": "Hydrostatic pressure-generated reactive oxygen species induce osteoarthritic conditions in cartilage pellet cultures",
"Authors": "Rieder B, Weihs AM, Weidinger A, Szwarc D, Nürnberger S, Redl H, Rünzler D, Huber-Gries C, Teuschl AH.",
"Citation": "Sci Rep. 2018 Nov 19;8(1):17010. doi: 10.1038/s41598-018-34718-8.",
"FirstAuthor": "Rieder B",
"Journal": "Sci Rep",
"PublicationYear": "2018",
"CreateDate": "2018/11/20",
"PMCID": "PMC6242959",
"NIHMSID": "",
"DOI": "10.1038/s41598-018-34718-8"
},
{
"PMID": "30410879",
"Title": "Microvascular Networks From Endothelial Cells and Mesenchymal Stromal Cells From Adipose Tissue and Bone Marrow: A Comparison",
"Authors": "Pill K, Melke J, Mühleder S, Pultar M, Rohringer S, Priglinger E, Redl HR, Hofmann S, Holnthoner W.",
"Citation": "Front Bioeng Biotechnol. 2018 Oct 25;6:156. doi: 10.3389/fbioe.2018.00156. eCollection 2018.",
"FirstAuthor": "Pill K",
"Journal": "Front Bioeng Biotechnol",
"PublicationYear": "2018",
"CreateDate": "2018/11/10",
"PMCID": "PMC6209673",
"NIHMSID": "",
"DOI": "10.3389/fbioe.2018.00156"
},
{
"PMID": "30407369",
"Title": "Effect of Coagulation Factor Concentrates on Markers of Endothelial Cell Damage in Experimental Hemorrhagic Shock",
"Authors": "Hofmann N, Zipperle J, Brettner F, Jafarmadar M, Ashmwe M, Keibl C, Ponschab M, Kipman U, Bahrami A, Redl H, Bahrami S, Fuhrmann V, Schöchl H.",
"Citation": "Shock. 2019 Nov;52(5):497-505. doi: 10.1097/SHK.0000000000001286.",
"FirstAuthor": "Hofmann N",
"Journal": "Shock",
"PublicationYear": "2019",
"CreateDate": "2018/11/09",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1097/SHK.0000000000001286"
},
{
"PMID": "30400796",
"Title": "A large animal model for standardized testing of bone regeneration strategies",
"Authors": "Ferguson JC, Tangl S, Barnewitz D, Genzel A, Heimel P, Hruschka V, Redl H, Nau T.",
"Citation": "BMC Vet Res. 2018 Nov 6;14(1):330. doi: 10.1186/s12917-018-1648-0.",
"FirstAuthor": "Ferguson JC",
"Journal": "BMC Vet Res",
"PublicationYear": "2018",
"CreateDate": "2018/11/08",
"PMCID": "PMC6220560",
"NIHMSID": "",
"DOI": "10.1186/s12917-018-1648-0"
},
{
"PMID": "30357680",
"Title": "Human Placenta Laminin-111 as a Multifunctional Protein for Tissue Engineering and Regenerative Medicine",
"Authors": "Hackethal J, Schuh CMAP, Hofer A, Meixner B, Hennerbichler S, Redl H, Teuschl AH.",
"Citation": "Adv Exp Med Biol. 2018;1077:3-17. doi: 10.1007/978-981-13-0947-2_1.",
"FirstAuthor": "Hackethal J",
"Journal": "Adv Exp Med Biol",
"PublicationYear": "2018",
"CreateDate": "2018/10/26",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1007/978-981-13-0947-2_1"
},
{
"PMID": "30356887",
"Title": "Small Force, Big Impact: Next Generation Organ-on-a-Chip Systems Incorporating Biomechanical Cues",
"Authors": "Ergir E, Bachmann B, Redl H, Forte G, Ertl P.",
"Citation": "Front Physiol. 2018 Oct 9;9:1417. doi: 10.3389/fphys.2018.01417. eCollection 2018.",
"FirstAuthor": "Ergir E",
"Journal": "Front Physiol",
"PublicationYear": "2018",
"CreateDate": "2018/10/26",
"PMCID": "PMC6190857",
"NIHMSID": "",
"DOI": "10.3389/fphys.2018.01417"
},
{
"PMID": "30295541",
"Title": "An overview of surgical sealant devices: current approaches and future trends",
"Authors": "Heher P, Ferguson J, Redl H, Slezak P.",
"Citation": "Expert Rev Med Devices. 2018 Oct;15(10):747-755. doi: 10.1080/17434440.2018.1526672. Epub 2018 Oct 9.",
"FirstAuthor": "Heher P",
"Journal": "Expert Rev Med Devices",
"PublicationYear": "2018",
"CreateDate": "2018/10/09",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1080/17434440.2018.1526672"
},
{
"PMID": "30292241",
"Title": "Correction to: The role of fibrinolysis inhibition in engineered vascular networks derived from endothelial cells and adipose-derived stem cells",
"Authors": "Mühleder S, Pill K, Schaupper M, Labuda K, Priglinger E, Hofbauer P, Charwat V, Marx U, Redl H, Holnthoner W.",
"Citation": "Stem Cell Res Ther. 2018 Oct 7;9(1):261. doi: 10.1186/s13287-018-1001-3.",
"FirstAuthor": "Mühleder S",
"Journal": "Stem Cell Res Ther",
"PublicationYear": "2018",
"CreateDate": "2018/10/08",
"PMCID": "PMC6174062",
"NIHMSID": "",
"DOI": "10.1186/s13287-018-1001-3"
},
{
"PMID": "30225655",
"Title": "Correction to: Minimum Quality Threshold in Pre-Clinical Sepsis Studies (MQTiPSS): an international expert consensus initiative for improvement of animal modeling in sepsis",
"Authors": "Osuchowski MF, Ayala A, Bahrami S, Bauer M, Boros M, Cavaillon JM, Chaudry IH, Coopersmith CM, Deutschman C, Drechsler S, Efron P, Frostell C, Fritsch G, Gozdzik W, Hellman J, Huber-Lang M, Inoue S, Knapp S, Kozlov AV, Libert C, Marshall JC, Moldawer LL, Radermacher P, Redl H, Remick DG, Singer M, Thiemermann C, Wang P, Wiersinga WJ, Xiao X, Zingarelli B.",
"Citation": "Infection. 2018 Oct;46(5):745-747. doi: 10.1007/s15010-018-1197-2.",
"FirstAuthor": "Osuchowski MF",
"Journal": "Infection",
"PublicationYear": "2018",
"CreateDate": "2018/09/19",
"PMCID": "PMC6182465",
"NIHMSID": "",
"DOI": "10.1007/s15010-018-1197-2"
},
{
"PMID": "30168006",
"Title": "A critical review of the in vitro and in vivo models for the evaluation of anti-infective meshes",
"Authors": "Guillaume O, Pérez Kohler B, Fortelny R, Redl H, Moriarty F, Richards RG, Eglin D, Petter Puchner A.",
"Citation": "Hernia. 2018 Dec;22(6):961-974. doi: 10.1007/s10029-018-1807-z. Epub 2018 Aug 28.",
"FirstAuthor": "Guillaume O",
"Journal": "Hernia",
"PublicationYear": "2018",
"CreateDate": "2018/09/01",
"PMCID": "",
"NIHMSID": "",
"DOI": "10.1007/s10029-018-1807-z"
},
{
"PMID": "30112605",
"Title": "Minimum quality threshold in pre-clinical sepsis studies (MQTiPSS): an international expert consensus initiative for improvement of animal modeling in sepsis",
"Authors": "Osuchowski MF, Ayala A, Bahrami S, Bauer M, Boros M, Cavaillon JM, Chaudry IH, Coopersmith CM, Deutschman C, Drechsler S, Efron P, Frostell C, Fritsch G, Gozdzik W, Hellman J, Huber-Lang M, Inoue S, Knapp S, Kozlov AV, Libert C, Marshall JC, Moldawer LL, Radermacher P, Redl H, Remick DG, Singer M, Thiemermann C, Wang P, Wiersinga WJ, Xiao X, Zingarelli B.",
"Citation": "Intensive Care Med Exp. 2018 Aug 14;6(1):26. doi: 10.1186/s40635-018-0189-y.",
"FirstAuthor": "Osuchowski MF",
"Journal": "Intensive Care Med Exp",
"PublicationYear": "2018",
"CreateDate": "2018/08/17",
"PMCID": "PMC6093828",
"NIHMSID": "",
"DOI": "10.1186/s40635-018-0189-y"
},
{
"PMID": "30106875",
"Title": "Minimum Quality Threshold in Pre-Clinical Sepsis Studies (MQTiPSS): An International Expert Consensus Initiative for Improvement of Animal Modeling in Sepsis",
"Authors": "Osuchowski MF, Ayala A, Bahrami S, Bauer M, Boros M, Cavaillon JM, Chaudry IH, Coopersmith CM, Deutschman CS, Drechsler S, Efron P, Frostell C, Fritsch G, Gozdzik W, Hellman J, Huber-Lang M, Inoue S, Knapp S, Kozlov AV, Libert C, Marshall JC, Moldawer LL, Radermacher P, Redl H, Remick DG, Singer M, Thiemermann C, Wang P, Wiersinga WJ, Xiao X, Zingarelli B.",
"Citation": "Shock. 2018 Oct;50(4):377-380. doi: 10.1097/SHK.0000000000001212.",
"FirstAuthor": "Osuchowski MF",
"Journal": "Shock",
"PublicationYear": "2018",
"CreateDate": "2018/08/15",
"PMCID": "PMC6133201",