forked from StefanoLambiase/stefanolambiase.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1153 lines (1012 loc) · 62.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<br/>
<br/>
<br/>
<title>Parinaz Tabari</title>
<meta name="description" content="Parinaz Tabari personal website">
<meta name="author" content="Parinaz Tabari">
<!-- Mobile-friendly -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Tooltips -->
<!-- Production version -->
<script src="https://unpkg.com/@popperjs/core@2"></script>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!-- Minimalist CSS -->
<link href="assets/css/minimalist-light-theme.css" rel="stylesheet" id="theme-link">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="assets/images/par.jpg">
</head>
<body>
<!-- User info -->
<header>
<div class="container">
<div class="row justify-content-lg-center" style="align-items: center;">
<div class="col-lg-3 text-center">
<img src="./assets/images/ParinazTabari.jpg" class="user-image rounded-circle" alt="CV Image">
</div>
<div class="col-lg-7">
<!-- Switch for dark/light mode -->
<h2 style="color:rgb(255, 0, 115); font-weight: bold">Parinaz Tabari</h2>
<br>
<p class="text-justify">
I was born in Shiraz, Iran, on June 27th, 1990. I earned my Bachelor's degree in <strong>Computer Software Engineering </strong> and, driven by my passion for the medical field, pursued a Master's degree in Medical Informatics. In 2014, I was admitted to <strong>Tehran University of Medical Sciences (TUMS)</strong>, achieving the 4th national rank in the entrance exam. During my master's studies, I focused on clinical decision support systems, particularly in determining the type of neonatal hyperbilirubinemia using machine learning techniques and fuzzy logic. Upon graduation, I joined <strong>University of Medical Sciences (SUMS)</strong> as a research assistant and medical informatics expert. My research there included studies on medical education and the impact of the COVID-19 pandemic on educational practices. Currently, I am pursuing a PhD in Computer Science at the <strong>University of Salerno, Italy</strong>. My research is centered on interoperability standards between healthcare systems, with a specific focus on FHIR (Fast Healthcare Interoperability Resources).
</p>
<div class="d-flex justify-content-end">
<ul class="list-inline social-icons">
<li class="list-inline-item"><a href="https://github.com/parinazt" target="_blank"><em class="fab fa-github"></em></a></li>
<!-- li class="list-inline-item"><a href="https://www.linkedin.com/in/parinaz-tabari-0a7a0949/" target="_blank"><em class="fab fa-linkedin-in"></em></a></li-->
<li class="list-inline-item"><a href="https://orcid.org/0000-0002-6228-8711" target="_blank"><em class="fab fa-orcid"></em></a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- Content -->
<section>
<!-- ./content-switch -->
<div class="d-flex justify-content-center">
<div class="list-group list-group-horizontal-md" id="content-tabs" role="tablist">
<a class="list-group-item small text-uppercase active" id="list-about-me" data-toggle="list" href="#about-me" role="tab">About me</a>
<a class="list-group-item small text-uppercase" id="list-experience-list" data-toggle="list" href="#experience" role="tab">Experience</a>
<a class="list-group-item small text-uppercase" id="list-projects-list" data-toggle="list" href="#publications" role="tab">Publications</a>
</div>
</div>
<!-- ./content-switch -->
<!-- ./content-body -->
<div class="container pt-5 tab-content">
<!-- ./about-me-panel -->
<div class="tab-pane fade show active" id="about-me" role="tabpanel">
<div class="row justify-content-lg-center">
<div class="col-lg">
<div>
<!-- Personal-info -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=2.0">
<title>Center LinkedIn Badge</title>
<style>
.center-container {
display: flex;
justify-content: center;
align-items: center;
height: 50vh; /* This makes the container take up the full height of the viewport */
}
</style>
</head>
<body>
<div class="center-container">
<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="small" data-theme="light" data-type="VERTICAL" data-vanity="parinaz-tabari-0a7a0949" data-version="v1">
<a class="badge-base__link LI-simple-link" href="https://it.linkedin.com/in/parinaz-tabari-0a7a0949?trk=profile-badge"></a>
</div>
</div>
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script>
</body>
</html>
<br/>
<h3 class="text-inside-line text-center" style="color:rgba(0, 0, 255, 0.579); font-weight: bold"><span>Personal information</span></h3>
<div style="margin-top: 40px">
<div class="row justify-content-lg-center">
<div class="col text-end"><span>Name</span></div>
<div class="col text-start"><span class="text-muted">Parinaz Tabari</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-end"><span>Birthday</span></div>
<div class="col text-start"><span class="text-muted">27/06/1990</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-end"><span>Place of birth</span></div>
<div class="col text-start"><span class="text-muted">Shiraz, Iran</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-end"><span>Nationality</span></div>
<div class="col text-start"><span class="text-muted">Iranian</span></div>
</div>
</div>
</div>
<div style="margin-top: 70px;">
<!-- contact-info -->
<h3 class="text-inside-line text-center" style="color:rgba(0, 0, 255, 0.579); font-weight: bold"><span>Contact information</span></h3>
<div style="margin-top: 40px">
<div class="row justify-content-lg-center">
<div class="col text-end"><span>E-mail</span></div>
<div class="col text-start"><span class="text-muted">[email protected]</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-end"><span>Institutional E-mail</span></div>
<div class="col text-start"><span class="text-muted">[email protected]</span></div>
</div>
</div>
</div>
<div style="margin-top: 70px;">
<!-- Research Interests -->
<h3 class="text-inside-line text-center" style="color:rgba(0, 0, 255, 0.579); font-weight: bold"><span>Research Interests</span></h3>
<div style="margin-top: 40px">
<div class="row justify-content-lg-center">
<div class="col text-center"><span class="text-muted">Healthcare information systems</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-center"><span class="text-muted">Electronic Health Records (EHRs)</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-center"><span class="text-muted">Personal Health Records (PHRs)</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-center"><span class="text-muted">Human-Computer Interaction (HCI)</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-center"><span class="text-muted">Interoperability of healthcare systems</span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-center"><span class="text-muted">Fast Healthcare Interoperability resources (FHIR) </span></div>
</div>
<div class="row justify-content-lg-center">
<div class="col text-center"><span class="text-muted">Medical education</span></div>
</div>
<br>
<div class="row justify-content-lg-center">
<div class="col text-end"><span>Curriculum Vitae -></span></div>
<div class="col text-start"><span class="text-muted"><a class="text-muted" href="/assets/downloads/CV-ParinazTabari-October-2024.pdf" download>download</a></span></div>
</div>
<center><a class="text-muted" href="https://scholar.google.com/citations?user=LlEDVQgAAAAJ&hl=en" align="center">Google Scholar profile</a></center>
</div>
</div>
<div style="margin-top: 70px; margin-bottom: 100px;">
<!-- Hobbies-info -->
<h3 class="text-inside-line text-center" style="color:rgba(0, 0, 255, 0.579); font-weight: bold"><span>Hobbies & Interests</span></h3>
<div style="margin-top: 40px">
<div class="row justify-content-lg-center">
<ul class="list-inline h5 text-center" style="font-size: 170%">
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Languages">📑</li>
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Podcasts">📱</li>
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Books">📖</li>
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Sports">🏃🏻♀️</li>
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Cooking">🍕</li>
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Music">🎶</li>
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Movies">📽️</li>
<li class="list-inline-item px-2" data-toggle="tooltip" data-placement="bottom" title="Astronomy and Big Bang Series:)">🪐</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ./experience-panel-->
<div class="tab-pane fade show" id="experience" role="tabpanel">
<div class="row justify-content-lg-center">
<div class="col-lg">
<!-- Timeline -->
<div class="timeline-container">
<!-- GE Workshop -->
<div class="timeline-block timeline-block-left">
<div class="timeline-content">
<h3 class="timeline-h3" style="color:rgba(84, 20, 174, 0.579); font-weight: bold">PhD Student</h3>
<span class="timeline-span">Department of Computer Science, University of Salerno, Italy</span>
<p class="text-muted small mb-3">2021-present</p>
<p class="timeline-p text-justify" align="justify">
I am a member of Computer Languages and User Experience Laboratory <stron>(CLUELab)</strong>. We are investigating the possible solutions for maintaining interoperability between healthcare systems such as Electronic Health Records (EHRs), Personal Health Records (PHRs), Hospital Information Systems (HISs), and so on.
</p>
</div>
<div class="marker"></div>
</div>
<!-- work experience -->
<div class="timeline-block timeline-block-right">
<div class="timeline-content">
<h3 class="timeline-h3" style="color:rgba(84, 20, 174, 0.579); font-weight: bold">Researcher and Medical Informatics Expert</h3>
<span class="timeline-span">Shiraz University of Medical Sciences (SUMS)</span>
<p class="text-muted small mb-3">2018-2021</p>
<p class="timeline-p text-justify" align="justify"> I worked in the Education Development office (EDO) at Shiraz University of Medical Sciences, and in parallel, I had a part-time research job as a research assistant and reviewer in medical education research center at Education Development Center (EDC) of SUMS.</p>
</div>
<div class="marker"></div>
</div>
<!-- Master Degree -->
<div class="timeline-block timeline-block-left">
<div class="timeline-content">
<h3 class="timeline-h3" style="color:rgba(84, 20, 174, 0.579); font-weight: bold">Master's Degree</h3>
<span class="timeline-span">Tehran University of Medical Sciences (TUMS)</span>
<p class="text-muted small mb-3">2014-2016</p>
<p class="timeline-p text-justify" align="justify"> I obtained my master's degree in medical informatics with the first rank among all the students. My thesis was about predicting the type of neonatal jaundice through machine learning algorithms and fuzzy logic.</p>
</div>
<div class="marker"></div>
</div>
<!-- bachelor -->
<div class="timeline-block timeline-block-right">
<div class="marker"></div>
<div class="timeline-content">
<h3 class="timeline-h3" style="color:rgba(84, 20, 174, 0.579); font-weight: bold">Bachelor's Degree</h3>
<span class="timeline-span">Shiraz, Iran</span>
<p class="text-muted small mb-3">2008-2012</p>
<p class="timeline-p text-justify"> I studies Computer Software Engineering in Shiraz technical school and Zand school of higher education. My thesis was designing a library automation system using C#.</p>
</div>
</div>
</div>
<!-- ./timeline -->
</div>
</div>
</div>
<!-- ./publications-->
<div class="tab-pane fade show" id="publications" role="tabpanel">
<!-- Force next columns to break to new line -->
<div class="row justify-content-lg-center">
<!-- ./skin -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://archpublichealth.biomedcentral.com/articles/10.1186/s13690-022-00798-2">Spatial epidemiology of skin cancer in Iran: separating sun-exposed and non-sun-exposed parts of the body (2022)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Archives of Public Health
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_4" aria-expanded="false" aria-controls="collapse_4">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_4">
<div class="card card-body">
<p class="card-text">
<strong>Background</strong> Skin cancer is among the most common cancer types with an increasing global trend of incidence rate. This study explores the spatial distribution of skin cancer, considering body sites exposed and not exposed to sunshine separately. <strong>Methods</strong>
We used 4302 skin cancer cases recorded by Fars Cancer Registry in south-western Iran for over 6 years (2011–2017). The variables included in the study were patients’ residence address, gender, age, report date, and final topographical code. The patients’ addresses were geocoded to the counties of the study area. Skin cancer sites were categorized based on sun exposure in male and female cases. We used the empirical Bayesian smoothing approach to smooth the skin cancer incidence rate at the county level to remove any potential population size bias. Finally, Anselin’s Local Moran’s Index and Getis Ord G* were used to identify the clustered and high-risk skin cancer geographical areas. <strong>Results</strong>
The incidence rates had an increasing trend from 14.28 per 100,000 people in 2011 to 17.87 per 100,000 people in 2016, however, it was decreased to 13.05 per 100,000 people in 2017. Out of 4302 patients with skin cancer, 2602 cases (60%) were male. The cancer cumulative incidence rate in males and females who were not exposed to sunshine was 7.80 and 14.18 per 100,000, respectively. The rates increased to 86.22 and 48.20 in males and females who were exposed to the sun. There were some high-risk spatial clusters of skin cancer in the study area. Further investigations are required to identify the underlying cause of the formation of these clusters. <strong>Conclusions</strong>
Patients exposed to sunshine, especially among the male group, experienced much higher rates of cancer occurrence as compared to unexposed individuals. With a heterogeneous spatial pattern, hotspots were identified in non-sun-exposed and sun-exposed categories in the study area. Researchers and policymakers can significantly benefit from the spatial analyses of skin cancer incidence. These analyses can provide useful and timely prevention policies as well as tailored monitoring techniques in high-risk regions.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2">Behzad Kiani, <strong>Parinaz Tabari</strong>, Alireza Mohammadi, Sayyed Mostafa Mostafavi, Mohsen Moghadami, Mitra Amini, Abbas Rezaianzadeh</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./conf -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://ieeexplore.ieee.org/abstract/document/9833114">The Role of Artificial Intelligence in Human-Computer Interaction: Using a Smart Topic Extraction System (2022)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
VL/HCC 2022 - IEEE Symposium
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_3" aria-expanded="false" aria-controls="collapse_3">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_3">
<div class="card card-body">
<p class="card-text">
Interacting with computers, or Human-Computer Interaction (HCI) field, has long been considered as technology's practical benefit. Finding state-of-the-art means to help users interact with computers in efficient ways is a goal of scientists in this field. Using Artificial Intelligence (AI) is a practical way to do so especially in a healthcare domain. Although there can be several tools to extract this type of information from literature, the need for developing a more comprehensive system is sensed.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="left"><strong>Parinaz Tabari</strong></div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./urtica -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ingentaconnect.com/content/ben/mrmc/2022/00000022/00000003/art00010">Effects of Urtica dioica on Metabolic Profiles in Type 2 Diabetes: A Systematic Review and Meta-analysis of Clinical Trials (2022)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Mini reviews in medicinal chemistry
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_2" aria-expanded="false" aria-controls="collapse_2">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_2">
<div class="card card-body">
<p class="card-text">
Several studies have investigated the effect of Urtica dioica (UD) consumption on metabolic profiles in patients with type 2 diabetes mellitus (T2DM); however, the findings are inconsistent. This systematic review and meta-analysis of clinical trials were performed to summarize the evidence of the effects of UD consumption on metabolic profiles in patients with T2DM.
Eligible studies were retrieved from searches of PubMed, Embase, Scopus, Web of Science, Cochrane Library, and Google Scholar databases until December 2019. Cochran (Q) and I-square statistics were used to examine heterogeneity across included clinical trials. Data were pooled using a fixed-effect or random-effects model and expressed as weighted mean difference (WMD) and 95% confidence interval (CI).
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="left">Reza Tabrizi, Eghbal Sekhavati, Peyman Nowrouzi-Sohrabi, Shahla Rezaei, <strong>Parinaz Tabari</strong>, Salar H Ghoran, Navid Jamali, Mohammad Jalali, Mahsa Moosavi, Ali-Asghar Kolahi, Deepti Bettampadi, Amirhossein Sahebkar, Saeid Safiri</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./sss -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://link.springer.com/article/10.1186/s12909-021-02791-9">Student support systems for undergraduate medical students during the COVID-19 pandemic: a systematic narrative review of the literature (2021)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
BMC medical education
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_1" aria-expanded="false" aria-controls="collapse_1">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_1">
<div class="card card-body">
<p class="card-text">
The coronavirus disease 2019 (COVID-19) pandemic has boosted medical students’ vulnerability to various problems. Given the stressful nature of medical disciplines, considerable attention must be paid to student support systems during pandemics. This study aimed to review the current literature regarding medical student support systems systematically. We performed a systematic review of six databases and grey literature sources in addition to a hand search in the references of the articles on April 5, 2021.
We included all studies about support for undergraduate medical students delivered in response to the COVID-19 pandemic. In conducting this review, we used the Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) statement. A total of 3646 articles were retrieved from the databases, and 16 additional papers were extracted from other sources. After removing duplicates, we screened 2434 titles and abstracts according to our criteria. Among them, 32 full-text articles were assessed for eligibility.
Ultimately, 10 studies were included for review. We identified two major themes: (a) academic support and (b) mental health support. All of the included studies utilized online methods whether for transitioning from previous support systems or developing novel approaches. Students and faculty members seemed to be receptive to these new systems. Despite indicating outstanding program outcomes, most studies merely described the positive effects of the program rather than providing a precise evaluation. There are several methods of supporting medical students who are experiencing unprecedented changes in their educational trajectory. Due to substantial differences in undergraduate medical education in different regions of the world, cultural and contextual-oriented support is indispensable for developing a safe learning environment. Future research should investigate the question of the extent to which online support can supersede in-person strategies.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="left">Ali Ardekani, Seyed Ali Hosseini, <strong>Parinaz Tabari</strong>, Zahra Rahimian, Afrooz Feili, Mitra Amini, Arash Mani</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./hayat -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8014799/">Training future physician leaders in the COVID-19 pandemic (2021)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Medical Education
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_5" aria-expanded="false" aria-controls="collapse_5">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_5">
<div class="card card-body">
<p class="card-text">
The SARS-CoV-2 virus and the disease it causes, COVID-19, are among the utmost unpredictable global crises in recent times.
Medical students, as future academic leaders, have a critical role in response to emergencies like the COVID-19 pandemic.
Leadership skills, including team leadership abilities, conflict management, negotiating skills, situational leadership and debating skills, are not systematically taught in medical schools. 1 Teaching these particular skills necessary for medical students is a key method to achieve effective performance in times of crises.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify">Ali Asghar Hayat, Mitra Amini, <strong>Parinaz Tabari</strong>, Mahsa Moosavi</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./omidifar -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8826867/">The role of educating health-care personnel in prevention, diagnosis, or treatment of COVID-19: A narrative mini review (2021)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Journal of Education and Health Promotion
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_6" aria-expanded="false" aria-controls="collapse_6">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_6">
<div class="card card-body">
<p class="card-text">
Front‑line clinicians and health‑care workers need to be educated to provide care in critical situations such as large‑scale catastrophes and pandemics.
This narrative review is focused on investigating educational strategies in confrontation with coronavirus disease 2019 (COVID‑19) pandemic.
We conduced a literature search in December 2020 through LitCovid, PubMed, ERIC, and Cochrane Library in order to retrieve relevant studies regarding the role of education in prevention, diagnosis, and treatment of COVID‑19. There were 12 reviewed studies related to this specific subject.
The articles selected for this study demonstrated that education and training had a positive impact on the knowledge and attitude of the participants and also the educational interventions, whether they were simulation‑based or other formats of training, would be deemed crucial for enhancing participants’ level of perceptions and confidence.
Therefore, it is highly recommended that public health policymakers consider this important issue.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify"><strong>Parinaz Tabari</strong>, Mitra Amini, Neil Arya, Mohsen Moghadami, Kaveh Khoshnood, Mansoureh Shokripour, Navid Omidifar</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./uti -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8781903/">What Left for Us for Urinary Tract Infection Treatment? An Experience from the South of Iran (2021)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Advanced Biomedical Research
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_7" aria-expanded="false" aria-controls="collapse_7">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_7">
<div class="card card-body">
<p class="card-text">
Background: The aim of the study is to define the prevalence and antimicrobial susceptibility pattern of bacteria from cases of urinary tract infections (UTIs).
Materials and Methods: A retrospectiveanalysis of urinary pathogens and their antimicrobial susceptibility was done on urine cultures at Shiraz University Laboratory from 2015 to 2017.
Antimicrobial susceptibility tests have done using the disk‑diffusion technique as per the standard of CSLI. Results: During 2 years of study, 3489 samples were culture positive.
Escherichia coli was the dominant isolate (84%), followed by Klebsiella spp. (10.7%) and Enterococci spp. (2,2%). The overall resistance rates to trimethoprim‑sulfamethoxazole, ceftriaxone, and ciprofloxacin were 56.1%, 47.2%, and 37%, respectively. The most frequently isolated bacteria were E. coli, which had resistance rates of 58.6%, 49.1% to TMP‑STX, and cefixime, also sensitivity rates of 95.1% to nitrofurantoin (FM).
Conclusions: In the study area, resistance rates to fluoroquinolones and cephalosporins were high.
Because most isolates were sensitive to FM and aminoglycoside, they are suggested as appropriate antimicrobials for empirical treatment of UTIs before available urine culture results.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify">Ali Mahmoudi, Mohsen Moghadami, Babak Shirazi, <strong>Parinaz Tabari</strong>, Mahsa Moosavi</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./needs -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8552280/">Competencies required for medical students to confront the COVID-19 pandemic: A needs assessment study (2021)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Journal of Education and Health Promotion
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_8" aria-expanded="false" aria-controls="collapse_8">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_8">
<div class="card card-body">
<p class="card-text">
BACKGROUND: The outbreak of coronavirus disease 2019 (COVID‑19) has turned attention to the essential competencies needed to confront pandemics for a physician.
However, medical students, as future physicians, are not adequately trained for such a situation. This study aimed to determine the essential competencies for a medical student to face the COVID‑19 pandemic.
MATERIALS AND METHODS: We performed this mixed‑method needs assessment study at Shiraz University of Medical Sciences in May–June 2020 in three steps: the first step was a brainstorming session followed by a nominal group technique with the experts’ participation.
The second step was determining the validity of competencies by calculating the content validity ratio. In the third and last step, three rounds of the modified Delphi technique were held with the participation of 22 medical faculty members and 45 undergraduate medical students to reach a consensus about the competencies utilizing quantitative analysis.
RESULTS: A total of 30 key competencies essential for a medical student were obtained through the
current study. They were categorized into four major themes: (1) developing knowledge and abilities
for effective diagnosis and treatment of COVID‑19, (2) demonstrating safety principles correctly,
(3) demonstrating effective behavior, and (4) determining the meta‑competencies.
CONCLUSIONS: Although medical students will be the frontline physicians in the future pandemics, they
are not prepared to display the diversity of requisite skills to practice effectively and safely. This study
provides essential competencies for medical students during the COVID‑19 pandemic and underlines
the importance of a paradigm shift from traditional time‑based to competency‑based education.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify">Ali Ardekani, Zahra Rahimian, Afrooz Feili, Mitra Amini, <strong>Parinaz Tabari</strong>, Mahsa Moosavi</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./needs -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8459852/">Study of patients’ satisfaction toward photographing their skin lesions for educational purposes (2021)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Journal of Education and Health Promotion
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_9" aria-expanded="false" aria-controls="collapse_9">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_9">
<div class="card card-body">
<p class="card-text">
BACKGROUND: Medical images have been widely used for various aims, especially for the
educational purposes. Patient confidentiality and consent should be deemed crucial. In this study,
we sought to assess patients’ satisfaction with taking medical photos of their skin lesions and giving
their physicians consent to use them for educational purposes.
MATERIALS AND METHODS: This multi‑method study included quantitative and qualitative phases
and was performed from April to November 2018 in the Dermatology Department of Shiraz Faghihi
Hospital in South Iran. Demographic information was analyzed using the descriptive statistics. To
resolve the simultaneous effect of demographic variables on patient satisfaction, we conducted linear
regression. All the tests were analyzed at the 0.05 significance level.
RESULTS: In this study, all the patients except one (99.5%) preferred that only a physician who had a
direct role in their care can access their digital photos. Of 200 patients, 134 patients (62.33%) preferred
the utilization of hospital cameras in photographing their skin lesions (P = 0.002). On the other hand,
131 patients (49.81%) did not gave consent about using a personal phone camera for photographing
their skin lesions (P = 0.001). In the qualitative phase, two major themes (trusting attending physician
and paying attention to patient confidentiality) and five sub‑themes (considering their physicians
as professional people who always do the right thing, allowing physicians to use their images for
educational purposes, covering patient’s face, using hospital cameras, and obtaining informed consent
from patients) were derived from qualitative semi‑structured interviews.
CONCLUSION: The results showed that there is a need for developing international and national
photography guidelines in the era of technology development.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify">Ali Amirian, Mitra Amini, Mohammad Mahdi Sagheb, Mehdi Ghahartars, Razieh Neshatavar, <strong>Parinaz Tabari</strong>, Mahsa Moosavi</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./empathy -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8459864/">Assessing empathy in final-year medical students using the Persian version of the Jefferson Scale of Physician Empathy (2021)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Journal of Education and Health Promotion
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_10" aria-expanded="false" aria-controls="collapse_10">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_10">
<div class="card card-body">
<p class="card-text">
BACKGROUND: A doctor–patient relationship built on the concept of empathy is so essential to
attain the best clinical outcomes in medicine. Since empathy has a positive role in interpersonal
relationships and medical outcomes, its assessment is highly crucial. The aim of this study was to
assess the empathy in last‑year medical students using the Persian version of the Jefferson Scale
of Physician Empathy (JSPE) and correlate empathy scores with demographic features.
MATERIALS AND METHODS: In this cross‑sectional study, last‑year medical students at Shiraz
Medical School, Shiraz, Iran, were recruited for this study. In this research, we used the Persian
version of JSPE. The validity and reliability of the Persian version of this tool were confirmed in the
previous research. For the analysis of data, we employed descriptive statistics and the independent
sample t‑test.
RESULTS: One hundred and eighty‑five final‑year medical students were included in this study.
The maximum score of the questionnaire was 140, and the total mean score of empathy was
98.15 ± 13.29. The females’ total mean score (102.05 ± 11.89) was higher than the males’
score (93.57 ± 13.46). The difference between the mean score of gender and empathy was
significant (P value <.001), but there was no significant difference between empathy and the two
other demographic factors (P > 0.05).
CONCLUSIONS: Although physicians would gain the essential characteristics of empathy during their
career, attending professors and other responsible policymakers in medical education should focus
more on the factors related to physicians’ empathy to train better and more professional physicians.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify">Marzieh Nasiri, Mitra Amini, Arash Mani, Somayeh Delavari, Mahsa Kiani, Mohammad Mahdi Sagheb, <strong>Parinaz Tabari</strong></div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./resnote -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://bmcresnotes.biomedcentral.com/articles/10.1186/s13104-020-05203-1">Paediatric, pedestrian road traffic injuries in the city of Mashhad in north-eastern Iran 2015–2019: a data note (2020)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
BMC Research Notes
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_11" aria-expanded="false" aria-controls="collapse_11">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_11">
<div class="card card-body">
<p class="card-text">
Objectives: The leading factors of paediatric, pedestrian road trafc injuries (PPRTIs) are associated with the characteristics of immediate environment. Spatial analysis of data related to PPRTIs could provide useful knowledge for
public health specialists to prevent and decrease the number of accidents. Therefore, we aim to release the datasets
which have been used to conduct a multiple-scale spatial analysis of PPRTIs in the city of Mashhad, Iran, between
2015-2019.
Data description: The data include four datasets. The base PPRTIs dataset includes motor vehicle accidents and their
attributes in the city of Mashhad between March 2015 and March 2019. The attribute data includes the month, day of
the week, hour of the day, place (longitude and latitude) of each accident, age range of the child and gender. Furthermore, three spatial datasets about the city of Mashhad are introduced; (1) the digital boundaries of Neighbourhood,
(2) road network dataset (street lines) and (3) urban suburbs of Mashhad.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify"><strong>Parinaz Tabari</strong>, Hamidreza Shabanikiya, Nasser Bagheri, Robert Bergquist, Soheil Hashtarkhani, Fatemeh Kiani, Alireza Mohammadi, Behzad Kiani</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./aryakave -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.tandfonline.com/doi/full/10.1080/17441692.2020.1839934">Multi-dimensional effects of the COVID-19 pandemic considering the WHO’s ecological approach (2020)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Global Public Health
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_12" aria-expanded="false" aria-controls="collapse_12">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_12">
<div class="card card-body">
<p class="card-text">
At the end of 2019, a new virus named SARS-CoV-2 emerged in China, provoking coronavirus disease 2019 or COVID-19. Self-isolation and quarantine as key strategies to overcoming the spread of the disease have had major, micro, and macroscopic consequences. This commentary, therefore, seeks to review critical factors impacting the COVID-19 pandemic through the spectrum of levels, categorising effects in the WHO’s ecological framework (individual, relational, community, and societal aspects). We further describe the management of the crisis at each level to help guide health personnel, communities, governments,
and international policymakers in understanding how their actions fit into a larger picture as they seek to manage the crisis.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify"><strong>Parinaz Tabari</strong>, Mitra Amini, Kaveh Khoshnood, Neil Arya</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./kevin -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://onlinelibrary.wiley.com/doi/pdf/10.1111/medu.14376">Educational and Psychological Support for Medical Students During the COVID-19 Outbreak (2020)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Medical Education
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_13" aria-expanded="false" aria-controls="collapse_13">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_13">
<div class="card card-body">
<p class="card-text">
Student support services have become central to the work of health
professional education programmes as a strategy for optimising
trainees’ emotional well-being, educational progress, personal development and employment prospects. In general, they aim at increasing adaptability and resilience, especially for at-risk students,
such as those with learning difficulties or psychological concerns.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify"><strong>Parinaz Tabari</strong>, Mitra Amini</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./rapid -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7253494/">International public health responses to COVID-19 outbreak: a rapid review (2020)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Iranian Journal of Medical Sciences
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_15" aria-expanded="false" aria-controls="collapse_15">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_15">
<div class="card card-body">
<p class="card-text">
In this study, academic databases, including MEDLINE, Scopus, and Embase, were investigated. The keywords applied in the search strategy besides the names of each country were:“Public Health,”“Public Response”,“Health Policy”,“COVID-19”,“Novel Coronavirus,”“2019-nCoV”, and “SARS-CoV-2”. The countries included China, Italy, Iran, Spain, South Korea, Germany, France, United States, Australia, Canada, Japan, and Singapore.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify"><strong>Parinaz Tabari</strong>, Mitra Amini, Mohsen Moghadami, Mahsa Moosavi</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./rastegar -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7267157/">Peer mentoring for medical students during COVID‐19 pandemic via a social media platform (2020)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Medical Education
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_14" aria-expanded="false" aria-controls="collapse_14">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_14">
<div class="card card-body">
<p class="card-text">
In many contexts, medical students collaborate with health care workers to deliver patient management and care in emergencies like the COVID‐19 pandemic. In others, medical students are experiencing an unintended pause in their education due to global university closure over COVID‐19 concerns. In either situation, students find themselves coping with mental and emotional issues, including stress, anxiety, and fear, that may require significant psychological and physical effort.
Therefore, it is important that medical schools not only care about students' mental health but also implement strategies to support their understanding of crisis management, self‐mental care, and other principal measures in order to strengthen their coping skills and mental preparedness.
</p>
</div>
</div>
<p class="card-text">
</p>
<hr>
<div class="d-flex justify-content-between">
<div class="p-2"></div>
<div class="p-2" align="justify">AmirAli Rastegar Kazerooni, Mitra Amini, <strong>Parinaz Tabari</strong>, Mahsa Moosavi</div>
</div>
</div>
</div>
</div>
<!-- Force next columns to break to new line -->
<div class="w-100"></div>
<!-- ./lessons -->
<div class="col-lg-8 pb-3">
<div class="card">
<div class="card-body">
<a href="https://www.tandfonline.com/doi/full/10.1080/0142159X.2020.1754376">Lessons learned from COVID-19 epidemic in Iran: The role of medical education (2020)</a>
<div class="d-flex justify-content-between">
<div class="p-2 align-self-center">
<span class="badge bg-danger">
Medical Teacher
</span>
</div>
<div class="p-2">
<button class="btn btn-publication btn-sm" type="button" data-bs-toggle="collapse" data-bs-target="#collapse_15" aria-expanded="false" aria-controls="collapse_15">
Abstract
</button>
</div>
</div>
<div class="collapse" id="collapse_15">
<div class="card card-body">
<p class="card-text">
The competency-based model is being used by medical education bodies all over the world, including the CanMEDS in Canada, the Australian Curriculum Framework for Doctors in Australia, and the Accreditation Council for Graduate Medical Education Competencies in the USA.
Competency is a skill of a physician which improves as a medical student progresses from a novice to a master physician.