his_emr_api_lab 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +52 -0
  4. data/Rakefile +32 -0
  5. data/app/controllers/lab/application_controller.rb +6 -0
  6. data/app/controllers/lab/orders_controller.rb +34 -0
  7. data/app/controllers/lab/reasons_for_test_controller.rb +9 -0
  8. data/app/controllers/lab/results_controller.rb +19 -0
  9. data/app/controllers/lab/specimen_types_controller.rb +15 -0
  10. data/app/controllers/lab/test_result_indicators_controller.rb +9 -0
  11. data/app/controllers/lab/test_types_controller.rb +15 -0
  12. data/app/controllers/lab/tests_controller.rb +25 -0
  13. data/app/jobs/lab/application_job.rb +4 -0
  14. data/app/mailers/lab/application_mailer.rb +6 -0
  15. data/app/models/lab/application_record.rb +5 -0
  16. data/app/models/lab/lab_accession_number_counter.rb +13 -0
  17. data/app/models/lab/lab_encounter.rb +7 -0
  18. data/app/models/lab/lab_order.rb +47 -0
  19. data/app/models/lab/lab_result.rb +21 -0
  20. data/app/models/lab/lab_test.rb +14 -0
  21. data/app/models/lab/lims_failed_import.rb +4 -0
  22. data/app/models/lab/lims_order_mapping.rb +10 -0
  23. data/app/serializers/lab/lab_order_serializer.rb +49 -0
  24. data/app/serializers/lab/result_serializer.rb +36 -0
  25. data/app/serializers/lab/test_serializer.rb +29 -0
  26. data/app/services/lab/accession_number_service.rb +77 -0
  27. data/app/services/lab/concepts_service.rb +82 -0
  28. data/app/services/lab/lims/api.rb +46 -0
  29. data/app/services/lab/lims/config.rb +56 -0
  30. data/app/services/lab/lims/order_dto.rb +177 -0
  31. data/app/services/lab/lims/order_serializer.rb +112 -0
  32. data/app/services/lab/lims/utils.rb +27 -0
  33. data/app/services/lab/lims/worker.rb +121 -0
  34. data/app/services/lab/metadata.rb +23 -0
  35. data/app/services/lab/orders_search_service.rb +48 -0
  36. data/app/services/lab/orders_service.rb +194 -0
  37. data/app/services/lab/results_service.rb +92 -0
  38. data/app/services/lab/tests_service.rb +93 -0
  39. data/config/routes.rb +15 -0
  40. data/db/migrate/20210126092910_create_lab_lab_accession_number_counters.rb +12 -0
  41. data/db/migrate/20210310115457_create_lab_lims_order_mappings.rb +15 -0
  42. data/db/migrate/20210323080140_change_lims_id_to_string_in_lims_order_mapping.rb +15 -0
  43. data/db/migrate/20210326195504_add_order_revision_to_lims_order_mapping.rb +5 -0
  44. data/db/migrate/20210407071728_create_lab_lims_failed_imports.rb +19 -0
  45. data/lib/couch_bum/couch_bum.rb +77 -0
  46. data/lib/generators/lab/install/USAGE +9 -0
  47. data/lib/generators/lab/install/install_generator.rb +19 -0
  48. data/lib/generators/lab/install/templates/rswag-ui-lab.rb +5 -0
  49. data/lib/generators/lab/install/templates/start_worker.rb +32 -0
  50. data/lib/generators/lab/install/templates/swagger.yaml +682 -0
  51. data/lib/his_emr_api_lab.rb +5 -0
  52. data/lib/lab/engine.rb +15 -0
  53. data/lib/lab/version.rb +5 -0
  54. data/lib/logger_multiplexor.rb +32 -0
  55. data/lib/tasks/lab_tasks.rake +25 -0
  56. data/lib/tasks/loaders/data/reasons-for-test.csv +6 -0
  57. data/lib/tasks/loaders/data/test-measures.csv +224 -0
  58. data/lib/tasks/loaders/data/tests.csv +142 -0
  59. data/lib/tasks/loaders/loader_mixin.rb +53 -0
  60. data/lib/tasks/loaders/metadata_loader.rb +26 -0
  61. data/lib/tasks/loaders/reasons_for_test_loader.rb +23 -0
  62. data/lib/tasks/loaders/specimens_loader.rb +65 -0
  63. data/lib/tasks/loaders/test_result_indicators_loader.rb +54 -0
  64. metadata +296 -0
