-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcareer.php
More file actions
1956 lines (1923 loc) · 107 KB
/
career.php
File metadata and controls
1956 lines (1923 loc) · 107 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
<?php
// career.php
// Array of career information
$careers = [
'bacteriologist' => [
'title' => 'Bacteriologist',
'description' => 'Bacteriologists focus on the study of bacteria and bacterial infections, contributing to the development of antibiotics and other treatments.',
'responsibilities' => [
'Conducting research on bacterial pathogens.',
'Developing and testing antibiotics and other treatments.',
'Analyzing bacterial samples and interpreting data.',
'Collaborating with healthcare professionals and researchers.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in microbiology, biology, or a related field (minimum).',
'Master\'s degree or Ph.D. in microbiology or a related field (often required for research positions, managing labs, and policy development).'
],
'pathways' => [
'Bacteriologist',
'Research Scientist',
'Principal Investigator (Research Group Leader)',
'Laboratory Director'
],
'orgs' => [
'National Institute for Biological Standards and Control: NIBSC Bacteriology' => 'https://nibsc.org/science_and_research/bacteriology.aspx',
'University of Nebraska Medical Center: Department of Pathology, Microbiology And Immunology Research' => 'https://www.unmc.edu/pathology-research/microbiology/bacteriology/index.html',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'Johns Hopkins University: Johns Hopkins Careers' => 'https://jobs.jhu.edu/',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov/'
],
'image' => 'img/careers/Bacteria_collage.jpg',
'imgSource' => [
'link' => 'https://en.wikipedia.org/wiki/Bacteriologist#/media/File:Bacteria_collage.jpg',
'text' => 'Wikipedia'
]
],
'biomedical_researcher' => [
'title' => 'Biomedical Researcher',
'description' => 'Biomedical researchers conduct scientific research to advance knowledge in the field of biology and medicine. They work on developing new drugs, therapies, and medical technologies to improve human health.',
'responsibilities' => [
'Designing and conducting experiments to test hypotheses related to biological processes and disease mechanisms.',
'Analyzing data and interpreting results.',
'Publishing research findings in scientific journals.',
'Collaborating with other scientists and researchers.',
'Applying for grants and funding to support research projects.'
],
'qualifications' => [
'Bachelor\'s degree in biology, chemistry, or a related field (minimum).',
'Master\'s degree or Ph.D. in a specialized area of biomedical science (often required for research positions, managing labs, and policy development).'
],
'pathways' => [
'Research Scientist',
'Faculty Position in Academia',
'Director of Research'
],
'orgs' => [
'Biomedical Research Foundation: Biomedical Research Foundation' => 'https://www.biomedicalresearchfoundation.org/',
'Biomedical Research Institute: Biomedical Research Institute' => 'https://www.afbr-bri.org',
'Johns Hopkins University: Johns Hopkins Careers' => 'https://jobs.jhu.edu/',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov/'
],
'image' => 'img/careers/biomedical_researcher.png',
'imgSource' => [
'link' => 'https://www.nationalgeographic.com/science/article/magnifection-mass-producing-drugs-in-record-time',
'text' => 'National Geographic'
]
],
'biosecurity_specialist' => [
'title' => 'Biosecurity Specialist',
'description' => 'Biosecurity specialists develop and implement measures to protect against biological threats and infectious disease outbreaks, ensuring public safety and preparedness.',
'responsibilities' => [
'Developing biosecurity protocols and policies.',
'Conducting risk assessments for biological threats.',
'Implementing biosecurity measures in laboratories and facilities.',
'Collaborating with public health officials and security agencies.'
],
'qualifications' => [
'Bachelor\'s degree in microbiology, public health, or a related field (minimum).',
'Certification in biosecurity or related field (optional but preferred).'
],
'pathways' => [
'Biosecurity Specialist',
'Director of Biosecurity',
'Public Health Preparedness Manager',
'Biosecurity Consultant'
],
'orgs' => [
'The Association for Biosafety and Biosecurity: ABSA International Biosafety' => 'https://absa.org/biosafety/',
'International Federation of Biosafety Associations: IFBA Biosecurity & Biological Nonproliferation' => 'https://internationalbiosafety.org/who-we-are/what-we-do/biosecurity-biological-nonproliferation/',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'Department of Homeland Security (DHS): DHS Careers' => 'https://www.dhs.gov/homeland-security-careers',
'Johns Hopkins University: Johns Hopkins Careers' => 'https://jobs.jhu.edu/'
],
'image' => 'img/careers/biosecurity.png',
'imgSource' => [
'link' => 'https://en.wikipedia.org/wiki/Biological_hazard#/media/File:Biohazard_symbol.svg',
'text' => 'Wikipedia'
]
],
'clinical_trials_manager' => [
'title' => 'Clinical Trials Manager',
'description' => 'Clinical trials managers oversee clinical trials, ensuring compliance with regulatory standards and the collection of high-quality data.',
'responsibilities' => [
'Planning and coordinating clinical trials.',
'Ensuring compliance with regulatory requirements.',
'Managing trial budgets and timelines.',
'Communicating with stakeholders and trial participants.'
],
'qualifications' => [
'Bachelor\'s degree in life sciences, nursing, or a related field (minimum).',
'Certification in clinical research (e.g., Certified Clinical Research Professional, CCRP) (often preferred).'
],
'pathways' => [
'Clinical Trials Manager',
'Clinical Research Coordinator',
'Director of Clinical Research'
],
'orgs' => [
'Association of Clinical Research Professionals: ACRP Careers' => 'https://acrpnet.org/career-center/',
'The Center for Information and Study on Clinical Research Participation: CISCRP' => 'https://www.ciscrp.org/',
'The Institute of Clinical Research: ICR Starting a Career in Clinical Research' => 'https://icr-global.org/starting-a-career-in-clinical-research/',
'Johns Hopkins University: Johns Hopkins Careers' => 'https://jobs.jhu.edu/'
],
'image' => 'img/careers/clinical_trials_manager.png'
],
'cytotechnologist' => [
'title' => 'Cytotechnologist',
'description' => 'Cytotechnologists specialize in the study of cells, examining them under a microscope to detect abnormalities that may indicate diseases such as cancer. They play a crucial role in the early detection and diagnosis of many diseases.',
'responsibilities' => [
'Preparing and examining slides of cells and tissues.',
'Identifying cellular abnormalities and diagnosing diseases.',
'Collaborating with pathologists and other healthcare professionals.',
'Maintaining accurate records and documentation.',
'Ensuring quality control and adherence to laboratory standards.'
],
'qualifications' => [
'Bachelor\'s degree in cytotechnology or a related field.',
'Certification from a recognized certifying body (e.g., ASCP).'
],
'pathways' => [
'Cytotechnologist',
'Pathologist Assistant (a pathologist studies fluids, tissues, or organs taken from the body)',
'Laboratory Director'
],
'orgs' => [
'American Society for Cytotechnology: ASCT' => 'https://www.asct.com/ASCTWeb/Content/About_ASCT.aspx#:~:text=The%20American%20Society%20for%20Cytotechnology,technologies%20affecting%20the%20profession%3B%20and',
'American Society of Cytopathology Foundation: ASC Foundation' => 'https://cytopathology.org/mpage/FoundationAbout',
'The International Academy of Cytotechnology: IAC' => 'https://www.cytology-iac.org/membership-and-the-iac/about-the-iac/'
],
'image' => 'img/careers/cytotechnologist.png'
],
'emergency_response_coordinator' => [
'title' => 'Emergency Response Coordinator',
'description' => 'Emergency response coordinators manage public health responses to infectious disease outbreaks and other emergencies. They develop plans, coordinate resources, and provide leadership during public health crises.',
'responsibilities' => [
'Developing and implementing emergency response plans.',
'Coordinating resources and personnel during emergencies.',
'Communicating with public health officials and the public.',
'Conducting training and exercises for emergency preparedness.',
'Evaluating and improving response strategies.'
],
'qualifications' => [
'Bachelor\'s degree in public health, emergency management, or a related field (minimum).',
'Master\'s degree in public health or emergency management (often preferred).'
],
'pathways' => [
'Emergency Response Coordinator',
'Director of Emergency Management',
'Public Health Emergency Preparedness Manager',
'Disaster Response Specialist'
],
'orgs' => [
'Red Cross: Disaster Services' => 'https://www.redcross.org/about-us/careers/pbjob-types/disaster-services.html',
'U.S. Department of the Interior: Emergency Management' => 'https://careers.doi.gov/occupational-series/emergency-management',
'International Association of Emergency Managers: IAEM' => 'https://www.iaem.org/About',
'National Emergency Management Association: NEMA' => 'https://nemaweb.org/about/',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'Federal Emergency Management Agency (FEMA): FEMA Careers' => 'https://www.fema.gov/careers',
'American Red Cross: Red Cross Careers' => 'https://www.redcross.org/about-us/careers.html'
],
'image' => 'img/careers/emergency_response_coordinator.png'
],
'AI_ML' => [
'title' => 'AI and Machine Learning Specialist',
'description' => 'An AI and machine learning specialist designs, develops, and implements algorithms and models to enable machines to "learn" from data, improving decision-making and automating complex tasks across various industries.',
'responsibilities' => [
'Developing and implementing AI and machine learning models.',
'Analyzing data to predict disease spread and outcomes.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in computer science, data science, or a related field (minimum).',
'Master\'s degree or Ph.D. in AI, machine learning, or a related field (often preferred).'
],
'pathways' => [
'AI and Machine Learning Specialist',
'Data Scientist',
'Public Health Data Analyst'
],
'orgs' => [
'Association for the Advancement of Artificial Intelligence: AAAI' => 'https://aaai.org/about-aaai/',
'Artificial Intelligence Board of America: ARTiBA' => 'https://www.artiba.org/about-artiba',
'International Society for Technology in Education: ISTE Artificial Intelligence in Education' => 'https://iste.org/ai',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/'
],
'image' => 'img/careers/MachineLearning.png',
'imgSource' => [
'link' => 'https://commons.wikimedia.org/wiki/File:Artificial_neural_network_In-Out.svg',
'text' => 'Wikipedia'
]
],
'bioinformatics_developer' => [
'title' => 'Bioinformatics Developer',
'description' => 'A bioinformatics developer creates and maintains software tools and databases to analyze biological data, aiding researchers in interpreting complex genomic and proteomic information.',
'responsibilities' => [
'Designing and developing bioinformatics software.',
'Collaborating with researchers to interpret data.',
'Ensuring software usability and performance.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in bioinformatics, computer science, or a related field (minimum).',
'Master\'s degree or Ph.D. in bioinformatics or a related field (often preferred).'
],
'pathways' => [
'Bioinformatics Developer',
'Bioinformatics Specialist',
'Computational Biologist'
],
'orgs' => [
'Open Bioinformatics Foundation: OBF' => 'https://www.open-bio.org/about/',
'National Institute of Health: NIH Bioinformatics Scientific Interest Group' => 'https://oir.nih.gov/sigs/bioinformatics-scientific-interest-group',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov/'
],
'image' => 'img/careers/bioinformatics_developer.png',
'imgSource' => [
'link' => 'https://cran.r-project.org/web/packages/geiger/geiger.pdf',
'text' => 'Geiger R Package'
]
],
'bioinformatics_specialist' => [
'title' => 'Bioinformatics Specialist',
'description' => 'A bioinformatics specialist uses computational tools to analyze and interpret biological data, collaborating with researchers to advance understanding in areas like genomics and proteomics.',
'responsibilities' => [
'Analyzing genomic and proteomic data.',
'Utilizing bioinformatics software and tools to interpret data.',
'Conducting research on infectious disease mechanisms.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in bioinformatics, computer science, or a related field (minimum).',
'Master\'s degree or Ph.D. in bioinformatics or a related field (often preferred).'
],
'pathways' => [
'Bioinformatics Specialist',
'Bioinformatics Researcher',
'Computational Biologist'
],
'orgs' => [
'International Society for Computational Biology: ISCB' => 'https://www.iscb.org/who-we-are',
'Swiss Institute of Bioinformatics: SIB' => 'https://www.sib.swiss/about/who-we-are',
'Institute of Bioinformatics: IOB' => 'https://www.ibioinformatics.org/about_us.php',
'Agency for Science, Technology and Research: A*STAR Bioinformatics Institute' => 'https://www.a-star.edu.sg/bii',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov'
],
'image' => 'img/careers/bioinformatics_specialist.png',
'imgSource' => [
'link' => 'https://en.wikipedia.org/wiki/Bioinformatics#/media/File:Muscle_alignment_view.png',
'text' => 'Wikipedia'
]
],
'health_information_technologist' => [
'title' => 'Health Information Technologist',
'description' => 'A health information technologist manages and secures patient health data, ensuring its accuracy and accessibility, and uses technology to improve healthcare outcomes.',
'responsibilities' => [
'Managing patient health information and medical records.',
'Using classification software to assign clinical codes for insurance reimbursement.',
'Ensuring data accuracy, security, and accessibility.',
'Collaborating with IT professionals to maintain health information systems.'
],
'qualifications' => [
'Associate\'s or bachelor\'s degree in health information management or a related field.',
'Certification as a Registered Health Information Technician (RHIT) or Registered Health Information Administrator (RHIA).'
],
'pathways' => [
'Health Information Technician',
'Director of Health Information Services',
'Health Informatics Specialist'
],
'orgs' => [
'American Health Information Management Association: AHIMA' => 'https://www.ahima.org/who-we-are/about-us/',
'American Medical Informatics Association: AMIA' => 'https://www.amia.org/about-amia',
'American Nursing Informatics Association: ANIA' => 'https://www.ania.org/about-us',
'Healthcare Information and Management Systems Society: HIMSS' => 'https://www.himss.org/who-we-are'
],
'image' => 'img/careers/health_info_tech.png'
],
'bioengineer' => [
'title' => 'Bioengineer',
'description' => 'A bioengineer designs and develops medical devices and technologies to diagnose, monitor, and treat health conditions, applying principles of biology and engineering.',
'responsibilities' => [
'Designing and testing medical devices and technologies.',
'Conducting research on biomedical engineering solutions.',
'Collaborating with healthcare professionals and researchers.',
'Ensuring compliance with regulatory standards.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in bioengineering, biomedical engineering, or a related field (minimum).',
'Master\'s degree or Ph.D. in bioengineering or a related field (often preferred).'
],
'pathways' => [
'Bioengineer',
'Biomedical Engineer',
'Research Scientist',
'Medical Device Engineer'
],
'orgs' => [
'Biomedical Engineering Society: BMES' => 'https://www.bmes.org/about-us',
'Society for Biological Engineering: SBE' => 'https://www.aiche.org/sbe',
'American Institute for Medical and Biological Engineering: AIMBE' => 'https://aimbe.org/about-aimbe/',
'Johns Hopkins University: Johns Hopkins Careers' => 'https://jobs.jhu.edu/',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov/'
],
'image' => 'img/careers/bioengineer.png',
'imgSource' => [
'link' => 'https://www.pacific.edu/engineering/academics/bioengineering',
'text' => 'University of the Pacific'
]
],
'chemical_engineer' => [
'title' => 'Chemical Engineer',
'description' => 'A chemical engineer designs and optimizes processes for producing chemicals, fuels, pharmaceuticals, and other products, ensuring efficiency, safety, and environmental compliance.',
'responsibilities' => [
'Designing and optimizing chemical processes during manufacturing processes.',
'Conducting research on pharmaceutical formulations.',
'Collaborating with other scientists.',
'Ensuring compliance with regulatory standards.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor’s degree in chemical engineering, chemistry, or a related field (minimum).',
'Master’s degree or Ph.D. in chemical engineering or a related field (often preferred).'
],
'pathways' => [
'Chemical Engineer',
'Process Engineer',
'Research Scientist'
],
'orgs' => [
'Institution of Chemical Engineers: IChemE' => 'https://www.icheme.org/about-us/',
'Canadian Society for Chemical Engineering: CIC CSChE' => 'https://www.cheminst.ca/about/',
'American Institute of Chemical Engineers: AIChE' => 'https://www.aiche.org/'
],
'image' => 'img/careers/chemical_engineer.png',
'imgSource' => [
'link' => 'https://www.aiche.org/chenected/2022/08/career-options-ches-process-and-design-engineering',
'text' => 'AIChE'
]
],
'environmental_engineer' => [
'title' => 'Environmental Engineer',
'description' => 'An environmental engineer develops solutions to environmental problems, focusing on areas like pollution control, waste management, and sustainable design to protect and improve the environment.',
'responsibilities' => [
'Designing and implementing systems to reduce air, water, and soil pollution.',
'Developing methods for waste treatment and disposal, including recycling and hazardous waste management.',
'Conducting assessments to evaluate the environmental impact of construction projects and industrial activities.',
'Ensuring compliance with environmental laws and regulations, and preparing necessary documentation for permits.'
],
'qualifications' => [
'Bachelor\'s degree in environmental engineering, civil engineering, or a related field (minimum).',
'Master\'s degree in environmental engineering (often preferred).'
],
'pathways' => [
'Environmental Health Engineer',
'Environmental Engineer',
'Director of Environmental Health',
'Environmental Health Consultant'
],
'orgs' => [
'American Academy of Environmental Engineers & Scientists: AAEES' => 'https://www.aaees.org/aboutaaees',
'Environmental Engineering and Science Foundation: EESF' => 'https://www.eesfoundation.org/abouteesf/',
'Association of Environmental Engineering and Science Professors: AEESP' => 'https://aeesp.org/about',
'EnvironmentalScience.org: Health Safety Engineer' => 'https://www.environmentalscience.org/career/health-safety-engineer',
'Environmental Protection Agency (EPA): EPA Careers' => 'https://www.epa.gov/careers',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers',
'Pan American Health Organization (PAHO): PAHO Careers' => 'https://www.paho.org/en/careers-paho'
],
'image' => 'img/careers/environmental_engineer.png',
'imgSource' => [
'link' => 'https://www.blueridge.edu/programs-courses/engineering/environmental-engineering-technology/',
'text' => 'Blue Ridge Community College'
]
],
'public_health_engineer' => [
'title' => 'Public Health Engineer',
'description' => 'A public health engineer designs and implements infrastructure projects, such as clean water systems and waste management, to prevent disease and promote community health.',
'responsibilities' => [
'Designing safe water and sanitation systems.',
'Developing waste management solutions.',
'Conducting risk assessments of public health infrastructure.',
'Collaborating with public health officials and urban planners.',
'Educating communities on public health engineering solutions.'
],
'qualifications' => [
'Bachelor\'s degree in civil engineering, environmental engineering, or a related field (minimum).',
'Master\'s degree in public health or environmental engineering (often preferred).'
],
'pathways' => [
'Public Health Engineer',
'Environmental Health Engineer',
'Director of Public Health Engineering',
'Public Health Consultant'
],
'orgs' => [
'Society of Public Health Engineers: SoPHE' => 'https://www.cibse.org/get-involved/societies/society-of-public-health-engineers-sophe',
'Engineer Professional Advisory Committee: Public Health Engineering Practice' => 'https://dcp.psc.gov/OSG/engineer/public-health-engineering-practice-landing-page.aspx',
'Healthcare Engineering Alliance Society: HEALS' => 'https://www.healthcare-engineering.org/subjects',
'Environmental Protection Agency (EPA): EPA Careers' => 'https://www.epa.gov/careers',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers',
'Pan American Health Organization (PAHO): PAHO Careers' => 'https://www.paho.org/en/careers-paho'
],
'image' => 'img/careers/pub_health_eng.png',
'imgSource' => [
'link' => 'https://www.mathematica.org/news/new-tools-help-public-health-officials-use-wastewater-data-to-identify-disease-outbreaks',
'text' => 'Mathematica'
]
],
'biostatistician' => [
'title' => 'Biostatistician',
'description' => 'A biostatistician designs and analyzes clinical trials and research studies, applying statistical methods to interpret data and support evidence-based decision-making in healthcare.',
'responsibilities' => [
'Designing and analyzing clinical trials and research studies.',
'Developing and applying statistical models.',
'Interpreting and presenting data to researchers and policymakers.',
'Collaborating with medical researchers and scientists.',
'Ensuring the accuracy and reliability of data.'
],
'qualifications' => [
'Bachelor\'s degree in statistics, mathematics, or a related field (minimum).',
'Master\'s degree or Ph.D. in biostatistics or a related field (often required for research positions, biotechnology industry jobs, and policy development).'
],
'pathways' => [
'Biostatistician',
'Director of Biostatistics',
'Faculty Position in Academia'
],
'orgs' => [
'National Institute of Allergy and Infectious Diseases: NIH Biostatistics Research Branch' => 'https://www.niaid.nih.gov/about/biostatistics-research-branch',
'American Statistical Association: ASA' => 'https://www.amstat.org/about-asa',
'Cancer Research and Biostatistics: CRAB' => 'https://www.crab.org/about-us/',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/'
],
'image' => 'img/careers/biostatistician.png'
],
'health_economist' => [
'title' => 'Health Economist',
'description' => 'Health economists analyze the economic impact of infectious diseases and the cost-effectiveness of interventions, providing insights to inform public health decisions.',
'responsibilities' => [
'Conducting economic evaluations of healthcare interventions.',
'Analyzing the cost-effectiveness of infectious disease treatments and prevention strategies.',
'Developing economic models to predict healthcare costs.',
'Collaborating with policymakers and healthcare providers.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in economics, public health, or a related field (minimum).',
'Master\'s degree or Ph.D. in health economics or a related field (often required for health policy analyst positions and academic research).'
],
'pathways' => [
'Health Economist',
'Health Policy Analyst',
'Director of Health Economics',
'Public Health Consultant'
],
'orgs' => [
'International Health Economics Association: IHEA' => 'https://healtheconomics.org/about-us/',
'The Professional Society for Health Economics and Outcomes Outreach: ISPOR' => 'https://www.ispor.org/about/our-society',
'Institute of Health Economics: IHE' => 'https://www.ihe.ca/about/about-ihe',
'American Society of Health Economics: ASHEcon' => 'https://www.ashecon.org/about/',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers'
],
'image' => 'img/careers/health_econ.png'
],
'health_policy_analyst' => [
'title' => 'Health Policy Analyst',
'description' => 'Health policy analysts research and analyze policies related to infectious disease prevention and control. They provide recommendations to improve public health policies and programs.',
'responsibilities' => [
'Conducting research on public health policies and programs.',
'Analyzing data related to health outcomes and policy effectiveness.',
'Developing policy recommendations and reports.',
'Collaborating with policymakers and stakeholders.',
'Advocating for evidence-based public health policies.'
],
'qualifications' => [
'Bachelor\'s degree in public health, health policy, or a related field (minimum).',
'Master\'s degree in public health or public policy (often preferred).'
],
'pathways' => [
'Health Policy Analyst',
'Director of Health Policy',
'Public Health Consultant'
],
'orgs' => [
'Association for Public Policy Analysis & Management: APPAM' => 'https://www.appam.org/about-appam/general-info/',
'WORLD Policy Analysis Center: WORLD' => 'https://www.worldpolicycenter.org/about/about-world',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers',
'American Public Health Association (APHA): APHA Careers' => 'https://apha.org/professional-development/careers-at-apha'
],
'image' => 'img/careers/health_policy_analyst.png',
'imgSource' => [
'link' => 'https://www.bestcolleges.com/healthcare/healthcare-policy-analyst-job/',
'text' => 'BestColleges'
]
],
'mathematical_epidemiologist' => [
'title' => 'Mathematical Epidemiologist',
'description' => 'Mathematical epidemiologists use mathematical models to predict the spread and control of diseases, providing insights for public health interventions.',
'responsibilities' => [
'Developing mathematical models of disease transmission.',
'Analyzing epidemiological data.',
'Collaborating with public health officials and researchers.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in mathematics, epidemiology, or a related field (minimum).',
'Master\'s degree or Ph.D. in mathematical epidemiology or a related field (often preferred).'
],
'pathways' => [
'Mathematical Epidemiologist',
'Research Scientist',
'Public Health Consultant'
],
'orgs' => [
'Society for Mathematical Biology: SMB' => 'https://smb.org/Mathematical-Epidemiology',
'The NSF-Simons National Institute for Theory and Mathematics in Biology: NITMB' => 'https://www.nitmb.org/about-3',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers',
'Pan American Health Organization (PAHO): PAHO Careers' => 'https://www.paho.org/en/careers-paho',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov/'
],
'image' => 'img/careers/math_epidemiologist.png',
'imgSource' => [
'link' => 'https://www.cam.ac.uk/research/news/new-cambridge-developed-resources-help-students-learn-how-maths-can-help-tackle-infectious-diseases',
'text' => 'University of Cambridge'
]
],
'operations_research_analyst' => [
'title' => 'Operations Research Analyst',
'description' => 'Operations research analysts apply mathematical methods to optimize resource allocation in managing infectious disease outbreaks.',
'responsibilities' => [
'Analyzing data to improve decision-making.',
'Developing optimization models for resource allocation.',
'Collaborating with public health officials and emergency response teams.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in operations research, mathematics, or a related field (minimum).',
'Master\'s degree or Ph.D. in operations research or a related field (often preferred).'
],
'pathways' => [
'Operations Research Analyst',
'Data Scientist',
'Public Health Consultant'
],
'orgs' => [
'Analyst Institute: Analyst Institute' => 'https://analystinstitute.org/',
'The Operational Research Society: The OR Society' => 'https://www.theorsociety.com/about-us/',
'U.S. Air Force: Air Force Operations Research Analyst' => 'https://www.airforce.com/careers/logistics-and-administration/operations-research-analyst',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers',
'Pan American Health Organization (PAHO): PAHO Careers' => 'https://www.paho.org/en/careers-paho',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov/'
],
'image' => 'img/careers/operations_research_analyst.png',
'imgSource' => [
'link' => 'https://quietprofessionalsllc.com/news-events/what-does-an-operations-research-analyst-do/',
'text' => 'Quiet Professionals'
]
],
'quantitative_public_health_researcher' => [
'title' => 'Quantitative Public Health Researcher',
'description' => 'Quantitative public health researchers use quantitative methods to assess public health interventions and their impact on infectious diseases.',
'responsibilities' => [
'Conducting quantitative research on public health interventions.',
'Analyzing data to evaluate intervention effectiveness.',
'Collaborating with public health officials and researchers.',
'Publishing research findings in scientific journals.'
],
'qualifications' => [
'Bachelor\'s degree in public health, statistics, or a related field (minimum).',
'Master\'s degree or Ph.D. in public health or a related field (often preferred).'
],
'pathways' => [
'Quantitative Public Health Researcher',
'Data Scientist',
'Public Health Consultant'
],
'orgs' => [
'Public Health Institute: PHI Research - Quantitative' => 'https://www.phi.org/our-work/expertise/research-quantitative/',
'Lerner Research Institute: Quantitative Health' => 'https://www.lerner.ccf.org/quantitative-health/',
'Mayo Clinic: Mayo Department of Quantitative Health Sciences' => 'https://www.mayo.edu/research/departments-divisions/quantitative-health-sciences/overview',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers',
'Pan American Health Organization (PAHO): PAHO Careers' => 'https://www.paho.org/en/careers-paho',
'National Institutes of Health (NIH): NIH Careers' => 'https://jobs.nih.gov/'
],
'image' => 'img/careers/quantitative_public_health_researcher.png',
'imgSource' => [
'link' => 'https://hwsph.ucsd.edu/research/index.html',
'text' => 'UC SanDiego'
]
],
'clinical_ethicist' => [
'title' => 'Clinical Ethicist',
'description' => 'Clinical ethicists provide guidance on ethical issues in patient care and treatment, advising healthcare teams, developing ethical policies, and conducting consultations with patients and families.',
'responsibilities' => [
'Advising healthcare teams on ethical issues.',
'Developing and implementing ethical guidelines and policies.',
'Conducting ethics consultations with patients and families.',
'Educating healthcare professionals on ethical practices.',
'Conducting research on bioethics and publishing findings.'
],
'qualifications' => [
'Bachelor\'s degree in bioethics, philosophy, or a related field (minimum).',
'Master\'s degree or Ph.D. in bioethics or a related field (often preferred).'
],
'pathways' => [
'Clinical Ethicist',
'Director of Bioethics',
'Bioethics Consultant',
'Academic Researcher in Bioethics'
],
'orgs' => [
'Association for Medical Ethics: AME' => 'https://www.ethicaldoctor.org/about-ame/',
'American Society for Bioethics and Humanities: ASBH' => 'https://asbh.org/about/american-society-bioethics-humanities',
'Center for Practical Bioethics: Practical Bioethics' => 'https://www.practicalbioethics.org/about-us/'
],
'image' => 'img/careers/clinical_ethicist.png',
'imgSource' => [
'link' => 'https://consultqd.clevelandclinic.org/the-ever-expanding-role-of-clinical-ethicists',
'text' => 'Cleveland Clinic'
]
],
'clinical_laboratory_technician' => [
'title' => 'Clinical Laboratory Technician',
'description' => 'Clinical laboratory technicians perform laboratory tests to help diagnose, treat, and prevent diseases. They work under the supervision of medical technologists or laboratory managers to analyze bodily fluids, tissues, and other samples.',
'responsibilities' => [
'Collecting and preparing samples for testing.',
'Performing routine laboratory tests and procedures.',
'Operating and maintaining laboratory equipment.',
'Recording and analyzing test results.',
'Adhering to safety and quality control procedures.'
],
'qualifications' => [
'Associate\'s degree in clinical laboratory science or a related field (minimum).',
'Certification from a recognized certifying body (e.g., ASCP) (often required to work in hospital laboratories and research institutions).'
],
'pathways' => [
'Laboratory Technician',
'Laboratory Supervisor/Manager',
'Laboratory Director'
],
'orgs' => [
'American Society for Clinical Pathology: ASCP' => 'https://www.ascp.org/content/about-ascp#',
'National Accrediting Agency for Clinical Laboratory Science: NAACLS' => 'https://www.naacls.org/About.aspx'
],
'image' => 'img/careers/clinical_lab_technician.png',
'imgSource' => [
'link' => 'https://www.cambridgehealth.edu/medical-lab/become-a-medical-lab-technician/',
'text' => 'Cambridge College of Healthcare & Technology'
]
],
'forensic_nurse' => [
'title' => 'Forensic Nurse',
'description' => 'Forensic nurses investigate and manage infectious diseases in forensic settings, such as prisons and crime scenes, and provide care to victims of violence.',
'responsibilities' => [
'Conducting health assessments and collecting forensic evidence.',
'Providing care to victims of violence and trauma.',
'Educating law enforcement and healthcare professionals on forensic issues.',
'Collaborating with legal and medical teams.',
'Testifying in court as an expert witness.'
],
'qualifications' => [
'Bachelor\'s degree in nursing (BSN) (minimum).',
'Registered Nurse (RN) license.',
'Certification in forensic nursing (optional but preferred).'
],
'pathways' => [
'Forensic Nurse',
'Forensic Nurse Examiner',
'Director of Forensic Nursing',
'Legal Nurse Consultant'
],
'orgs' => [
'International Association of Forensic Nurses: IAFN' => 'https://www.forensicnurses.org/page/IAFN/',
'Academy of Forensic Nursing: AFN' => 'https://www.goafn.org/about-afn',
'American Academy of Forensic Sciences: AAFS Forensic Nursing Science' => 'https://www.aafs.org/membership/forensic-nursing-science',
'Federal Bureau of Investigation (FBI): FBI Careers' => 'https://fbijobs.gov/stem/science-medicine',
'International Association of Forensic Nurses: IAFN Careers' => 'https://www.forensicnurses.org/Careers/'
],
'image' => 'img/careers/forensic_nurse.png',
'imgSource' => [
'link' => 'https://nursing.utah.edu/blog/2021/04/julie-melini-and-rewarding-career-of-forensic-nursing',
'text' => 'University of Utah College of Nursing'
]
],
'infection_control_nurse' => [
'title' => 'Infection Control Nurse',
'description' => 'Infection control nurses specialize in preventing and controlling infections within healthcare settings. They develop and implement infection control policies and procedures.',
'responsibilities' => [
'Developing and implementing infection prevention and control programs.',
'Monitoring infection rates and investigating outbreaks.',
'Educating healthcare staff on infection control practices.',
'Ensuring compliance with regulatory standards.',
'Conducting risk assessments and audits.'
],
'qualifications' => [
'Bachelor\'s degree in nursing (BSN) (minimum).',
'Registered Nurse (RN) license.',
'Certification in infection control (CIC) (often preferred).'
],
'pathways' => [
'Infection Control Nurse',
'Infection Control Coordinator',
'Director of Infection Prevention',
'Consultant in Infection Control'
],
'orgs' => [
'Infection Control Nurses of Connecticut: ICNC' => 'https://icnc-website.org',
'Association for Professionals in Infection Control and Epidemiology: APIC' => 'https://www.apic.org',
'Society for Healthcare Epidemiology of America: SHEA' => 'https://www.shea-online.org',
'International Society for Infectious Diseases: ISID' => 'https://www.isid.org'
],
'image' => 'img/careers/infection_control_nurse.png',
'imgSource' => [
'link' => 'https://www.intelycare.com/career-advice/how-to-become-an-infection-control-nurse/',
'text' => 'IntelyCare'
]
],
'infectious_disease_doctor' => [
'title' => 'Infectious Disease Doctor',
'description' => 'Infectious disease doctors, also known as infectious disease specialists, diagnose and treat infections caused by bacteria, viruses, fungi, and parasites.',
'responsibilities' => [
'Diagnosing and treating infectious diseases.',
'Advising on infection control and prevention measures.',
'Conducting research on infectious diseases.',
'Prescribing antibiotics and other treatments.',
'Collaborating with other healthcare professionals.'
],
'qualifications' => [
'Medical degree (MD or DO).',
'Residency in internal medicine or pediatrics.',
'Fellowship in infectious diseases.',
'Board certification in infectious disease.'
],
'pathways' => [
'Infectious Disease Specialist',
'Medical Director of Infectious Diseases',
'Academic and Research Positions'
],
'orgs' => [
'Infectious Diseases Society of America: IDSA' => 'https://www.idsociety.org',
'Pediatric Infectious Diseases Society: PIDS' => 'https://www.pids.org',
'Association for Professionals in Infection Control and Epidemiology: APIC' => 'https://www.apic.org',
'Society for Healthcare Epidemiology of America: SHEA' => 'https://www.shea-online.org',
'International Society for Infectious Diseases: ISID' => 'https://www.isid.org'
],
'image' => 'img/careers/infectious_disease_doctor.png',
'imgSource' => [
'link' => 'https://www.usnews.com/education/best-graduate-schools/top-medical-schools/articles/what-an-infectious-disease-doctor-is-and-how-to-become-one',
'text' => 'US News'
]
],
'infectious_disease_officer' => [
'title' => 'Infectious Disease Officer',
'description' => 'Infectious disease officers are medical professionals in the military or in government agencies who focus on preventing and controlling infectious diseases.',
'responsibilities' => [
'Monitoring and investigating infectious disease outbreaks.',
'Implementing disease prevention and control programs.',
'Advising on public health policies.',
'Conducting research on infectious diseases.',
'Providing training and education on infection control.'
],
'qualifications' => [
'Medical degree (MD or DO) or advanced degree in public health or epidemiology.'
],
'pathways' => [
'Infectious Disease Officer',
'Public Health Program Manager',
'Director of Infectious Disease Control',
'Senior Advisor for Infectious Diseases'
],
'orgs' => [
'National Association for Public Safety Infection Control Officers: NAPSICO' => 'https://www.napsico.org/',
'Society for Healthcare Epidemiology of America: SHEA' => 'https://shea-online.org/about/',
'International Society for Infectious Diseases: ISID' => 'https://isid.org/about-the-international-society-for-infectious-diseases/',
'Association for Professionals in Infection Control and Epidemiology: APIC' => 'https://apic.org/about-apic/about-apic-overview/',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'Public Health Agency of Canada: PHAC Careers' => 'https://www.canada.ca/en/health-canada/campaigns/jobs-health-canada-public-health-agency-canada.html',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers',
'United States Army Medical Research Institute of Infectious Diseases (USAMRIID): USAMRIID Careers' => 'https://usamriid.health.mil/index.cfm/work_with_us/employment'
],
'image' => 'img/careers/infectious_disease_officer.png',
'imgSource' => [
'link' => 'https://www.defense.gov/News/Feature-Stories/Story/Article/2183039/army-infectious-disease-doctor-aided-guams-covid-19-response/',
'text' => 'US Department of Defense'
]
],
'environmental_health_specialist' => [
'title' => 'Environmental Health Specialist',
'description' => 'Environmental health specialists investigate and control environmental factors that affect public health. They work to prevent and mitigate health risks associated with environmental hazards.',
'responsibilities' => [
'Conducting inspections and investigations of environmental health hazards.',
'Developing and implementing programs to control environmental risks.',
'Educating the public on environmental health issues.',
'Collecting and analyzing environmental samples.',
'Ensuring compliance with environmental health regulations.'
],
'qualifications' => [
'Bachelor’s degree in environmental health, public health, or a related field (minimum).',
'Certification as a Registered Environmental Health Specialist (REHS) (often preferred).'
],
'pathways' => [
'Environmental Health Specialist',
'Director of Environmental Health',
'Public Health Consultant'
],
'orgs' => [
'National Environmental Health Association: NEHA' => 'https://www.neha.org/about',
'Idaho Department of Health and Welfare: Environmental Health' => 'https://healthandwelfare.idaho.gov/health-wellness/environmental-health',
'American Public Health Association: APHA Environmental Health' => 'https://www.apha.org/topics-and-issues/environmental-health',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'U.S. Environmental Protection Agency (EPA): EPA Careers' => 'https://www.epa.gov/careers',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers'
],
'image' => 'img/careers/environmental_health_specialist.png',
'imgSource' => [
'link' => 'https://hospitalcareers.com/career-paths/how-to-become-an-environmental-health-practitioner/',
'text' => 'HospitalCareers'
]
],
'epidemiologist' => [
'title' => 'Epidemiologist',
'description' => 'Epidemiologists study the patterns, causes, and effects of health and disease conditions in defined populations. They play a critical role in public health by investigating outbreaks, monitoring disease trends, and implementing prevention strategies.',
'responsibilities' => [
'Designing and conducting epidemiological studies.',
'Collecting and analyzing data related to health outcomes.',
'Investigating disease outbreaks and identifying risk factors.',
'Developing and implementing public health interventions.',
'Communicating findings to policymakers, healthcare providers, and the public.'
],
'qualifications' => [
'Bachelor’s degree in public health, epidemiology, or a related field (minimum).',
'Master’s degree or Ph.D. in epidemiology or a related field (often required for research positions, managing labs, and policy development).'
],
'pathways' => [
'Epidemiologist',
'Director of Epidemiology',
'Faculty Position in Academia'
],
'orgs' => [
'Council of State and Territorial Epidemiologists: CSTE' => 'https://www.cste.org/page/about-cste',
'The Society for Healthcare Epidemiology of America: SHEA' => 'https://shea-online.org/about/',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/',
'World Health Organization (WHO): WHO Careers' => 'https://www.who.int/careers'
],
'image' => 'img/careers/epidemiologist.png',
'imgSource' => [
'link' => 'https://online.usc.edu/news/how-to-become-epidemiologist-career-path/',
'text' => 'USCOnline'
]
],
'food_safety_specialist' => [
'title' => 'Food Safety Specialist',
'description' => 'Food safety specialists ensure the safety of food products to prevent foodborne illnesses, conducting inspections and developing safety protocols.',
'responsibilities' => [
'Conducting food safety inspections and audits.',
'Developing and implementing food safety protocols.',
'Investigating foodborne illness outbreaks.',
'Educating food industry workers on safety practices.'
],
'qualifications' => [
'Bachelor’s degree in food science, microbiology, or a related field (minimum).',
'Certification in food safety (e.g., Certified Food Safety Professional, CFSP) (often preferred).'
],
'pathways' => [
'Food Safety Specialist',
'Director of Food Safety',
'Public Health Inspector'
],
'orgs' => [
'International Association for Food Protection: IAFP' => 'https://www.foodprotection.org/',
'World Health Organization: WHO Food Safety' => 'https://www.who.int/health-topics/food-safety#tab=tab_1',
'Food and Drug Administration (FDA): FDA Careers' => 'https://www.fda.gov/about-fda/jobs-and-training-fda',
'U.S. Department of Agriculture (USDA): USDA Careers' => 'https://www.usda.gov/our-agency/careers',
'International Food Protection Training Institute (IFPTI): IFPTI Careers' => 'https://www.ifpti.org/careers'
],
'image' => 'img/careers/food_safety_specialist.png',
'imgSource' => [
'link' => 'https://en.wikipedia.org/wiki/Food_safety#/media/File:Seafood-_FDA_Lab_2881_(4494783228).jpg',
'text' => 'Wikipedia'
]
],
'infectious_disease_pharmacist' => [
'title' => 'Infectious Disease Pharmacist',
'description' => 'Infectious disease pharmacists specialize in the use of antimicrobial medications to treat infectious diseases. They work closely with healthcare teams to optimize antibiotic therapy and manage antimicrobial stewardship programs.',
'responsibilities' => [
'Advising on the selection and dosage of antimicrobial medications.',
'Monitoring and managing patient medication therapies.',
'Developing and implementing antimicrobial stewardship programs.',
'Educating healthcare professionals on antimicrobial use.',
'Conducting research on new antimicrobial treatments.'
],
'qualifications' => [
'Doctor of Pharmacy (Pharm.D.) degree.',
'Residency in infectious diseases (optional but preferred).',
'Board certification in infectious diseases pharmacy (optional but preferred).'
],
'pathways' => [
'Infectious Disease Pharmacist',
'Antimicrobial Stewardship Coordinator',
'Clinical Pharmacy Specialist',
'Pharmacy Director'
],
'orgs' => [
'Association for Professionals in Infection Control and Epidemiology: APIC' => 'https://apic.org/about-apic/about-apic-overview/',
'Society of Infectious Diseases Pharmacists: SIDP' => 'https://www.sidp.org/About',
'American Pharmacists Association: APhA' => 'https://www.pharmacist.com/who-we-are',
'Centers for Disease Control and Prevention (CDC): CDC Careers' => 'https://jobs.cdc.gov/'
],
'image' => 'img/careers/infectious_disease_pharmacist.png',
'imgSource' => [
'link' => 'https://bpsweb.org/infectious-diseases-pharmacy/',
'text' => 'Board of Pharmacy Specialties'
]
],
'infection_preventionist' => [
'title' => 'Infection Preventionist',
'description' => 'Infection preventionists specialize in preventing and controlling infections within healthcare settings. They develop and implement infection control policies and procedures.',
'responsibilities' => [
'Developing and implementing infection prevention and control programs.',
'Monitoring infection rates and investigating outbreaks.',
'Educating healthcare staff on infection control practices.',
'Ensuring compliance with regulatory standards.',
'Conducting risk assessments and audits.'
],
'qualifications' => [
'Bachelor\'s degree in nursing, microbiology, or a related field.',
'Certification in infection control (CIC) (often preferred).'
],
'pathways' => [
'Infection Preventionist',
'Infection Control Coordinator',
'Director of Infection Prevention'
],
'orgs' => [
'Association for Professionals in Infection Control and Epidemiology: APIC' => 'https://apic.org/about-apic/about-apic-overview/',
'American Hospital Association: AHA' => 'https://www.aha.org/about',
'Infectious Diseases Society of America: IDSA' => 'https://www.idsociety.org/about-idsa/about-idsa/'
],
'image' => 'img/careers/infection_preventionist.png',
'imgSource' => [
'link' => 'https://apic.org/monthly_alerts/who-are-infection-preventionists/',
'text' => 'Association for Professionals in Infection Control and Epidemiology'
]
],
'medical_laboratory_scientist' => [
'title' => 'Medical Laboratory Scientist',
'description' => 'Medical laboratory scientists conduct complex laboratory tests to diagnose and monitor diseases. They work with various types of samples, including blood, urine, and tissues.',
'responsibilities' => [
'Performing and interpreting complex laboratory tests.',
'Operating and maintaining laboratory equipment.',
'Ensuring accuracy and reliability of test results.',
'Adhering to safety and quality control procedures.',
'Collaborating with healthcare professionals.'
],
'qualifications' => [
'Bachelor’s degree in medical laboratory science or a related field.',
'Certification as a Medical Laboratory Scientist (MLS) by ASCP or equivalent.'
],
'pathways' => [
'Medical Laboratory Scientist',
'Laboratory Supervisor/Manager',
'Laboratory Director',
'Clinical Laboratory Consultant'
],
'orgs' => [
'American Society for Clinical Laboratory Science: ASCLS Medical Laboratory Scientist' => 'https://ascls.org/how-do-i-become-a-laboratory-professional/',
'American Society for Clinical Pathology: ASCP' => 'https://www.ascp.org/content/about-ascp#'
],
'image' => 'img/careers/med_lab_scientist.png'
],
'medical_science_liaison' => [