@@ -0,0 +1,5 @@
1
+ require 'lab/engine'
2
+
3
+ module Lab
4
+ # Your code goes here...
5
+ end
data/lib/lab/engine.rb ADDED
@@ -0,0 +1,15 @@
1
+ if Rails.env == 'test'
2
+ require 'rswag/ui'
3
+ require 'rswag/api'
4
+ end
5
+
6
+ module Lab
7
+ class Engine < ::Rails::Engine
8
+ isolate_namespace Lab
9
+ config.generators.api_only = true
10
+
11
+ config.generators do |g|
12
+ g.test_framework :rspec
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Lab
4
+ VERSION = '0.0.2'
5
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ ##
4
+ # Log to multiple streams.
5
+ #
6
+ # The 'logger' module does not provide a logger that can log
7
+ # to multiple streams at once hence this hack. This class
8
+ # bundles multiple loggers so that they can be treated as
9
+ # one.
10
+ #
11
+ # Example:
12
+ # >>> logger = LoggerMultiplexor.new(STDOUT, 'development.log')
13
+ # >>> logger.info('Hello') # Logs 'Hello' to both streams
14
+ class LoggerMultiplexor
15
+ def initialize(*loggers)
16
+ @loggers = loggers.map do |stream|
17
+ if stream.is_a?(Logger) || stream.is_a?(LoggerMultiplexor)
18
+ stream
19
+ else
20
+ Logger.new(stream)
21
+ end
22
+ end
23
+ end
24
+
25
+ def method_missing(method_name, *args)
26
+ @loggers.each { |logger| logger.method(method_name).call(*args) }
27
+ end
28
+
29
+ def respond_to_missing?(method_name)
30
+ @loggers.all? { |logger| logger.respond_to_missing?(method_name) }
31
+ end
32
+ end
@@ -0,0 +1,25 @@
1
+ desc 'Generate openapi/swagger documentation template in engine'
2
+ task :swag, ['app:rswag:specs:swaggerize'] do
3
+ source = 'spec/dummy/swagger/v1/swagger.yaml'
4
+ destination = 'lib/generators/lab/install/templates/swagger.yaml'
5
+
6
+ FileUtils.copy(source, destination)
7
+ end
8
+
9
+ namespace :lab do
10
+ desc 'Install Lab engine into container application'
11
+ task :install do
12
+ sh 'rails generate lab:install'
13
+ sh 'rake lab:install:migrations'
14
+ end
15
+
16
+ desc 'Uninstall Lab engine from container application'
17
+ task :uninstall do
18
+ sh 'rails destroy lab:install'
19
+ end
20
+
21
+ desc 'Load Lab metadata into database'
22
+ task :load_metadata do
23
+ sh "rails r #{__dir__}/loaders/metadata_loader.rb"
24
+ end
25
+ end
@@ -0,0 +1,6 @@
1
+ "reason_name"
2
+ "Routine"
3
+ "Repeat / Missing"
4
+ "Targeted"
5
+ "Confirmatory"
6
+ "Other"
@@ -0,0 +1,224 @@
1
+ "test_name","measure_name"
2
+ "TB Microscopic Exam","tb"
3
+ "GeneXpert","MTB"
4
+ "GeneXpert","RIF Resistance"
5
+ "Gram Stain","Gram"
6
+ "Gram Stain","Clue cells"
7
+ "Gram Stain","Other organism seen"
8
+ "Culture & Sensitivity","Culture"
9
+ "Cell Count","WBC"
10
+ "Cell Count","RBC"
11
+ "India Ink","India ink"
12
+ "Differential","Polymorphs"
13
+ "Differential","Lymphocytes"
14
+ "Differential","Diff remarks"
15
+ "ZN Stain","ZN"
16
+ "Wet prep","wet prep"
17
+ "Wet prep","Other organism seen"
18
+ "TB Tests","Macro exam"
19
+ "TB Tests","Smear microscopy result"
20
+ "TB Tests","Gene Xpert MTB"
21
+ "TB Tests","Gene Xpert RIF Resistance"
22
+ "TB Tests","HIV Status"
23
+ "TB Tests","Reason For Testing"
24
+ "TB Tests","Indication for GeneXpert Test"
25
+ "Urine Macroscopy","Colour"
26
+ "Urine Macroscopy","Appearance"
27
+ "Urine Microscopy","WBC"
28
+ "Urine Microscopy","RBC"
29
+ "Urine Microscopy","Epithelial cells"
30
+ "Urine Microscopy","Casts"
31
+ "Urine Microscopy","Crystals"
32
+ "Urine Microscopy","Parasites"
33
+ "Urine Microscopy","Yeast cells"
34
+ "Urine Chemistries","pH"
35
+ "Urine Chemistries","Blood"
36
+ "Urine Chemistries","Urobilinogen"
37
+ "Urine Chemistries","Bilirubin"
38
+ "Urine Chemistries","Protein"
39
+ "Urine Chemistries","Nitrate"
40
+ "Urine Chemistries","Ketones"
41
+ "Urine Chemistries","Glucose"
42
+ "Urine Chemistries","Specific gravity"
43
+ "Urine Chemistries","Leucocytes"
44
+ "Stool Analysis","Macroscopy"
45
+ "Stool Analysis","Consistency"
46
+ "Stool Analysis","Microscopy"
47
+ "Malaria Screening","Blood film"
48
+ "Malaria Screening","Malaria Species"
49
+ "Malaria Screening","MRDT"
50
+ "Blood Parasites Screen","Blood film"
51
+ "Semen Analysis","Progressive motility"
52
+ "Semen Analysis","Non-progressive motility"
53
+ "Semen Analysis","Immotility"
54
+ "Semen Analysis","Appearance"
55
+ "Semen Analysis","Liquifaction time"
56
+ "Semen Analysis","volume"
57
+ "Semen Analysis","pH"
58
+ "Semen Analysis","Sperm count"
59
+ "Semen Analysis","Sperm morphology"
60
+ "HVS analysis","Macroscopy"
61
+ "HVS analysis","WBC"
62
+ "HVS analysis","Epithelial cells"
63
+ "HVS analysis","Parasites/Bacteria"
64
+ "HVS analysis","Spermatozoa"
65
+ "Syphilis Test","RPR"
66
+ "Syphilis Test","VDRL"
67
+ "Syphilis Test","TPHA"
68
+ "Hepatitis B Test","Hepatitis B"
69
+ "Hepatitis C Test","Hepatitis C"
70
+ "Rheumatoid Factor Test","Rheumatoid Factor"
71
+ "Cryptococcus Antigen Test","CrAg"
72
+ "Anti Streptolysis O","ASO"
73
+ "C-reactive protein","CRP"
74
+ "Measles","Measles IgM ELISA-Behring enzygnost"
75
+ "Rubella","Rubella IgM ELISA-Behring enzynost"
76
+ "CD4","CD4 Count"
77
+ "CD4","CD4 %"
78
+ "CD4","Lymphocyte Count"
79
+ "CD4","CD8 Count"
80
+ "CD4","CD3 Count"
81
+ "ABO Blood Grouping","Grouping"
82
+ "Cross-match","Pack No."
83
+ "Cross-match","Pack ABO Group"
84
+ "Cross-match","Product Type"
85
+ "Cross-match","Expiry Date"
86
+ "Cross-match","Volume"
87
+ "Cross-match","Cross-match Method"
88
+ "Transfusion Outcome","Outcome"
89
+ "Liver Function Tests","ALT/GPT"
90
+ "Liver Function Tests","AST/GOT"
91
+ "Liver Function Tests","Alkaline Phosphate(ALP)"
92
+ "Liver Function Tests","GGT/r-GT"
93
+ "Liver Function Tests","Bilirubin Direct(BID)"
94
+ "Liver Function Tests","Bilirubin Total(BIT))"
95
+ "Liver Function Tests","Albumin(ALB)"
96
+ "Liver Function Tests","Total Protein(PRO)"
97
+ "Renal Function Test","Urea"
98
+ "Renal Function Test","Creatinine"
99
+ "Lipogram","Triglycerides(TG)"
100
+ "Lipogram","Cholestero l(CHOL)"
101
+ "Lipogram","HDL Direct (HDL-C)"
102
+ "Lipogram","LDL Direct (LDL-C)"
103
+ "FBC","WBC"
104
+ "FBC","RBC"
105
+ "FBC","HGB"
106
+ "FBC","HCT"
107
+ "FBC","MCV"
108
+ "FBC","MCH"
109
+ "FBC","MCHC"
110
+ "FBC","PLT"
111
+ "FBC","RDW-SD"
112
+ "FBC","RDW-CV"
113
+ "FBC","PDW"
114
+ "FBC","MPV"
115
+ "FBC","PCT"
116
+ "FBC","NEUT%"
117
+ "FBC","LYMPH%"
118
+ "FBC","MONO%"
119
+ "FBC","EO%"
120
+ "FBC","BASO%"
121
+ "FBC","NEUT#"
122
+ "FBC","LYMPH#"
123
+ "FBC","MONO#"
124
+ "FBC","EO#"
125
+ "FBC","BASO#"
126
+ "FBC","Mid#"
127
+ "FBC","Gran#"
128
+ "FBC","Mid%"
129
+ "FBC","Gran%"
130
+ "FBC","EOS%"
131
+ "FBC","P-LCC"
132
+ "FBC","P-LCR"
133
+ "Electrolytes","K"
134
+ "Electrolytes","Na"
135
+ "Electrolytes","Cl"
136
+ "Enzymes","a-AMYLASE-H"
137
+ "Enzymes","ALT-H"
138
+ "Enzymes","AST-H"
139
+ "Enzymes","ALP-H"
140
+ "Enzymes","TP-H"
141
+ "Enzymes","TC-H"
142
+ "Enzymes","UREA-H"
143
+ "Enzymes","GLU-O-H"
144
+ "Enzymes","TBIL-DSA-H"
145
+ "Enzymes","DBIL-DSA-H"
146
+ "Enzymes","UA-H"
147
+ "Enzymes","TG-H"
148
+ "Enzymes","ALB-H"
149
+ "Glucose","Glucose"
150
+ "Prothrombin Time","PT"
151
+ "APTT","APTT"
152
+ "INR","INR"
153
+ "ESR","ESR"
154
+ "Sickling Test","Sickling Screen"
155
+ "Pregnancy Test","Pregnancy Test"
156
+ "Manual Differential & Cell Morphology","Nucleated Red Cells"
157
+ "Manual Differential & Cell Morphology","Neutrophils"
158
+ "Manual Differential & Cell Morphology","Lymphocytes"
159
+ "Manual Differential & Cell Morphology","Monocytes"
160
+ "Manual Differential & Cell Morphology","Eosinophils"
161
+ "Manual Differential & Cell Morphology","Basophils"
162
+ "Manual Differential & Cell Morphology","Promyelocytes"
163
+ "Manual Differential & Cell Morphology","Myelocytes"
164
+ "Manual Differential & Cell Morphology","Metamyelocytes"
165
+ "Manual Differential & Cell Morphology","Band/Staff Forms"
166
+ "Manual Differential & Cell Morphology","Blasts"
167
+ "Manual Differential & Cell Morphology","Other"
168
+ "Manual Differential & Cell Morphology","RBC Comments"
169
+ "Manual Differential & Cell Morphology","WBC Comments"
170
+ "Manual Differential & Cell Morphology","Platelet Comments"
171
+ "Manual Differential & Cell Morphology","Interpretative Comments"
172
+ "Manual Differential & Cell Morphology","Attempted/ Differential Diagnosis"
173
+ "Manual Differential & Cell Morphology","Further Tests"
174
+ "Pancreatic Function Test","Amylase"
175
+ "Pancreatic Function Test","Lipase"
176
+ "Direct Coombs Test","Direct Coombs Test"
177
+ "Calcium","Ca"
178
+ "Phosphorus","P"
179
+ "Magnesium","Mg"
180
+ "Creatinine Kinase","CK"
181
+ "Uric Acid","UA"
182
+ "ESBL Test","ESBL"
183
+ "ESBL Test","Cefotaxime"
184
+ "ESBL Test","Cefotaxime + Clavulanate"
185
+ "ESBL Test","Ceftazidime"
186
+ "ESBL Test","Ceftazidime + Clavulanate"
187
+ "ESBL Test","Cefepime"
188
+ "ESBL Test","Cefepime + clavulanate"
189
+ "APTT Ratio","APTT Ratio"
190
+ "Fibronogen","Fibronogen"
191
+ "50:50 Normal Plasma","50:50 Normal Plasma"
192
+ "50:50 Mix FVIII Deficient","50:50 Mix FVIII Deficient"
193
+ "50:50 Mix F-IX Deficient","50:50 Mix F-IX Deficient"
194
+ "Factor VIII Assay","Factor VIII Assay"
195
+ "Factor IX Assay","Factor IX Assay"
196
+ "TT","TT"
197
+ "Coagulation Assay","PT"
198
+ "Coagulation Assay","INR"
199
+ "Coagulation Assay","APTT"
200
+ "Coagulation Assay","APTT Ratio"
201
+ "Coagulation Assay","TT"
202
+ "Coagulation Assay","Fibronogen"
203
+ "Coagulation Assay","50:50 Mix Normal Plasma"
204
+ "Coagulation Assay","50:50 Mix FVIII Deficient"
205
+ "Coagulation Assay","50:50 Mix F-IX Deficient"
206
+ "Coagulation Assay","Factor IX Assay"
207
+ "Coagulation Assay","Factor VIII Assay"
208
+ "Cardiac Function Tests","Creatine Kinase MB(CKMB)"
209
+ "Cardiac Function Tests","Creatine Kinase(CKN)"
210
+ "Cardiac Function Tests","Lactatedehydrogenase(LDH)"
211
+ "Minerals","Calcium (CA)"
212
+ "Minerals","Phosphorus (PHOS)"
213
+ "Minerals","Magnesium (MGXB)"
214
+ "BioMarkers","C-reactive Protein (CRP)"
215
+ "BioMarkers","Rheumatoid Factor (RF)"
216
+ "BioMarkers","Antistreptolysin O (ASO)"
217
+ "Iron Studies","Iron"
218
+ "Iron Studies","UIBC"
219
+ "HbA1c","HbA1c"
220
+ "Microalbumin","MAL"
221
+ "Microprotein","MPR"
222
+ "Von Willebrand Factor","Von Willebrand (Antigen)"
223
+ "Von Willebrand Factor","Von Willebrand (Activity)"
224
+ "Viral Load","Viral Load"
@@ -0,0 +1,142 @@
1
+ specimen_name,test_name,created_at
2
+ Sputum,"TB Microscopic Exam","2019-11-19 14:05:31"
3
+ Sputum,GeneXpert,"2019-11-19 14:05:31"
4
+ Sputum,"Gram Stain","2019-11-19 14:05:31"
5
+ Sputum,"Culture & Sensitivity","2019-11-19 14:05:31"
6
+ Sputum,Differential,"2019-11-19 14:05:31"
7
+ Sputum,"TB Tests","2019-11-19 14:05:31"
8
+ CSF,"Gram Stain","2019-11-19 14:05:31"
9
+ CSF,"Culture & Sensitivity","2019-11-19 14:05:31"
10
+ CSF,"Cell Count","2019-11-19 14:05:31"
11
+ CSF,"India Ink","2019-11-19 14:05:31"
12
+ CSF,Differential,"2019-11-19 14:05:31"
13
+ CSF,"ZN Stain","2019-11-19 14:05:31"
14
+ CSF,"TB Tests","2019-11-19 14:05:31"
15
+ CSF,"ESBL Test","2019-11-19 14:05:31"
16
+ CSF,CrAg,"2019-11-19 14:05:31"
17
+ Blood,"Gram Stain","2019-11-19 14:05:31"
18
+ Blood,"Culture & Sensitivity","2019-11-19 14:05:31"
19
+ Blood,"Malaria Screening","2019-11-19 14:05:31"
20
+ Blood,"Blood Parasites Screen","2019-11-19 14:05:31"
21
+ Blood,"Syphilis Test","2019-11-19 14:05:31"
22
+ Blood,"Hepatitis B Test","2019-11-19 14:05:31"
23
+ Blood,"Hepatitis C Test","2019-11-19 14:05:31"
24
+ Blood,"Rheumatoid Factor Test","2019-11-19 14:05:31"
25
+ Blood,"Cryptococcus Antigen Test","2019-11-19 14:05:31"
26
+ Blood,"Anti Streptolysis O","2019-11-19 14:05:31"
27
+ Blood,"C-reactive protein","2019-11-19 14:05:31"
28
+ Blood,Measles,"2019-11-19 14:05:31"
29
+ Blood,Rubella,"2019-11-19 14:05:31"
30
+ Blood,CD4,"2019-11-19 14:05:31"
31
+ Blood,"ABO Blood Grouping","2019-11-19 14:05:31"
32
+ Blood,Cross-match,"2019-11-19 14:05:31"
33
+ Blood,"Transfusion Outcome","2019-11-19 14:05:31"
34
+ Blood,"Liver Function Tests","2019-11-19 14:05:31"
35
+ Blood,"Renal Function Test","2019-11-19 14:05:31"
36
+ Blood,Lipogram,"2019-11-19 14:05:31"
37
+ Blood,FBC,"2019-11-19 14:05:31"
38
+ Blood,Electrolytes,"2019-11-19 14:05:31"
39
+ Blood,Enzymes,"2019-11-19 14:05:31"
40
+ Blood,Glucose,"2019-11-19 14:05:31"
41
+ Blood,"Prothrombin Time","2019-11-19 14:05:31"
42
+ Blood,APTT,"2019-11-19 14:05:31"
43
+ Blood,INR,"2019-11-19 14:05:31"
44
+ Blood,ESR,"2019-11-19 14:05:31"
45
+ Blood,"Sickling Test","2019-11-19 14:05:31"
46
+ Blood,"Manual Differential & Cell Morphology","2019-11-19 14:05:31"
47
+ Blood,"Pancreatic Function Test","2019-11-19 14:05:31"
48
+ Blood,"Direct Coombs Test","2019-11-19 14:05:31"
49
+ Blood,Calcium,"2019-11-19 14:05:31"
50
+ Blood,Phosphorus,"2019-11-19 14:05:31"
51
+ Blood,Magnesium,"2019-11-19 14:05:31"
52
+ Blood,"Creatinine Kinase","2019-11-19 14:05:31"
53
+ Blood,"Uric Acid","2019-11-19 14:05:31"
54
+ Blood,"ESBL Test","2019-11-19 14:05:31"
55
+ Blood,"APTT Ratio","2019-11-19 14:05:31"
56
+ Blood,Fibronogen,"2019-11-19 14:05:31"
57
+ Blood,"50:50 Normal Plasma","2019-11-19 14:05:31"
58
+ Blood,"50:50 Mix FVIII Deficient","2019-11-19 14:05:31"
59
+ Blood,"50:50 Mix F-IX Deficient","2019-11-19 14:05:31"
60
+ Blood,"Factor VIII Assay","2019-11-19 14:05:31"
61
+ Blood,"Factor IX Assay","2019-11-19 14:05:31"
62
+ Blood,TT,"2019-11-19 14:05:31"
63
+ Blood,"Coagulation Assay","2019-11-19 14:05:31"
64
+ Blood,"Cardiac Function Tests","2019-11-19 14:05:31"
65
+ Blood,Minerals,"2019-11-19 14:05:31"
66
+ Blood,BioMarkers,"2019-11-19 14:05:31"
67
+ Blood,"Iron Studies","2019-11-19 14:05:31"
68
+ Blood,HbA1c,"2019-11-19 14:05:31"
69
+ Blood,Microalbumin,"2019-11-19 14:05:31"
70
+ Blood,Microprotein,"2019-11-19 14:05:31"
71
+ Blood,"Von Willebrand Factor","2019-11-19 14:05:31"
72
+ Blood,"Viral Load","2019-11-19 14:05:31"
73
+ Blood,"Urine Lam","2019-11-19 14:05:31"
74
+ Blood,Urea,"2019-11-19 14:05:31"
75
+ Blood,Creatinine,"2019-11-19 14:05:31"
76
+ Blood,ALT,"2019-11-19 14:05:31"
77
+ Blood,AST,"2019-11-19 14:05:31"
78
+ "Pleural Fluid","Gram Stain","2019-11-19 14:05:31"
79
+ "Pleural Fluid","Culture & Sensitivity","2019-11-19 14:05:31"
80
+ "Pleural Fluid","Cell Count","2019-11-19 14:05:31"
81
+ "Pleural Fluid",Differential,"2019-11-19 14:05:31"
82
+ "Pleural Fluid","ZN Stain","2019-11-19 14:05:31"
83
+ "Pleural Fluid","TB Tests","2019-11-19 14:05:31"
84
+ "Pleural Fluid","ESBL Test","2019-11-19 14:05:31"
85
+ "Ascitic Fluid","Gram Stain","2019-11-19 14:05:31"
86
+ "Ascitic Fluid","Culture & Sensitivity","2019-11-19 14:05:31"
87
+ "Ascitic Fluid","Cell Count","2019-11-19 14:05:31"
88
+ "Ascitic Fluid",Differential,"2019-11-19 14:05:31"
89
+ "Ascitic Fluid","ZN Stain","2019-11-19 14:05:31"
90
+ "Ascitic Fluid","TB Tests","2019-11-19 14:05:31"
91
+ "Ascitic Fluid","ESBL Test","2019-11-19 14:05:31"
92
+ "Pericardial Fluid","Gram Stain","2019-11-19 14:05:31"
93
+ "Pericardial Fluid","Culture & Sensitivity","2019-11-19 14:05:31"
94
+ "Pericardial Fluid","Cell Count","2019-11-19 14:05:31"
95
+ "Pericardial Fluid",Differential,"2019-11-19 14:05:31"
96
+ "Pericardial Fluid","ZN Stain","2019-11-19 14:05:31"
97
+ "Pericardial Fluid","TB Tests","2019-11-19 14:05:31"
98
+ "Pericardial Fluid","ESBL Test","2019-11-19 14:05:31"
99
+ "Peritoneal Fluid","Gram Stain","2019-11-19 14:05:31"
100
+ "Peritoneal Fluid","Culture & Sensitivity","2019-11-19 14:05:31"
101
+ "Peritoneal Fluid","Cell Count","2019-11-19 14:05:31"
102
+ "Peritoneal Fluid",Differential,"2019-11-19 14:05:31"
103
+ "Peritoneal Fluid","ZN Stain","2019-11-19 14:05:31"
104
+ "Peritoneal Fluid","TB Tests","2019-11-19 14:05:31"
105
+ "Peritoneal Fluid","ESBL Test","2019-11-19 14:05:31"
106
+ HVS,"Gram Stain","2019-11-19 14:05:31"
107
+ HVS,"Culture & Sensitivity","2019-11-19 14:05:31"
108
+ HVS,"Wet prep","2019-11-19 14:05:31"
109
+ HVS,"HVS analysis","2019-11-19 14:05:31"
110
+ HVS,"ESBL Test","2019-11-19 14:05:31"
111
+ Swabs,"Gram Stain","2019-11-19 14:05:31"
112
+ Swabs,"Culture & Sensitivity","2019-11-19 14:05:31"
113
+ Swabs,"Wet prep","2019-11-19 14:05:31"
114
+ Swabs,"ESBL Test","2019-11-19 14:05:31"
115
+ Pus,"Gram Stain","2019-11-19 14:05:31"
116
+ Pus,"Culture & Sensitivity","2019-11-19 14:05:31"
117
+ Pus,"TB Tests","2019-11-19 14:05:31"
118
+ Pus,"ESBL Test","2019-11-19 14:05:31"
119
+ Stool,"Gram Stain","2019-11-19 14:05:31"
120
+ Stool,"Culture & Sensitivity","2019-11-19 14:05:31"
121
+ Stool,"Stool Analysis","2019-11-19 14:05:31"
122
+ Urine,"Gram Stain","2019-11-19 14:05:31"
123
+ Urine,"Culture & Sensitivity","2019-11-19 14:05:31"
124
+ Urine,"Urine Macroscopy","2019-11-19 14:05:31"
125
+ Urine,"Urine Microscopy","2019-11-19 14:05:31"
126
+ Urine,"Urine Chemistries","2019-11-19 14:05:31"
127
+ Urine,"Pregnancy Test","2019-11-19 14:05:31"
128
+ Urine,"ESBL Test","2019-11-19 14:05:31"
129
+ Urine,"Urine Lam","2019-11-19 14:05:31"
130
+ Urine,"Urine Dipstick","2019-11-19 14:05:31"
131
+ Other,"Gram Stain","2019-11-19 14:05:31"
132
+ Other,"Culture & Sensitivity","2019-11-19 14:05:31"
133
+ Other,"Cell Count","2019-11-19 14:05:31"
134
+ Other,"ZN Stain","2019-11-19 14:05:31"
135
+ Swab,"Culture & Sensitivity","2019-11-19 14:05:31"
136
+ Swab,"Semen Analysis","2019-11-19 14:05:31"
137
+ Plasma,"Gram Stain","2019-11-19 14:05:31"
138
+ Plasma,"Culture & Sensitivity","2019-11-19 14:05:31"
139
+ Plasma,"Cell Count","2019-11-19 14:05:31"
140
+ Plasma,"ZN Stain","2019-11-19 14:05:31"
141
+ "DBS (Free drop to DBS card)","Viral Load","2019-11-19 14:05:31"
142
+ "DBS (Using capillary tube)","Viral Load","2019-11-19 14:05:31"