wordjelly-auth 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/lib/auth/version.rb +1 -1
  3. data/spec/auth_test.rb +7 -0
  4. data/spec/controllers/auth/admin_create_users_controller_spec.rb +141 -0
  5. data/spec/controllers/auth/clients_controller_spec.rb +223 -0
  6. data/spec/controllers/auth/search_controller_spec.rb +5 -0
  7. data/spec/controllers/auth/shopping/discounts_controller_spec.rb +54 -0
  8. data/spec/controllers/auth/users/profiles_controller_spec.rb +5 -0
  9. data/spec/dummy/README.rdoc +28 -0
  10. data/spec/dummy/Rakefile +6 -0
  11. data/spec/dummy/app/assets/javascripts/activity.js +2 -0
  12. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  13. data/spec/dummy/app/assets/javascripts/home.js +2 -0
  14. data/spec/dummy/app/assets/javascripts/pollymer.min.js +170 -0
  15. data/spec/dummy/app/assets/javascripts/tests.js +2 -0
  16. data/spec/dummy/app/assets/javascripts/topics.js +2 -0
  17. data/spec/dummy/app/assets/stylesheets/activity.css +4 -0
  18. data/spec/dummy/app/assets/stylesheets/application.scss +16 -0
  19. data/spec/dummy/app/assets/stylesheets/home.css +4 -0
  20. data/spec/dummy/app/assets/stylesheets/tests.css +4 -0
  21. data/spec/dummy/app/assets/stylesheets/topics.css +4 -0
  22. data/spec/dummy/app/controllers/activity_controller.rb +3 -0
  23. data/spec/dummy/app/controllers/admins/confirmations_controller.rb +28 -0
  24. data/spec/dummy/app/controllers/admins/omniauth_callbacks_controller.rb +28 -0
  25. data/spec/dummy/app/controllers/admins/passwords_controller.rb +32 -0
  26. data/spec/dummy/app/controllers/admins/registrations_controller.rb +60 -0
  27. data/spec/dummy/app/controllers/admins/sessions_controller.rb +5 -0
  28. data/spec/dummy/app/controllers/admins/unlocks_controller.rb +28 -0
  29. data/spec/dummy/app/controllers/application_controller.rb +49 -0
  30. data/spec/dummy/app/controllers/home_controller.rb +13 -0
  31. data/spec/dummy/app/controllers/otp_controller.rb +3 -0
  32. data/spec/dummy/app/controllers/shopping/cart_items_controller.rb +28 -0
  33. data/spec/dummy/app/controllers/shopping/carts_controller.rb +4 -0
  34. data/spec/dummy/app/controllers/shopping/discounts_controller.rb +3 -0
  35. data/spec/dummy/app/controllers/shopping/payments_controller.rb +5 -0
  36. data/spec/dummy/app/controllers/shopping/products_controller.rb +2 -0
  37. data/spec/dummy/app/controllers/tests_controller.rb +58 -0
  38. data/spec/dummy/app/controllers/topics_controller.rb +63 -0
  39. data/spec/dummy/app/controllers/users/sessions_controller.rb +3 -0
  40. data/spec/dummy/app/controllers/webhooks_controller.rb +13 -0
  41. data/spec/dummy/app/helpers/activity_helper.rb +2 -0
  42. data/spec/dummy/app/helpers/api/v1/token_auth_helper.rb +2 -0
  43. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  44. data/spec/dummy/app/helpers/home_helper.rb +2 -0
  45. data/spec/dummy/app/helpers/tests_helper.rb +2 -0
  46. data/spec/dummy/app/helpers/topics_helper.rb +2 -0
  47. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  48. data/spec/dummy/app/mailers/new.rb +3 -0
  49. data/spec/dummy/app/models/activity.rb +3 -0
  50. data/spec/dummy/app/models/admin.rb +12 -0
  51. data/spec/dummy/app/models/noti.rb +48 -0
  52. data/spec/dummy/app/models/noti_response.rb +9 -0
  53. data/spec/dummy/app/models/shopping/cart.rb +3 -0
  54. data/spec/dummy/app/models/shopping/cart_item.rb +7 -0
  55. data/spec/dummy/app/models/shopping/discount.rb +3 -0
  56. data/spec/dummy/app/models/shopping/payment.rb +16 -0
  57. data/spec/dummy/app/models/shopping/product.rb +6 -0
  58. data/spec/dummy/app/models/test.rb +5 -0
  59. data/spec/dummy/app/models/topic.rb +75 -0
  60. data/spec/dummy/app/models/user.rb +95 -0
  61. data/spec/dummy/app/views/home/index.html.erb +6 -0
  62. data/spec/dummy/app/views/home/send_notification.html.erb +2 -0
  63. data/spec/dummy/app/views/layouts/application.html.erb +26 -0
  64. data/spec/dummy/app/views/layouts/mailer.html.erb +8 -0
  65. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  66. data/spec/dummy/app/views/new/notification.html.erb +1 -0
  67. data/spec/dummy/app/views/new/notification.text.erb +1 -0
  68. data/spec/dummy/app/views/shopping/_navigation_options.html.erb +1 -0
  69. data/spec/dummy/app/views/tests/_form.html.erb +25 -0
  70. data/spec/dummy/app/views/tests/edit.html.erb +6 -0
  71. data/spec/dummy/app/views/tests/index.html.erb +33 -0
  72. data/spec/dummy/app/views/tests/new.html.erb +5 -0
  73. data/spec/dummy/app/views/tests/show.html.erb +14 -0
  74. data/spec/dummy/app/views/topics/_form.html.erb +25 -0
  75. data/spec/dummy/app/views/topics/edit.html.erb +6 -0
  76. data/spec/dummy/app/views/topics/index.html.erb +29 -0
  77. data/spec/dummy/app/views/topics/new.html.erb +5 -0
  78. data/spec/dummy/app/views/topics/show.html.erb +14 -0
  79. data/spec/dummy/app/views/users/sessions/create.js.erb +6 -0
  80. data/spec/dummy/bin/bundle +3 -0
  81. data/spec/dummy/bin/rails +4 -0
  82. data/spec/dummy/bin/rake +4 -0
  83. data/spec/dummy/bin/setup +29 -0
  84. data/spec/dummy/config.ru +8 -0
  85. data/spec/dummy/config/application.rb +31 -0
  86. data/spec/dummy/config/boot.rb +5 -0
  87. data/spec/dummy/config/environment.rb +4 -0
  88. data/spec/dummy/config/environments/development.rb +57 -0
  89. data/spec/dummy/config/environments/production.rb +92 -0
  90. data/spec/dummy/config/environments/test.rb +44 -0
  91. data/spec/dummy/config/initializers/assets.rb +11 -0
  92. data/spec/dummy/config/initializers/aws.rb +15 -0
  93. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  94. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  95. data/spec/dummy/config/initializers/devise.rb +273 -0
  96. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  97. data/spec/dummy/config/initializers/inflections.rb +16 -0
  98. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  99. data/spec/dummy/config/initializers/preinitializer.rb +167 -0
  100. data/spec/dummy/config/initializers/redis.rb +9 -0
  101. data/spec/dummy/config/initializers/session_store.rb +3 -0
  102. data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
  103. data/spec/dummy/config/locales/devise.en.yml +62 -0
  104. data/spec/dummy/config/locales/en.yml +25 -0
  105. data/spec/dummy/config/mongoid.yml +142 -0
  106. data/spec/dummy/config/redis.yml +14 -0
  107. data/spec/dummy/config/routes.rb +38 -0
  108. data/spec/dummy/config/secrets.yml +22 -0
  109. data/spec/dummy/db/seeds.rb +48 -0
  110. data/spec/dummy/lib/admin/parameter_sanitizer.rb +9 -0
  111. data/spec/dummy/lib/assets/files/test_names.json +1 -0
  112. data/spec/dummy/lib/user/parameter_sanitizer.rb +8 -0
  113. data/spec/dummy/public/404.html +67 -0
  114. data/spec/dummy/public/422.html +67 -0
  115. data/spec/dummy/public/500.html +66 -0
  116. data/spec/dummy/public/favicon.ico +0 -0
  117. data/spec/dummy/shoryuken.yml +5 -0
  118. data/spec/dummy/sidekiq.yml +9 -0
  119. data/spec/dummy/sidekiq_prep.sh +6 -0
  120. data/spec/dummy/spec/controllers/activity_controller_spec.rb +5 -0
  121. data/spec/dummy/spec/controllers/tests_controller_spec.rb +141 -0
  122. data/spec/dummy/spec/factories/tests.rb +6 -0
  123. data/spec/dummy/spec/fixtures/new/send_notification +3 -0
  124. data/spec/dummy/spec/helpers/activity_helper_spec.rb +15 -0
  125. data/spec/dummy/spec/helpers/tests_helper_spec.rb +15 -0
  126. data/spec/dummy/spec/mailers/new_spec.rb +18 -0
  127. data/spec/dummy/spec/mailers/previews/new_preview.rb +13 -0
  128. data/spec/dummy/spec/models/test_spec.rb +5 -0
  129. data/spec/dummy/spec/requests/tests_spec.rb +10 -0
  130. data/spec/dummy/spec/routing/tests_routing_spec.rb +39 -0
  131. data/spec/dummy/spec/views/tests/edit.html.erb_spec.rb +21 -0
  132. data/spec/dummy/spec/views/tests/index.html.erb_spec.rb +22 -0
  133. data/spec/dummy/spec/views/tests/new.html.erb_spec.rb +21 -0
  134. data/spec/dummy/spec/views/tests/show.html.erb_spec.rb +16 -0
  135. data/spec/dummy/test/controllers/api/v1/token_auth_controller_test.rb +7 -0
  136. data/spec/dummy/test/controllers/home_controller_test.rb +9 -0
  137. data/spec/dummy/test/controllers/oauth_tests_controller_test.rb +7 -0
  138. data/spec/dummy/test/fixtures/oauth_tests.yml +11 -0
  139. data/spec/dummy/test/fixtures/users.yml +7 -0
  140. data/spec/dummy/test/models/oauth_test_test.rb +7 -0
  141. data/spec/dummy/test/models/user_test.rb +7 -0
  142. data/spec/factories/client_factory.rb +77 -0
  143. data/spec/features/additional_login_param_feature_spec.rb +63 -0
  144. data/spec/features/extension_spec.rb +680 -0
  145. data/spec/features/redirect_disable_spec.rb +74 -0
  146. data/spec/fixtures/auth/clients.yml +13 -0
  147. data/spec/helpers/auth/admin_create_users_helper_spec.rb +15 -0
  148. data/spec/helpers/auth/resource_helper_spec.rb +15 -0
  149. data/spec/helpers/auth/search_helper_spec.rb +15 -0
  150. data/spec/helpers/auth/users/profiles_helper_spec.rb +15 -0
  151. data/spec/integration/navigation_test.rb +8 -0
  152. data/spec/mailers/auth/notifier_spec.rb +5 -0
  153. data/spec/mailers/previews/auth/notifier_preview.rb +4 -0
  154. data/spec/models/auth/admin_create_user_spec.rb +5 -0
  155. data/spec/models/auth/client_test.rb +9 -0
  156. data/spec/models/auth/shopping/discount_spec.rb +5 -0
  157. data/spec/rails_helper.rb +70 -0
  158. data/spec/requests/admin/confirmation_request_spec.rb +164 -0
  159. data/spec/requests/admin/password_request_spec.rb +191 -0
  160. data/spec/requests/admin/registration_request_spec.rb +574 -0
  161. data/spec/requests/admin/session_request_spec.rb +352 -0
  162. data/spec/requests/admin/unlock_request_spec.rb +178 -0
  163. data/spec/requests/admin_create_user_request_spec.rb +303 -0
  164. data/spec/requests/background_job_request_spec.rb +28 -0
  165. data/spec/requests/cart_item_request_spec.rb +381 -0
  166. data/spec/requests/cart_request_spec.rb +451 -0
  167. data/spec/requests/client_request_spec.rb +65 -0
  168. data/spec/requests/discount_request_spec.rb +589 -0
  169. data/spec/requests/payment_request_spec.rb +1254 -0
  170. data/spec/requests/search_request_spec.rb +173 -0
  171. data/spec/requests/topic_request_spec.rb +138 -0
  172. data/spec/requests/user/additional_login_param_and_email_validation_spec.rb +673 -0
  173. data/spec/requests/user/confirmation_request_spec.rb +189 -0
  174. data/spec/requests/user/omniauth_callbacks_request_spec.rb +682 -0
  175. data/spec/requests/user/otp_basic_flow_request_spec.rb +512 -0
  176. data/spec/requests/user/password_request_spec.rb +216 -0
  177. data/spec/requests/user/registration_request_spec.rb +615 -0
  178. data/spec/requests/user/session_request_spec.rb +361 -0
  179. data/spec/requests/user/unlock_request_spec.rb +208 -0
  180. data/spec/routing/admin/admin_routes_spec.rb +15 -0
  181. data/spec/routing/auth/admin_create_users_routing_spec.rb +39 -0
  182. data/spec/routing/clients_controller_routes_spec.rb +75 -0
  183. data/spec/routing/engine_routes_spec.rb +16 -0
  184. data/spec/spec_helper.rb +138 -0
  185. data/spec/support/factory_girl.rb +3 -0
  186. data/spec/support/omniauth_macros.rb +195 -0
  187. data/spec/support/payumoney_support.rb +11 -0
  188. data/spec/support/sign_in_support.rb +361 -0
  189. data/spec/support/wait_for_ajax.rb +11 -0
  190. data/spec/views/auth/admin_create_users/edit.html.erb_spec.rb +14 -0
  191. data/spec/views/auth/admin_create_users/index.html.erb_spec.rb +14 -0
  192. data/spec/views/auth/admin_create_users/new.html.erb_spec.rb +14 -0
  193. data/spec/views/auth/admin_create_users/show.html.erb_spec.rb +11 -0
  194. data/spec/views/auth/shopping/discounts/create.html.erb_spec.rb +5 -0
  195. data/spec/views/auth/shopping/discounts/destroy.html.erb_spec.rb +5 -0
  196. data/spec/views/auth/shopping/discounts/edit.html.erb_spec.rb +5 -0
  197. data/spec/views/auth/shopping/discounts/index.html.erb_spec.rb +5 -0
  198. data/spec/views/auth/shopping/discounts/new.html.erb_spec.rb +5 -0
  199. data/spec/views/auth/shopping/discounts/show.html.erb_spec.rb +5 -0
  200. data/spec/views/auth/shopping/discounts/update.html.erb_spec.rb +5 -0
  201. data/spec/views/profile/show.html.erb_spec.rb +5 -0
  202. metadata +401 -3
@@ -0,0 +1,14 @@
1
+ #config/redis.yml
2
+ default:
3
+ host: localhost
4
+ port: 6379
5
+ development:
6
+ db: 0
7
+ # namespace: appname_dev
8
+ test:
9
+ db: 1
10
+ # namespace: appname_test
11
+ production:
12
+ db: 2
13
+ host: 192.168.1.100
14
+ # namespace: appname_prod
@@ -0,0 +1,38 @@
1
+ Rails.application.routes.default_url_options[:host] = 'localhost:3000'
2
+ Rails.application.routes.draw do
3
+
4
+ resources :tests
5
+ resources :topics
6
+
7
+
8
+ get 'get_activities' , :action => "get_activities", :controller => "activity"
9
+
10
+ get 'send_notification', :action => "send_notification", :controller => "home", :as => "send_notification"
11
+
12
+
13
+
14
+ root "home#index"
15
+
16
+ mount_routes Auth.configuration.auth_resources
17
+
18
+
19
+ ##PAYUMONEY CALLBACK ROUTE
20
+ post 'shopping/payments/:id', to: 'shopping/payments#update', as: "payumoney_payment_gateway_callback_path"
21
+
22
+ post 'sms_webhook', to: 'webhooks#sms_webhook'
23
+
24
+ post 'email_webhook', to: 'webhooks#email_webhook'
25
+
26
+ ##app-specific routes
27
+ namespace :api do
28
+
29
+ namespace :v1 do
30
+
31
+ post "user_info" => 'token_auth#index'
32
+
33
+ end
34
+
35
+ end
36
+
37
+
38
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 15687298ce9082d8d65504441c21b2c3d24f1e12f0d79c8d840d63abb35bfc9306a1abb64bb2dc10cb9334e9bbc3bcf598e46992adde3d05be041dc66ec70b84
15
+
16
+ test:
17
+ secret_key_base: 6501782081f621be2a87a3730896efb8beaa0e95021f9d3f2aa4605c3a0255f1b9a8196ca4ac6788f1753ef6cb6bd719df5c125a87deebcc12c387e07f21c9c8
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,48 @@
1
+ require "faker"
2
+
3
+ def create_cart_items
4
+ Shopping::CartItem.delete_all
5
+ json_tests = JSON.parse(IO.read("#{Rails.root}/lib/assets/files/test_names.json"))
6
+ counter = 0
7
+ r = Random.new
8
+ json_tests["data"].each do |test_as_array|
9
+ t = Shopping::CartItem.new
10
+ t.name = test_as_array[0]
11
+ t.description = ActionView::Base.full_sanitizer.sanitize(test_as_array[1])
12
+ t.sample_type = ActionView::Base.full_sanitizer.sanitize(test_as_array[2])
13
+ t.price = Faker::Commerce.price
14
+ t.accept_order_at_percentage_of_price = (r.rand(0..100)/100).to_f
15
+ t.public = true
16
+ ## using this to skip it having to save a cart item without the resource_class added.
17
+ t.save
18
+ puts "saved cart item: #{counter}"
19
+ counter+=1
20
+ end
21
+ end
22
+
23
+ def create_users
24
+ User.all.each do |u|
25
+ u.destroy
26
+ end
27
+
28
+ 20.times do
29
+ u = User.new
30
+ u.email = Faker::Internet.email
31
+ u.confirmed_at = Time.now
32
+ u.password = "password"
33
+ u.versioned_create
34
+ puts u.errors.full_messages
35
+ #puts "------------------ CREATED ---------------------------"
36
+ u = User.find(u.id.to_s)
37
+ u.additional_login_param = Faker::Number.between(9561137096, 9661137096).to_s
38
+ u.additional_login_param_status = 2
39
+ User.skip_callback(:save, :after, :send_sms_otp)
40
+ u.versioned_update({"additional_login_param" => nil, "additional_login_param_status" => nil})
41
+ puts u.errors.full_messages
42
+ #puts u.attributes.to_s
43
+ end
44
+
45
+ end
46
+
47
+
48
+ create_users
@@ -0,0 +1,9 @@
1
+ class Admin::ParameterSanitizer < Devise::ParameterSanitizer
2
+ def initialize(resource_class, resource_name, params)
3
+ super(resource_class, resource_name, params)
4
+ permit(:sign_up, keys: Auth.configuration.auth_resources[resource_class.to_s][:login_params] + [:name])
5
+ permit(:account_update, keys: Auth.configuration.auth_resources[resource_class.to_s][:login_params] + [:name])
6
+ end
7
+ end
8
+
9
+
@@ -0,0 +1 @@
1
+ {"data": [["1,25D, Dihydroxy Vitamin D","<a href='tests/450.html' target='_blank'>1,25-Dihydroxy Vitamin D</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","0-9"],["1,25-Dihydroxy Vitamin D","<a href='tests/450.html' target='_blank'>1,25-Dihydroxy Vitamin D</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","0-9"],["11-Deoxycortisol","<a href='tests/79.html' target='_blank'>11-Deoxycortisol</a>","Blood","Serum Separator Tube (SST)","Yes","No","0-9"],["11-DOC","<a href='tests/79.html' target='_blank'>11-Deoxycortisol</a>","Blood","Serum Separator Tube (SST)","Yes","No","0-9"],["1349","<a href='tests/917.html' target='_blank'>DYT1 Mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","0-9"],["17 Hydroxy Pregnenolone","<a href='tests/823.html' target='_blank'>17 Hydroxy Pregnenolone</a>","","N/A","No","Yes","0-9"],["17-Hydroxy Progesterone, 17HP","<a href='tests/514.html' target='_blank'>17-Hydroxy Progesterone, 17HP</a>","Blood","Serum Separator Tube (SST)","Yes","No","0-9"],["17PN TEST NO LONGER AVAILABLE","<a href='tests/823.html' target='_blank'>17 Hydroxy Pregnenolone</a>","","N/A","No","Yes","0-9"],["1-Methyl Histamine urine","<a href='tests/187.html' target='_blank'>Methyl Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","0-9"],["25D","<a href='tests/451.html' target='_blank'>25-Hydroxy Vitamin D</a>","Blood","Serum Separator Tube (SST)","No","No","0-9"],["25-Hydroxy Vitamin D","<a href='tests/451.html' target='_blank'>25-Hydroxy Vitamin D</a>","Blood","Serum Separator Tube (SST)","No","No","0-9"],["2C19","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","0-9"],["2C9","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","0-9"],["2D6","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","0-9"],["3-Methoxynoradrenaline serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","0-9"],["3-Methoxynoradrenaline urine","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","0-9"],["5 Hydroxy Indole Acetic Acid, Urine","<a href='tests/31.html' target='_blank'>5 Hydroxy Indole Acetic Acid, Urine</a>","24 hour urine","Urine container Acid 24 hour","No","No","0-9"],["5FC (Flucytosine)","<a href='tests/512.html' target='_blank'>Flucytosine (5FC)</a>","Blood","Serum Separator Tube (SST)","No","No","0-9"],["5HIAA","<a href='tests/31.html' target='_blank'>5 Hydroxy Indole Acetic Acid, Urine</a>","24 hour urine","Urine container Acid 24 hour","No","No","0-9"],["5HT","<a href='tests/201.html' target='_blank'>Serotonin</a>","Blood","Plain Tube 10 ml","Yes","No","0-9"],["5-Hydroxy Tryptamine","<a href='tests/201.html' target='_blank'>Serotonin</a>","Blood","Plain Tube 10 ml","Yes","No","0-9"],["6MMP","<a href='tests/908.html' target='_blank'>Azathioprine metabolites</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","0-9"],["6TGN","<a href='tests/908.html' target='_blank'>Azathioprine metabolites</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","0-9"],["AAT","<a href='tests/568.html' target='_blank'>Alpha-1-Antitrypsin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["ABO group & DCT","<a href='tests/663.html' target='_blank'>Cord Blood Studies</a>","Cord blood","Special collection kit; contact laboratory.","No","No","a-c"],["Abscess Fluid -Microscopy and culture","<a href='tests/358.html' target='_blank'>Pus, Microscopy and culture</a>","Pus","Sterile container","No","No","a-c"],["Acanthamoeba examination","<a href='tests/80.html' target='_blank'>Acanthamoeba examination</a>","Corneal scrapi_","Corneal collection kit","No","No","a-c"],["ACCR","<a href='tests/585.html' target='_blank'>Amylase, Urine</a>","Urine","Urine container Plain 24 hour","No","No","a-c"],["ACE (Angiotensin Converting Enzyme)","<a href='tests/508.html' target='_blank'>ACE (Angiotensin Converting Enzyme)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["ACE, CSF","<a href='tests/163.html' target='_blank'>Angiotensin Converting Enzyme, CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["Acetaminophen","<a href='tests/684.html' target='_blank'>Paracetamol</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Acetyl Choline Receptor antibodies","<a href='tests/581.html' target='_blank'>Anti-Acetyl Choline Receptor antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Aciclovir","<a href='tests/540.html' target='_blank'>Acyclovir</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Acid Elution test for foetal haemoglobin","<a href='tests/673.html' target='_blank'>Kleihauer Test</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Acid Maltase","<a href='tests/771.html' target='_blank'>Acid Maltase</a>","Blood & Urine","EDTA Tube 4 ml","Yes","Yes","a-c"],["Acid Phosphatase","<a href='tests/579.html' target='_blank'>Acid Phosphatase</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["ACR (Albumin creatinine ratio)","<a href='tests/573.html' target='_blank'>Microalbumin, Random</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["ACTH","<a href='tests/575.html' target='_blank'>Adrenocorticotrophic Hormone (ACTH)</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Actinomyces culture - IUD","<a href='tests/69.html' target='_blank'>Intra Uterine Device (IUD)</a>","Intra Uterine _","Sterile container","No","No","a-c"],["Activated Partial Thromboplastin Time","<a href='tests/598.html' target='_blank'>Activated Partial Thromboplastin Time</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Activated Protein C Resistance","<a href='tests/599.html' target='_blank'>Activated Protein C Resistance</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Active B12","<a href='tests/907.html' target='_blank'>Holotranscobalamin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Acyclovir","<a href='tests/540.html' target='_blank'>Acyclovir</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Acyl Carnitine Profile","<a href='tests/774.html' target='_blank'>Acyl Carnitine Profile</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","a-c"],["Acyl Carnitines","<a href='tests/774.html' target='_blank'>Acyl Carnitine Profile</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","a-c"],["ADAMTS13 Assay","<a href='tests/947.html' target='_blank'>ADAMTS13 Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","a-c"],["Adenosine Deaminase, Pleural Fluid","<a href='tests/164.html' target='_blank'>Adenosine Deaminase, Pleural Fluid</a>","Pleural Fluid","Sterile container","Yes","No","a-c"],["Adenovirus antibodies","<a href='tests/81.html' target='_blank'>Adenovirus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Adenovirus antigen","<a href='tests/282.html' target='_blank'>Faeces, Detection of Viral antigens</a>","Faeces (random_","Faeces container","No","No","a-c"],["Adenovirus Investigation - ocular specimens","<a href='tests/82.html' target='_blank'>Adenovirus Investigation - ocular specimens</a>","Conjuctival sw_","Dry Swab","Yes","No","a-c"],["Adenovirus PCR- respiratory","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","a-c"],["ADH","<a href='tests/576.html' target='_blank'>Antidiuretic Hormone (ADH)</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Adrenal antibodies","<a href='tests/580.html' target='_blank'>Anti-Adrenal Cortex antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Adrenal Cortex antibodies","<a href='tests/580.html' target='_blank'>Anti-Adrenal Cortex antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Adrenaline, Urine","<a href='tests/425.html' target='_blank'>Catecholamines, Urine</a>","Timed Urine","Urine container Acid 24 hour","No","No","a-c"],["Adrenocorticotrophic Hormone (ACTH)","<a href='tests/575.html' target='_blank'>Adrenocorticotrophic Hormone (ACTH)</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["AEGT","<a href='tests/489.html' target='_blank'>Apolipoprotein E Genotype</a>","Blood","ACD tube","No","Yes","a-c"],["AFB (Acid and alcohol fast bacilli)- blood","<a href='tests/387.html' target='_blank'>Blood Cultures, Mycobacterium</a>","Blood","Blood culture bottles (BACTEC) Mycolytic","No","No","a-c"],["AFB (Acid and Alcohol Fast Bacilli)- CSF","<a href='tests/267.html' target='_blank'>CSF Investigation for Mycobacteria.</a>","CSF","CSF tube(s)","No","No","a-c"],["AFB (Acid and Alcohol Fast Bacilli)- fluid","<a href='tests/383.html' target='_blank'>Aspirated fluid - Mycobacteria investigation</a>","Fluid","Sterile container","No","No","a-c"],["AFB (Acid and Alcohol Fast Bacilli)- sputum _","<a href='tests/384.html' target='_blank'>Sputum - Mycobacteria investigation</a>","Sputum","Urine/Specimen container 50ml","No","No","a-c"],["AFB (Acid and Alcohol Fast Bacilli)- tissue _","<a href='tests/385.html' target='_blank'>Tissue, for AFB Investigation</a>","Tissue","Sterile container","No","No","a-c"],["AFB (Acid and Alcohol Fast Bacilli)- urine M_","<a href='tests/386.html' target='_blank'>Urine, Early morning for Mycobacterium</a>","Urine","Urine container 200ml","No","No","a-c"],["AFP","<a href='tests/566.html' target='_blank'>Alpha-Fetoprotein</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["AIDS Serology","<a href='tests/318.html' target='_blank'>Human Immunodeficiency Virus antibodies Type 1 & 2</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Air samples","<a href='tests/15.html' target='_blank'>Air samples</a>","Agar plates","Agar plates (settle plates)","No","No","a-c"],["Al","<a href='tests/586.html' target='_blank'>Aluminium</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["ALA","<a href='tests/775.html' target='_blank'>Aminolevulinate</a>","Urine","Urine/Specimen container 50ml","Yes","No","a-c"],["Alanine Amino Transferase","<a href='tests/584.html' target='_blank'>Alanine Aminotransferase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alanine Aminotransferase","<a href='tests/584.html' target='_blank'>Alanine Aminotransferase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alb","<a href='tests/574.html' target='_blank'>Albumin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Albumin","<a href='tests/574.html' target='_blank'>Albumin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Albumin creatinine ratio","<a href='tests/573.html' target='_blank'>Microalbumin, Random</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Alcohol","<a href='tests/466.html' target='_blank'>Ethanol</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","a-c"],["Aldolase","<a href='tests/119.html' target='_blank'>Aldolase</a>","","N/A","No","No","a-c"],["Aldolase TEST NO LONGER AVAILABLE","<a href='tests/119.html' target='_blank'>Aldolase</a>","","N/A","No","No","a-c"],["Aldosterone","<a href='tests/572.html' target='_blank'>Aldosterone</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Aldosterone, Urine","<a href='tests/577.html' target='_blank'>Aldosterone, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","a-c"],["Alk Phos","<a href='tests/571.html' target='_blank'>Alkaline Phosphatase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alkaline Phosphatase","<a href='tests/571.html' target='_blank'>Alkaline Phosphatase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alkaline phosphatase fractionation","<a href='tests/570.html' target='_blank'>Alkaline Phosphatase Isoenzymes</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alkaline Phosphatase Isoenzymes","<a href='tests/570.html' target='_blank'>Alkaline Phosphatase Isoenzymes</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Allergy IgE antibodies","<a href='tests/751.html' target='_blank'>Specific IgE Testing for Allergens</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Allergy testing","<a href='tests/751.html' target='_blank'>Specific IgE Testing for Allergens</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["ALP","<a href='tests/571.html' target='_blank'>Alkaline Phosphatase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alpha 1 Anti Trypsin - Faecal Clearance","<a href='tests/786.html' target='_blank'>Alpha 1 Anti Trypsin - Faecal Clearance</a>","Faeces","Faeces container","Yes","No","a-c"],["Alpha 1 Anti Trypsin Genotype","<a href='tests/788.html' target='_blank'>Alpha 1 Anti Trypsin Genotype</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["alpha 1 antitrypsin","<a href='tests/567.html' target='_blank'>Alpha-1-Anti-Trypsin Phenotype</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Alpha Chain","<a href='tests/569.html' target='_blank'>Alpha Glycoprotein Subunit</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Alpha Galactosidase A","<a href='tests/787.html' target='_blank'>Alpha Galactosidase A</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Alpha Glycoprotein Subunit","<a href='tests/569.html' target='_blank'>Alpha Glycoprotein Subunit</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Alpha Tocopherol","<a href='tests/65.html' target='_blank'>Vitamin E</a>","Blood","Lithium Heparin Tube","Yes","No","a-c"],["Alpha-1-Antitrypsin","<a href='tests/568.html' target='_blank'>Alpha-1-Antitrypsin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alpha-1-Anti-Trypsin Phenotype","<a href='tests/567.html' target='_blank'>Alpha-1-Anti-Trypsin Phenotype</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Alpha-Fetoprotein","<a href='tests/566.html' target='_blank'>Alpha-Fetoprotein</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Alpha-Glucosidase","<a href='tests/929.html' target='_blank'>Alpha-Glucosidase</a>","Blood","EDTA Tube 6ml","Yes","Yes","a-c"],["ALT","<a href='tests/584.html' target='_blank'>Alanine Aminotransferase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Aluminium","<a href='tests/586.html' target='_blank'>Aluminium</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["AMA (Anti-Mitochondrial antibody)","<a href='tests/411.html' target='_blank'>Anti-Mitochondrial antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Ambulatory Blood Pressures","<a href='tests/875.html' target='_blank'>Blood Presure Monitor</a>","Monitor Record_","N/A","Yes","Yes","a-c"],["AMH","<a href='tests/900.html' target='_blank'>Anti-Mullerian Hormone</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Amikacin","<a href='tests/592.html' target='_blank'>Amikacin</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Amino Acid Screen","<a href='tests/165.html' target='_blank'>Amino Acid Screen, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","a-c"],["Amino Acid Screen, Plasma","<a href='tests/165.html' target='_blank'>Amino Acid Screen, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","a-c"],["Amino Acids, Urine","<a href='tests/591.html' target='_blank'>Amino Acids, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","a-c"],["Aminolevulinate","<a href='tests/775.html' target='_blank'>Aminolevulinate</a>","Urine","Urine/Specimen container 50ml","Yes","No","a-c"],["Amiodarone","<a href='tests/590.html' target='_blank'>Amiodarone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Amiodarone Metabolites","<a href='tests/590.html' target='_blank'>Amiodarone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Ammonia","<a href='tests/589.html' target='_blank'>Ammonia</a>","Blood","Lithium Heparin Tube","No","No","a-c"],["Ammonium","<a href='tests/589.html' target='_blank'>Ammonia</a>","Blood","Lithium Heparin Tube","No","No","a-c"],["Amoebic antibodies","<a href='tests/83.html' target='_blank'>Entamoeba histolytica antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Amphetamines","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Amphetamines, Urine","<a href='tests/587.html' target='_blank'>Amphetamines, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Amylase","<a href='tests/578.html' target='_blank'>Amylase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Amylase, Urine","<a href='tests/585.html' target='_blank'>Amylase, Urine</a>","Urine","Urine container Plain 24 hour","No","No","a-c"],["Amylase/Creatinine Clearance Ratio","<a href='tests/585.html' target='_blank'>Amylase, Urine</a>","Urine","Urine container Plain 24 hour","No","No","a-c"],["ANA (Anti-Nuclear antibodies)","<a href='tests/481.html' target='_blank'>Anti-Nuclear antibodies (ANA)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anabolic Steroid screen","<a href='tests/911.html' target='_blank'>Anabolic Steroid screen</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","a-c"],["ANCA","<a href='tests/430.html' target='_blank'>Anti-Neutrophil Cytoplasmic Abs</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Ancotil","<a href='tests/512.html' target='_blank'>Flucytosine (5FC)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["and stroke-like episodes.","<a href='tests/155.html' target='_blank'>MELAS mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Androgen Metabolites, Urine","<a href='tests/583.html' target='_blank'>Androgen Metabolites, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","a-c"],["Androgens, Urine","<a href='tests/583.html' target='_blank'>Androgen Metabolites, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","a-c"],["Androstenedione","<a href='tests/582.html' target='_blank'>Androstenedione</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Aneuploidy screen","<a href='tests/106.html' target='_blank'>Maternal Serum Screening</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Angiotensin Converting Enzyme","<a href='tests/508.html' target='_blank'>ACE (Angiotensin Converting Enzyme)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Angiotensin Converting Enzyme, CSF","<a href='tests/163.html' target='_blank'>Angiotensin Converting Enzyme, CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["Anti GM1 antibodies","<a href='tests/551.html' target='_blank'>Anti-Ganglioside GM1 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti leucocyte antibodies","<a href='tests/603.html' target='_blank'>HLA antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","a-c"],["Anti Neutrophil Anitbodies","<a href='tests/777.html' target='_blank'>Anti Neutrophil Anitbodies</a>","Blood","Plain Tube 10 ml","Yes","No","a-c"],["Anti Platelet Antibodies","<a href='tests/776.html' target='_blank'>Anti Platelet Antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","a-c"],["Anti Saccharomyces Cerevisiae Antibodies","<a href='tests/789.html' target='_blank'>ASCA</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Acetyl Choline Receptor antibodies","<a href='tests/581.html' target='_blank'>Anti-Acetyl Choline Receptor antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Adrenal antibodies","<a href='tests/580.html' target='_blank'>Anti-Adrenal Cortex antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Adrenal Cortex antibodies","<a href='tests/580.html' target='_blank'>Anti-Adrenal Cortex antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Basement Membrane of Skin antibodies","<a href='tests/593.html' target='_blank'>Anti-Basement Membrane of Skin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Beta-2-Glycoprotein I antibodies","<a href='tests/19.html' target='_blank'>Anti-Beta-2-Glycoprotein I antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Antibody Screen (Red Cell antibodies)","<a href='tests/616.html' target='_blank'>Antibody Screen (Red Cell antibodies)</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Antibody titre","<a href='tests/616.html' target='_blank'>Antibody Screen (Red Cell antibodies)</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Anti-BP180 antibodies","<a href='tests/956.html' target='_blank'>Anti-BP180 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-BP230 antibodies","<a href='tests/957.html' target='_blank'>Anti-BP230 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Cardiac Muscle antibodies","<a href='tests/414.html' target='_blank'>Anti-Heart Muscle antibodies (Cardiac Muscle Abs)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Cardiolipin antibodies","<a href='tests/555.html' target='_blank'>Anti-Cardiolipin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-CCP","<a href='tests/765.html' target='_blank'>Anti-cyclic citrullinated peptide</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-CV2 antibodies","<a href='tests/149.html' target='_blank'>Anti-CV2 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-cyclic citrullinated peptide","<a href='tests/765.html' target='_blank'>Anti-cyclic citrullinated peptide</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Desmoglein 1 antibodies","<a href='tests/954.html' target='_blank'>Anti-Desmoglein 1 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Desmoglein 3 antibodies","<a href='tests/955.html' target='_blank'>Anti-Desmoglein 3 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Antidiuretic Hormone","<a href='tests/576.html' target='_blank'>Antidiuretic Hormone (ADH)</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Antidiuretic Hormone (ADH)","<a href='tests/576.html' target='_blank'>Antidiuretic Hormone (ADH)</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Anti-DNA antibodies","<a href='tests/554.html' target='_blank'>Anti-DNA antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Double Stranded DNA","<a href='tests/554.html' target='_blank'>Anti-DNA antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-ENA (Extractable Nuclear Antigens)","<a href='tests/553.html' target='_blank'>Anti-ENA (Extractable Nuclear Antigens)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Envoplakin antibodies","<a href='tests/958.html' target='_blank'>Anti-Envoplakin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Extractable Nuclear Antigens","<a href='tests/553.html' target='_blank'>Anti-ENA (Extractable Nuclear Antigens)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-F-Actin antibodies","<a href='tests/940.html' target='_blank'>Anti-F-Actin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Factor Xa","<a href='tests/615.html' target='_blank'>Anti-Factor Xa</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Anti-factor Xa assay","<a href='tests/615.html' target='_blank'>Anti-Factor Xa</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Anti-GAD antibodies","<a href='tests/122.html' target='_blank'>GAD antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Ganglioside GM1 antibodies","<a href='tests/551.html' target='_blank'>Anti-Ganglioside GM1 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-GBM antibodies","<a href='tests/549.html' target='_blank'>Anti-GBM antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Gliadin antibodies","<a href='tests/548.html' target='_blank'>Anti-Gliadin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-GQ1b antibodies","<a href='tests/21.html' target='_blank'>Anti-GQ1b antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Heart Muscle antibodies (Cardiac Muscle_","<a href='tests/414.html' target='_blank'>Anti-Heart Muscle antibodies (Cardiac Muscle Abs)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Histone antibodies","<a href='tests/409.html' target='_blank'>Anti-Histone antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Hu antibodies","<a href='tests/413.html' target='_blank'>Anti-Hu antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-IA-2 Antibodies","<a href='tests/768.html' target='_blank'>Anti-IA-2 Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Insulin antibodies","<a href='tests/696.html' target='_blank'>Anti-Insulin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Interferon antibodies","<a href='tests/240.html' target='_blank'>Anti-Interferon antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-intracellular substance of squamous epi_","<a href='tests/694.html' target='_blank'>Anti-intracellular substance of squamous epitheli_</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Intrinsic Factor antibodies","<a href='tests/20.html' target='_blank'>Anti-Intrinsic Factor antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Lactoferrin antibodies","<a href='tests/933.html' target='_blank'>Anti-Lactoferrin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Liver Kidney Microsome antibodies","<a href='tests/412.html' target='_blank'>Anti-Liver Kidney Microsome antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-LKM antibodies","<a href='tests/412.html' target='_blank'>Anti-Liver Kidney Microsome antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-M2 antibodies","<a href='tests/950.html' target='_blank'>Anti-M2 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-MAG Antibodies","<a href='tests/830.html' target='_blank'>Anti-MAG Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Anti-Mitochondrial antibodies","<a href='tests/411.html' target='_blank'>Anti-Mitochondrial antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-MPO antibodies","<a href='tests/446.html' target='_blank'>Anti-Myeloperoxidase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Mullerian Hormone","<a href='tests/900.html' target='_blank'>Anti-Mullerian Hormone</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Anti-MuSK Antibodies","<a href='tests/238.html' target='_blank'>Anti-MuSK Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Anti-Myelin Associated Glycoprotien Antibodi_","<a href='tests/830.html' target='_blank'>Anti-MAG Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Anti-Myeloperoxidase antibodies","<a href='tests/446.html' target='_blank'>Anti-Myeloperoxidase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Myositis antibodies","<a href='tests/921.html' target='_blank'>Anti-Myositis antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Neuronal antibodies","<a href='tests/7.html' target='_blank'>Anti-Neuronal antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Neutrophil Cytoplasmic Abs","<a href='tests/430.html' target='_blank'>Anti-Neutrophil Cytoplasmic Abs</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-NMDA Receptor Antibodies","<a href='tests/913.html' target='_blank'>NMDA Receptor Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Anti-Nuclear antibodies (ANA)","<a href='tests/481.html' target='_blank'>Anti-Nuclear antibodies (ANA)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Ovary antibodies","<a href='tests/480.html' target='_blank'>Anti-Ovary antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Parietal Cell antibodies","<a href='tests/479.html' target='_blank'>Anti-Parietal Cell antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Phospholipid antibodies","<a href='tests/555.html' target='_blank'>Anti-Cardiolipin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Pituitary antibodies","<a href='tests/478.html' target='_blank'>Anti-Pituitary antibodies</a>","","N/A","No","No","a-c"],["Anti-Proteinase 3 antibodies","<a href='tests/18.html' target='_blank'>Anti-Proteinase 3 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Prothrombin Antibody","<a href='tests/948.html' target='_blank'>Anti-Prothrombin Antibody</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Purkinje Cell antibodies","<a href='tests/477.html' target='_blank'>Anti-Purkinje Cell antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Ri Antibodies","<a href='tests/148.html' target='_blank'>Anti-Ri Antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Salivary Duct antibodies","<a href='tests/476.html' target='_blank'>Anti-Salivary Duct antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Skeletal Muscle antibodies","<a href='tests/467.html' target='_blank'>Anti-Skeletal Muscle antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Smooth Muscle antibodies","<a href='tests/475.html' target='_blank'>Anti-Smooth Muscle antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Soluble Liver Antigen antibodies","<a href='tests/951.html' target='_blank'>Anti-Soluble Liver Antigen antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Sp100 antibodies","<a href='tests/952.html' target='_blank'>Anti-Sp100 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-SRP antibodies","<a href='tests/922.html' target='_blank'>Anti-SRP antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Streptolysin O Titre","<a href='tests/84.html' target='_blank'>ASOT, (Anti-Streptolysin O Titre)</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Anti-Striated Muscle antibodies","<a href='tests/467.html' target='_blank'>Anti-Skeletal Muscle antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Thrombin III Activity","<a href='tests/658.html' target='_blank'>Anti-Thrombin III Activity</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Anti-Thyroglobulin antibodies","<a href='tests/473.html' target='_blank'>Anti-Thyroglobulin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Thyroid antibodies","<a href='tests/728.html' target='_blank'>Anti-Thyroid antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Thyroid Peroxidase antibodies","<a href='tests/472.html' target='_blank'>Anti-Thyroid Peroxidase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Transglutaminase antibodies","<a href='tests/471.html' target='_blank'>Anti-Transglutaminase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-Type VII Collagen antibodies","<a href='tests/953.html' target='_blank'>Anti-Type VII Collagen antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Anti-VGKC Antibodies","<a href='tests/914.html' target='_blank'>Anti-Voltage-Gated Potassium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Anti-Voltage-Gated Potassium Channel Antibod_","<a href='tests/914.html' target='_blank'>Anti-Voltage-Gated Potassium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Anti-Yo antibodies","<a href='tests/147.html' target='_blank'>Anti-Yo antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Antral biopsy for Helicobacter pylori","<a href='tests/70.html' target='_blank'>Gastric biopsy for Helicobacter pylori</a>","Gastric biopsy_","Sterile container","No","No","a-c"],["AP","<a href='tests/571.html' target='_blank'>Alkaline Phosphatase</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["APC Gene","<a href='tests/223.html' target='_blank'>Familial Adenomatous Polyposis Genetic testing</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["APCR","<a href='tests/599.html' target='_blank'>Activated Protein C Resistance</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["APCR gene mutation","<a href='tests/667.html' target='_blank'>Leiden Mutation (Factor V)</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Apolipoprotein (a)","<a href='tests/470.html' target='_blank'>Lipoprotein (a)</a>","Blood","Serum Separator Tube (SST)","No","Yes","a-c"],["Apolipoprotein A1","<a href='tests/469.html' target='_blank'>Apolipoprotein A1</a>","Blood","Serum Separator Tube (SST)","No","Yes","a-c"],["Apolipoprotein B","<a href='tests/468.html' target='_blank'>Apolipoprotein B</a>","Blood","Serum Separator Tube (SST)","No","Yes","a-c"],["Apolipoprotein C II","<a href='tests/488.html' target='_blank'>Apolipoprotein C II</a>","","N/A","No","No","a-c"],["Apolipoprotein C II TEST NO LONGER AVAILABLE","<a href='tests/488.html' target='_blank'>Apolipoprotein C II</a>","","N/A","No","No","a-c"],["Apolipoprotein E Genotype","<a href='tests/489.html' target='_blank'>Apolipoprotein E Genotype</a>","Blood","ACD tube","No","Yes","a-c"],["APTT","<a href='tests/598.html' target='_blank'>Activated Partial Thromboplastin Time</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Aqueous Humour, Microscopy and culture","<a href='tests/85.html' target='_blank'>Aqueous Humour, Microscopy and culture</a>","Aspirate","Sterile container","No","No","a-c"],["Aratac","<a href='tests/590.html' target='_blank'>Amiodarone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Arsenic, Urine","<a href='tests/134.html' target='_blank'>Arsenic, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","a-c"],["Arsenic, Whole Blood","<a href='tests/135.html' target='_blank'>Arsenic, Whole Blood</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["Arterial Blood Gases","<a href='tests/559.html' target='_blank'>Blood Gases (Includes Glucose & Electrolytes)</a>","Blood","Syringe * Blood Gas","No","No","a-c"],["Arterial line","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","a-c"],["ASCA","<a href='tests/789.html' target='_blank'>ASCA</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Ascites - cytology","<a href='tests/525.html' target='_blank'>Cytology, Peritoneal Fluid</a>","Peritoneal Flu_","Urine/Specimen container 50ml","No","No","a-c"],["Ascitic Fluid - cytology","<a href='tests/525.html' target='_blank'>Cytology, Peritoneal Fluid</a>","Peritoneal Flu_","Urine/Specimen container 50ml","No","No","a-c"],["Ascitic Fluid, Microscopy and culture","<a href='tests/86.html' target='_blank'>Ascitic Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","a-c"],["Ascorbic acid","<a href='tests/461.html' target='_blank'>Vitamin C</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Asialo-Transferrin","<a href='tests/40.html' target='_blank'>Asialo-Transferrin</a>","Body Fluid","Sterile container","No","Yes","a-c"],["ASOT, (Anti-Streptolysin O Titre)","<a href='tests/84.html' target='_blank'>ASOT, (Anti-Streptolysin O Titre)</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Aspartate Amino Transferase","<a href='tests/492.html' target='_blank'>AST (Aspartate Amino Transferase)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Aspergillus Precipitins","<a href='tests/120.html' target='_blank'>Aspergillus Precipitins</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Aspirate - Microscopy and culture","<a href='tests/290.html' target='_blank'>Fluid, Microscopy and culture</a>","Fluid","Sterile container","No","No","a-c"],["Aspirate (Ascitic) - Microscopy and culture","<a href='tests/86.html' target='_blank'>Ascitic Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","a-c"],["Aspirate (Pericardial) - Microscopy and cult_","<a href='tests/351.html' target='_blank'>Pericardial Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","a-c"],["Aspirate (Peritoneal) - Microscopy and cultu_","<a href='tests/353.html' target='_blank'>Peritoneal Fluid, Microscopy and culture</a>","Aspirated Fluid","Sterile container","No","No","a-c"],["Aspirate (Pleural)- Microscopy and culture","<a href='tests/354.html' target='_blank'>Pleural Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","a-c"],["Aspirated fluid - Mycobacteria investigation","<a href='tests/383.html' target='_blank'>Aspirated fluid - Mycobacteria investigation</a>","Fluid","Sterile container","No","No","a-c"],["Asprin","<a href='tests/749.html' target='_blank'>Salicylate</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["AST (Aspartate Amino Transferase)","<a href='tests/492.html' target='_blank'>AST (Aspartate Amino Transferase)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["AT3","<a href='tests/658.html' target='_blank'>Anti-Thrombin III Activity</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Atenolol","<a href='tests/218.html' target='_blank'>Atenolol</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["ATIII","<a href='tests/658.html' target='_blank'>Anti-Thrombin III Activity</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Attest indicators","<a href='tests/67.html' target='_blank'>Spore strips</a>","Biological ind_","Biological indicators","No","No","a-c"],["Atypical Mycobacteria (Mycobacterium avium c_","<a href='tests/387.html' target='_blank'>Blood Cultures, Mycobacterium</a>","Blood","Blood culture bottles (BACTEC) Mycolytic","No","No","a-c"],["Atypical Mycobacteria (Mycobacterium avium c_","<a href='tests/383.html' target='_blank'>Aspirated fluid - Mycobacteria investigation</a>","Fluid","Sterile container","No","No","a-c"],["Atypical Mycobacteria (Mycobacterium avium c_","<a href='tests/384.html' target='_blank'>Sputum - Mycobacteria investigation</a>","Sputum","Urine/Specimen container 50ml","No","No","a-c"],["Atypical Mycobacteria (Mycobacterium avium c_","<a href='tests/385.html' target='_blank'>Tissue, for AFB Investigation</a>","Tissue","Sterile container","No","No","a-c"],["Atypical pneumonia PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","a-c"],["Atypical pneumonia serology - Legionella","<a href='tests/329.html' target='_blank'>Legionella pneumophila antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Atypical pneumonia serology - Mycoplasma","<a href='tests/341.html' target='_blank'>Mycoplasma pneumoniae antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","a-c"],["Atypical pneumonia serology (Chlamydia)","<a href='tests/357.html' target='_blank'>Chlamydia antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Australian encephalitis antibodies","<a href='tests/340.html' target='_blank'>Murray Valley Encephalitis Virus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Australian Encephalitis Virus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Autoclave testing","<a href='tests/67.html' target='_blank'>Spore strips</a>","Biological ind_","Biological indicators","No","No","a-c"],["Auto-haemolysis Test","<a href='tests/657.html' target='_blank'>Auto-haemolysis Test</a>","Blood","Lithium Heparin Tube WITHOUT GEL","No","No","a-c"],["Avian Precipitins","<a href='tests/491.html' target='_blank'>Avian Precipitins</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Axilla swab- MRSA","<a href='tests/337.html' target='_blank'>MRSA Screen</a>","Swab, nose, pe_","Transswab- swab in transport medium","No","No","a-c"],["Axilla Swab, Neonatal Sepsis","<a href='tests/244.html' target='_blank'>Axilla Swab, Neonatal Sepsis</a>","Surface swab","Transswab- swab in transport medium","No","No","a-c"],["Azathioprine metabolites","<a href='tests/908.html' target='_blank'>Azathioprine metabolites</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["B12","<a href='tests/655.html' target='_blank'>Vitamin B12</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["b-27","<a href='tests/602.html' target='_blank'>HLA B-27</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["B2GPI antibodies","<a href='tests/19.html' target='_blank'>Anti-Beta-2-Glycoprotein I antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["B2M","<a href='tests/482.html' target='_blank'>Beta 2-Microglobulin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Bacterial rDNA PCR","<a href='tests/245.html' target='_blank'>Bacterial rDNA PCR</a>","Fluid, Tissue _","Sterile container","Yes","No","a-c"],["Bactrim","<a href='tests/462.html' target='_blank'>Bactrim</a>","Blood","N/A","No","No","a-c"],["Bactrim TEST NO LONGER AVAILABLE","<a href='tests/462.html' target='_blank'>Bactrim</a>","Blood","N/A","No","No","a-c"],["BAL - cytology","<a href='tests/517.html' target='_blank'>Cytology, Bronchio-Alveolar Lavage</a>","BAL (Bronchioa_","Bronchial Suction Trap Container","No","No","a-c"],["Balanitis","<a href='tests/350.html' target='_blank'>Penile Swab</a>","Penile swab","ENT/urethral swab- wire swab in transport medium","No","No","a-c"],["Barbiturates","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Barbiturates, Urine","<a href='tests/45.html' target='_blank'>Barbiturates, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Barmah Forest Virus antibodies","<a href='tests/246.html' target='_blank'>Barmah Forest Virus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Bartholins Gland Swab or Aspirate, M&C","<a href='tests/247.html' target='_blank'>Bartholins Gland Swab or Aspirate, M&C</a>","Pus","Transswab- swab in transport medium","No","No","a-c"],["Bartonella henselae antibodies","<a href='tests/256.html' target='_blank'>Cat Scratch Disease antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Basement Membrane of Skin antibodies","<a href='tests/593.html' target='_blank'>Anti-Basement Membrane of Skin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["BCL-1","<a href='tests/782.html' target='_blank'>BCL-1</a>","Blood and/or B_","EDTA Tube 4 ml","Yes","No","a-c"],["BCL-2","<a href='tests/762.html' target='_blank'>BCL-2</a>","Blood and/or B_","EDTA Tube 4 ml","Yes","No","a-c"],["BCR-ABL t(9;22)RT PCR","<a href='tests/763.html' target='_blank'>BCR-ABL t(9;22)RT PCR</a>","Blood and/or B_","EDTA Tube 4 ml","Yes","No","a-c"],["Becker Muscular Dystrophy (BMD) Genetic Test_","<a href='tests/153.html' target='_blank'>Becker Muscular Dystrophy (BMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Bence Jones Protein urine","<a href='tests/415.html' target='_blank'>Protein Electrophoresis, Urine</a>","Early morning _","Urine/Specimen container 50ml","No","No","a-c"],["Benzodiazepines","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Benzodiazepines, Serum","<a href='tests/185.html' target='_blank'>Benzodiazepines, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Benzodiazepines, Urine","<a href='tests/490.html' target='_blank'>Benzodiazepines, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Benzylpenicillin","<a href='tests/681.html' target='_blank'>FREE Penicillin G</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Beta 2-Microglobulin","<a href='tests/482.html' target='_blank'>Beta 2-Microglobulin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Beta hCG","<a href='tests/515.html' target='_blank'>Human Chorionic Gonadotrophin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Beta-2-Glycoprotein I antibodies","<a href='tests/19.html' target='_blank'>Anti-Beta-2-Glycoprotein I antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Beta-2-Transferrin","<a href='tests/40.html' target='_blank'>Asialo-Transferrin</a>","Body Fluid","Sterile container","No","Yes","a-c"],["Beta-carotene","<a href='tests/888.html' target='_blank'>Carotene</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Beta-hydroxy Butyrate","<a href='tests/167.html' target='_blank'>Beta-hydroxy Butyrate</a>","Blood","Fluoride oxalate Tube 2 ml","Yes","No","a-c"],["Beta-Interferon ABS TEST NO LONGER AVAILABLE","<a href='tests/824.html' target='_blank'>Interferon Antibodies </a>","","Serum Separator Tube (SST)","No","No","a-c"],["Beta-Sitosterol","<a href='tests/168.html' target='_blank'>Beta-Sitosterol</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Beutler test","<a href='tests/121.html' target='_blank'>Galactoscreen</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","a-c"],["BF","<a href='tests/613.html' target='_blank'>Blood Film Examination</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["BHCG","<a href='tests/515.html' target='_blank'>Human Chorionic Gonadotrophin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["BHCG Qualitative","<a href='tests/735.html' target='_blank'>Pregnancy Test (Qualitative test for hCG)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["B-Hydroxy Butyrate","<a href='tests/167.html' target='_blank'>Beta-hydroxy Butyrate</a>","Blood","Fluoride oxalate Tube 2 ml","Yes","No","a-c"],["Bicarbonate","<a href='tests/494.html' target='_blank'>Bicarbonate</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Bile Acids","<a href='tests/125.html' target='_blank'>Bile Acids</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Bile Acids, Urine","<a href='tests/790.html' target='_blank'>Bile Acids, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","a-c"],["Bile, Microscopy and culture","<a href='tests/248.html' target='_blank'>Bile, Microscopy and culture</a>","Bile","Sterile container","No","No","a-c"],["Bilharzia- urine specimen","<a href='tests/73.html' target='_blank'>Urine, Terminal specimen for schistosomes</a>","Terminal speci_","Urine/Specimen container 50ml","No","No","a-c"],["Bilirubin fractionation","<a href='tests/486.html' target='_blank'>Direct Bilirubin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Bilirubin, Total","<a href='tests/485.html' target='_blank'>Bilirubin, Total</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["B-Interferon antibodies","<a href='tests/240.html' target='_blank'>Anti-Interferon antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Biological testing- Steriliser","<a href='tests/67.html' target='_blank'>Spore strips</a>","Biological ind_","Biological indicators","No","No","a-c"],["Bite wound - Microscopy and culture","<a href='tests/406.html' target='_blank'>Wound swab, Microscopy and culture</a>","Wound swab","Transswab- swab in transport medium","No","No","a-c"],["BK Virus DNA","<a href='tests/249.html' target='_blank'>BK Virus DNA</a>","","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Bl Gp & abs","<a href='tests/612.html' target='_blank'>Blood Group and Antibody Screen</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Bleeding Time","<a href='tests/614.html' target='_blank'>Bleeding Time</a>","","N/A","No","No","a-c"],["Blister swab - Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","a-c"],["Blood Arsenic","<a href='tests/135.html' target='_blank'>Arsenic, Whole Blood</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["Blood Cadmium","<a href='tests/136.html' target='_blank'>Cadmium, Whole Blood</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["Blood Chromium","<a href='tests/138.html' target='_blank'>Chromium, Whole Blood</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["Blood Cultures","<a href='tests/250.html' target='_blank'>Blood Cultures</a>","Blood","Blood culture bottles (BACTEC) Aerobic and anaerobic","No","No","a-c"],["Blood Cultures, Mycobacterium","<a href='tests/387.html' target='_blank'>Blood Cultures, Mycobacterium</a>","Blood","Blood culture bottles (BACTEC) Mycolytic","No","No","a-c"],["Blood Film Examination","<a href='tests/613.html' target='_blank'>Blood Film Examination</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Blood Gases (Includes Glucose & Electrolytes)","<a href='tests/559.html' target='_blank'>Blood Gases (Includes Glucose & Electrolytes)</a>","Blood","Syringe * Blood Gas","No","No","a-c"],["Blood Group and Antibody Screen","<a href='tests/612.html' target='_blank'>Blood Group and Antibody Screen</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Blood Histamine","<a href='tests/821.html' target='_blank'>Histamine, BLOOD</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Blood Lead","<a href='tests/713.html' target='_blank'>Lead, Whole Blood</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Blood Manganese","<a href='tests/105.html' target='_blank'>Manganese, Whole Blood</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Blood Mercury","<a href='tests/710.html' target='_blank'>Mercury, Whole Blood</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Blood Myoglobin","<a href='tests/679.html' target='_blank'>Myoglobin, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Blood porphyrins","<a href='tests/110.html' target='_blank'>Porphyrins, Blood</a>","Blood","Lithium Heparin Tube","Yes","No","a-c"],["Blood Presure Monitor","<a href='tests/875.html' target='_blank'>Blood Presure Monitor</a>","Monitor Record_","N/A","Yes","Yes","a-c"],["BMD","<a href='tests/221.html' target='_blank'>Duchenne Muscular Dystrophy (DMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["BMD gene","<a href='tests/153.html' target='_blank'>Becker Muscular Dystrophy (BMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["BNP","<a href='tests/889.html' target='_blank'>B-type Natriuretic Peptide</a>","Blood","EDTA Tube 4 ml","No","Yes","a-c"],["Boil swab - Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","a-c"],["Bone Marrow Aspiration or Trephine","<a href='tests/605.html' target='_blank'>Bone Marrow Aspiration or Trephine</a>","Bone marrow","EDTA Tube 4 ml","No","No","a-c"],["Bone Marrow for Metabolid Bone Disease, Hist_","<a href='tests/48.html' target='_blank'>Histology, Bone Marrow for Metabolic Bone Disease</a>","Bone biopsy or_","Formalin container","No","No","a-c"],["Bone Marrow Trephine Biopsy, Histology","<a href='tests/49.html' target='_blank'>Histology, Bone Marrow Trephine Biopsy</a>","Bone marrow, t_","Formalin container","No","No","a-c"],["Bone Turnover Markers (Urine)","<a href='tests/172.html' target='_blank'>N-Telopeptide, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","a-c"],["Bone-specific alkaline phosphatase","<a href='tests/943.html' target='_blank'>Bone-specific alkaline phosphatase</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Bordetella pertussis antibodies","<a href='tests/251.html' target='_blank'>Bordetella pertussis antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Bordetella pertussis PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","a-c"],["Bordetella pertussis PCR","<a href='tests/101.html' target='_blank'>Bordetella pertussis PCR</a>","","Sterile container","No","Yes","a-c"],["Bordetella pertussis, Microscopy and culture","<a href='tests/343.html' target='_blank'>Nasopharyngeal Swab, microscopy and culture</a>","Nasopharyngeal_","Urine/Specimen container 50ml","No","No","a-c"],["Borrelia Burgdorferi antibodies","<a href='tests/333.html' target='_blank'>Lyme Disease antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["BP Monitor","<a href='tests/875.html' target='_blank'>Blood Presure Monitor</a>","Monitor Record_","N/A","Yes","Yes","a-c"],["Brain Natriuretic Peptide","<a href='tests/889.html' target='_blank'>B-type Natriuretic Peptide</a>","Blood","EDTA Tube 4 ml","No","Yes","a-c"],["BRCA1","<a href='tests/791.html' target='_blank'>Breast Cancer Genes</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["BRCA2","<a href='tests/791.html' target='_blank'>Breast Cancer Genes</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Breast Cancer Genes","<a href='tests/791.html' target='_blank'>Breast Cancer Genes</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Breast Cyst Fluid - cytology","<a href='tests/520.html' target='_blank'>Cytology, Cyst Fluid</a>","Cyst Fluid","Urine/Specimen container 50ml","No","No","a-c"],["Breath test for Helicobacter pylori","<a href='tests/68.html' target='_blank'>Helicobacter pylori breath test</a>","Kit available _","Breath test kit container","No","No","a-c"],["Bromides, Plasma","<a href='tests/905.html' target='_blank'>Bromides, Plasma</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Bronchial Brushings","<a href='tests/527.html' target='_blank'>Cytology, Bronchial Brush</a>","Bronchial Brus_","Glass Slide","No","No","a-c"],["Bronchial Washing - cytology","<a href='tests/526.html' target='_blank'>Cytology, Bronchial Wash</a>","Bronchial Wash_","Bronchial Suction Trap Container","No","No","a-c"],["Bronchial washings","<a href='tests/252.html' target='_blank'>Broncho/Alveolar Lavage, Microscopy and Culture</a>","Bronchial wash_","Bronchial Suction Trap Container","No","No","a-c"],["Bronchioalveolar Lavage - cytology","<a href='tests/517.html' target='_blank'>Cytology, Bronchio-Alveolar Lavage</a>","BAL (Bronchioa_","Bronchial Suction Trap Container","No","No","a-c"],["Broncho/Alveolar Lavage, Microscopy and Cult_","<a href='tests/252.html' target='_blank'>Broncho/Alveolar Lavage, Microscopy and Culture</a>","Bronchial wash_","Bronchial Suction Trap Container","No","No","a-c"],["Brucella abortus antibodies","<a href='tests/253.html' target='_blank'>Brucella abortus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Brushings","<a href='tests/527.html' target='_blank'>Cytology, Bronchial Brush</a>","Bronchial Brus_","Glass Slide","No","No","a-c"],["B-type Natriuretic Peptide","<a href='tests/889.html' target='_blank'>B-type Natriuretic Peptide</a>","Blood","EDTA Tube 4 ml","No","Yes","a-c"],["BUN","<a href='tests/453.html' target='_blank'>Urea</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Burn swab - Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","a-c"],["Bursa Fluid - Microscopy and culture","<a href='tests/381.html' target='_blank'>Synovial Fluid, Microscopy and culture</a>","Synovial Fluid","Sterile container","No","No","a-c"],["Butyrylcholinesterase","<a href='tests/420.html' target='_blank'>Cholinesterase, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["C Peptide","<a href='tests/550.html' target='_blank'>C Peptide</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C. difficile Cytotoxin","<a href='tests/254.html' target='_blank'>Faeces, Clostridium difficile Toxin A & B.</a>","Faeces","Faeces container","No","No","a-c"],["C.jejuni antibodies","<a href='tests/255.html' target='_blank'>Campylobacter antibodies</a>","","N/A","No","No","a-c"],["C1 Esterase Inhibitor, Antigenic Assay","<a href='tests/443.html' target='_blank'>C1 Esterase Inhibitor, Antigenic Assay</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C1 Esterase Inhibitor, Functional Assay","<a href='tests/434.html' target='_blank'>C1 Esterase Inhibitor, Functional Assay</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C14 breath test","<a href='tests/68.html' target='_blank'>Helicobacter pylori breath test</a>","Kit available _","Breath test kit container","No","No","a-c"],["C1E Antigenic (C1EA)","<a href='tests/443.html' target='_blank'>C1 Esterase Inhibitor, Antigenic Assay</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C1E Functional (C1EF)","<a href='tests/434.html' target='_blank'>C1 Esterase Inhibitor, Functional Assay</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C1q Complement","<a href='tests/442.html' target='_blank'>Complement Component, C1q</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C2 Complement","<a href='tests/441.html' target='_blank'>Complement Component, C2</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C24:C22 ratio","<a href='tests/127.html' target='_blank'>Fatty Acid Ratio</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["C26:C22 ratio","<a href='tests/127.html' target='_blank'>Fatty Acid Ratio</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["C3 Complement","<a href='tests/440.html' target='_blank'>Complement Component, C3</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C3 Nephritic Factor","<a href='tests/899.html' target='_blank'>C3 Nephritic Factor</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["C4 Complement","<a href='tests/439.html' target='_blank'>Complement Component, C4</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C5 Complement","<a href='tests/438.html' target='_blank'>Complement Component, C5</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["C6 Complement","<a href='tests/429.html' target='_blank'>Complement Component, C6</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["C677T mutation screen","<a href='tests/188.html' target='_blank'>Methylene Tetrahydrofolate Reductase</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["C7 Complement","<a href='tests/437.html' target='_blank'>Complement Component, C7</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["C8 Complement","<a href='tests/445.html' target='_blank'>Complement Component, C8</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["C9 Complement","<a href='tests/435.html' target='_blank'>Complement Component, C9</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Ca","<a href='tests/560.html' target='_blank'>Calcium</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CA-125","<a href='tests/564.html' target='_blank'>CA-125</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CA-15.3","<a href='tests/563.html' target='_blank'>CA-15.3</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CA-19.9","<a href='tests/562.html' target='_blank'>CA-19.9</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CADASIL Electron Microscopy","<a href='tests/537.html' target='_blank'>CADASIL Electron Microscopy</a>","Tissue","Urine/Specimen container 50ml","Yes","Yes","a-c"],["Cadasil Genetic Testing","<a href='tests/923.html' target='_blank'>Cadasil Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Cadmium, Urine","<a href='tests/137.html' target='_blank'>Cadmium, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","a-c"],["Cadmium, Whole Blood","<a href='tests/136.html' target='_blank'>Cadmium, Whole Blood</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["Caeruloplasmin","<a href='tests/561.html' target='_blank'>Caeruloplasmin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Caffeine","<a href='tests/166.html' target='_blank'>Caffeine</a>","Blood","EDTA Tube 6ml","Yes","No","a-c"],["Calcitonin","<a href='tests/556.html' target='_blank'>Calcitonin</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Calcium","<a href='tests/560.html' target='_blank'>Calcium</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Calcium Activity","<a href='tests/565.html' target='_blank'>Calcium Activity (Ionised)</a>","Blood","Syringe * Blood Gas","No","No","a-c"],["Calcium Activity (Ionised)","<a href='tests/565.html' target='_blank'>Calcium Activity (Ionised)</a>","Blood","Syringe * Blood Gas","No","No","a-c"],["Calcium Channel Antibodies","<a href='tests/793.html' target='_blank'>Calcium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Calcium, Urine","<a href='tests/558.html' target='_blank'>Calcium, Urine</a>","Urine","Urine container Acid 24 hour","No","No","a-c"],["Calcium/Magnesium/Phosphate","<a href='tests/937.html' target='_blank'>CMP</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Calculi, Urinary","<a href='tests/47.html' target='_blank'>Calculi, Urinary</a>","Calculus","Urine/Specimen container 50ml","No","No","a-c"],["Calicivirus - Faeces","<a href='tests/286.html' target='_blank'>Faeces, Viral Agents</a>","Faeces (random_","Faeces container","Yes","Yes","a-c"],["Calprotectin","<a href='tests/909.html' target='_blank'>Calprotectin</a>","Faeces","Faeces container","No","Yes","a-c"],["Calreticulin","<a href='tests/935.html' target='_blank'>Calreticulin</a>","Whole Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["CAMP TEST NO LONGER AVAILABLE","<a href='tests/802.html' target='_blank'>Cyclic Amp</a>","","N/A","No","No","a-c"],["Campestanol","<a href='tests/177.html' target='_blank'>Campestanol</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Campestanol TEST NO LONGER AVAILABLE","<a href='tests/177.html' target='_blank'>Campestanol</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Campylobacter","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","a-c"],["Campylobacter antibodies","<a href='tests/255.html' target='_blank'>Campylobacter antibodies</a>","","N/A","No","No","a-c"],["Canalicular material for M&C","<a href='tests/327.html' target='_blank'>Lacrimal swab</a>","Swab OR Pus","Transswab- swab in transport medium","No","No","a-c"],["Cannabinoids","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Cannabinoids, Urine","<a href='tests/557.html' target='_blank'>Cannabinoids, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Cannula","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","a-c"],["CAPD fluid -Microscopy and culture","<a href='tests/352.html' target='_blank'>Peritoneal Dialysis Fluid, Microscopy and culture</a>","Bag, CAPD bag.","Dialysis bag","No","No","a-c"],["Carbamazepine","<a href='tests/410.html' target='_blank'>Carbamazepine</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Carbim","<a href='tests/410.html' target='_blank'>Carbamazepine</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Carbohydrate-Deficient Transferrin","<a href='tests/184.html' target='_blank'>Carbohydrate-Deficient Transferrin</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Carbon Monoxide","<a href='tests/505.html' target='_blank'>Carboxyhaemoglobin (Carbon Monoxide)</a>","Blood","Lithium Heparin Tube WITHOUT GEL","No","No","a-c"],["Carboxyhaemoglobin (Carbon Monoxide)","<a href='tests/505.html' target='_blank'>Carboxyhaemoglobin (Carbon Monoxide)</a>","Blood","Lithium Heparin Tube WITHOUT GEL","No","No","a-c"],["Carcino Embryonic antigen","<a href='tests/427.html' target='_blank'>Carcino Embryonic antigen</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cardiac Enzymes","<a href='tests/426.html' target='_blank'>Cardiac Enzymes</a>","Blood","N/A","No","No","a-c"],["Cardiac Muscle antibodies","<a href='tests/414.html' target='_blank'>Anti-Heart Muscle antibodies (Cardiac Muscle Abs)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cardinorm","<a href='tests/590.html' target='_blank'>Amiodarone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Cardiolipin antibodies","<a href='tests/555.html' target='_blank'>Anti-Cardiolipin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Carlreticulin","<a href='tests/934.html' target='_blank'>Carlreticulin</a>","Whole blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Carnitine Profile","<a href='tests/158.html' target='_blank'>Carnitine: Free/Total</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","a-c"],["Carnitine: Free/Total","<a href='tests/158.html' target='_blank'>Carnitine: Free/Total</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","a-c"],["Carotene","<a href='tests/888.html' target='_blank'>Carotene</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Cat Scratch Disease antibodies","<a href='tests/256.html' target='_blank'>Cat Scratch Disease antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Catecholamine Metabolites urine","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","a-c"],["Catecholamines Metabolites serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","a-c"],["Catecholamines, Plasma","<a href='tests/217.html' target='_blank'>Catecholamines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","a-c"],["Catecholamines, Urine","<a href='tests/425.html' target='_blank'>Catecholamines, Urine</a>","Timed Urine","Urine container Acid 24 hour","No","No","a-c"],["Catheter Urine M&C","<a href='tests/270.html' target='_blank'>Urine, Catheter Specimen for Microscopy and Cultu_</a>","Urine, cathete_","Urine/Specimen container 50ml","No","No","a-c"],["Catheter, Intravenous Catheter Tip, for Micr_","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","a-c"],["CAVEOLIN-3 Genetic Testing","<a href='tests/902.html' target='_blank'>CAVEOLIN-3 Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["CBS","<a href='tests/46.html' target='_blank'>Glucose, Random</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","a-c"],["CCL","<a href='tests/408.html' target='_blank'>Creatinine Clearance</a>","Urine","Urine container Plain PLUS Serum Separator Tube (SST) 24 hour","No","No","a-c"],["CCP","<a href='tests/765.html' target='_blank'>Anti-cyclic citrullinated peptide</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CD34 assay","<a href='tests/610.html' target='_blank'>CD34 Count</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["CD34 Count","<a href='tests/610.html' target='_blank'>CD34 Count</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["CD4 count","<a href='tests/665.html' target='_blank'>Lymphocyte Subset Analysis</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["CD4/8","<a href='tests/665.html' target='_blank'>Lymphocyte Subset Analysis</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["CD55/CD59","<a href='tests/621.html' target='_blank'>Paroxysmal Nocturnal Haemoglobinuria screen</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["CDT","<a href='tests/184.html' target='_blank'>Carbohydrate-Deficient Transferrin</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["CEA (Carcinoembryonic antigen)","<a href='tests/427.html' target='_blank'>Carcino Embryonic antigen</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cell Marker Studies, Lymph Node Biopsy","<a href='tests/609.html' target='_blank'>Cell Marker Studies, Lymph Node Biopsy</a>","Tissue - fresh","Urine/Specimen container 50ml","No","No","a-c"],["Cell surface markers","<a href='tests/644.html' target='_blank'>Surface Marker Studies</a>","Blood or bone _","EDTA Tube 4 ml","No","No","a-c"],["Cellotape Test for Pinworm, Threadworm","<a href='tests/280.html' target='_blank'>Enterobius vermicularis Examination</a>","See collection_","Slide holder","No","No","a-c"],["Central Core Disease Testing","<a href='tests/924.html' target='_blank'>Central Core Disease Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Central venous catheter","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","a-c"],["CENZ (CE REPLACED BY TnI & CK)","<a href='tests/426.html' target='_blank'>Cardiac Enzymes</a>","Blood","N/A","No","No","a-c"],["Cerebrospinal Fluid - cytology","<a href='tests/521.html' target='_blank'>Cytology, CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["Certican, RAD001","<a href='tests/809.html' target='_blank'>Everolimus</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Ceruloplasmin","<a href='tests/561.html' target='_blank'>Caeruloplasmin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cervical Smear - cytology","<a href='tests/524.html' target='_blank'>Cytology, Pap Smear</a>","PAP Smear","Pap Smear collection Kit","No","No","a-c"],["Cervical Swab - Microscopy and culture","<a href='tests/278.html' target='_blank'>Endocervical Swab, Microscopy and culture</a>","Endocervical s_","Transswab- swab in transport medium","No","No","a-c"],["CF Gene","<a href='tests/186.html' target='_blank'>Cystic Fibrosis testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["CFT","<a href='tests/112.html' target='_blank'>Testosterone, Free</a>","","N/A","No","No","a-c"],["CH100","<a href='tests/444.html' target='_blank'>Complement Activity, (CH100)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Charcot-Marie Tooth Disease type 1A","<a href='tests/233.html' target='_blank'>CMT1A Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Chlamydia antibodies","<a href='tests/357.html' target='_blank'>Chlamydia antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Chlamydia pneumoniae antibodies","<a href='tests/357.html' target='_blank'>Chlamydia antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Chlamydia psittaci antibodies","<a href='tests/357.html' target='_blank'>Chlamydia antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Chlamydia trachomatis antibodies","<a href='tests/258.html' target='_blank'>Chlamydia trachomatis antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Chlamydia trachomatis DNA (PCR) in swabs","<a href='tests/398.html' target='_blank'>Chlamydia trachomatis DNA (PCR) in swabs</a>","Genital or eye_","Dry Swab","No","No","a-c"],["Chlamydia trachomatis DNA (PCR) in urine","<a href='tests/396.html' target='_blank'>Urine, First Catch, Detection of Chlamydia tracho_</a>","Urine, first c_","Urine/Specimen container 50ml","No","No","a-c"],["Chloride","<a href='tests/428.html' target='_blank'>Chloride</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Chloride Channel Mutations","<a href='tests/871.html' target='_blank'>Chloride Channel Mutations</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Chloride, Urine","<a href='tests/132.html' target='_blank'>Chloride, Urine</a>","Urine","Urine container Plain 24 hour","No","No","a-c"],["chlorpropamide","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Cholecalciferol","<a href='tests/451.html' target='_blank'>25-Hydroxy Vitamin D</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cholestanol","<a href='tests/169.html' target='_blank'>Cholestanol</a>","","N/A","No","No","a-c"],["Cholestanol TEST NO LONGER AVAILABLE","<a href='tests/169.html' target='_blank'>Cholestanol</a>","","N/A","No","No","a-c"],["Cholesterol","<a href='tests/421.html' target='_blank'>Cholesterol</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cholesterol and Triglycerides","<a href='tests/711.html' target='_blank'>Lipid Profile (Total Cholestesterol & Triglycerid_</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cholesterol Characterisation by Ultracentrif_","<a href='tests/455.html' target='_blank'>Ultracentrifugation, Cholesterol Characterisation</a>","","N/A","No","No","a-c"],["Cholesterol Fractionation","<a href='tests/497.html' target='_blank'>HDL Cholesterol</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cholinesterase, Red Cell","<a href='tests/71.html' target='_blank'>Cholinesterase, Red Cell</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Cholinesterase, Serum","<a href='tests/420.html' target='_blank'>Cholinesterase, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Chorionic gonadotrophin","<a href='tests/515.html' target='_blank'>Human Chorionic Gonadotrophin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Choroidal masses - cytology","<a href='tests/1.html' target='_blank'>Cytology, CHOROIDAL MASSES (FNA)</a>","Choroidal Aspi_","Syringe 2ml","No","No","a-c"],["Christmas disease","<a href='tests/627.html' target='_blank'>Factor IX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Chromium, Whole Blood","<a href='tests/138.html' target='_blank'>Chromium, Whole Blood</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","a-c"],["Chromogranin A","<a href='tests/159.html' target='_blank'>Chromogranin A</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Chromosome 17 PMP22 Gene","<a href='tests/233.html' target='_blank'>CMT1A Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Chromosome 5 SMN Gene","<a href='tests/234.html' target='_blank'>Chromosome 5 SMN Gene</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Chromosome Analysis, Tissue","<a href='tests/534.html' target='_blank'>Chromosome Analysis, Tissue</a>","Tissue, fresh _","Sterile container","No","No","a-c"],["Chromosome studies blood","<a href='tests/664.html' target='_blank'>Cytogenetics, peripheral blood</a>","Peripheral blo_","Lithium Heparin Tube","No","No","a-c"],["Chromosome studies marrow","<a href='tests/619.html' target='_blank'>Cytogenetics, bone marrow</a>","Bone marrow","Lithium Heparin Tube","No","No","a-c"],["Cicloral","<a href='tests/8.html' target='_blank'>Cyclosporin</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Citrate, Urine","<a href='tests/160.html' target='_blank'>Citrate, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","a-c"],["CJD","<a href='tests/851.html' target='_blank'>Prion Protein Gene Mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["CJD","<a href='tests/536.html' target='_blank'>Creutzfeldt-Jakob Disease</a>","Tissue","Formalin container","No","No","a-c"],["CJD 14-3-3 Protein","<a href='tests/263.html' target='_blank'>Creutzfeldt-Jakob Disease 14-3-3 Protein</a>","CSF","CSF tube(s)","Yes","No","a-c"],["CK (Creatine Kinase)","<a href='tests/419.html' target='_blank'>CK (Creatine Kinase)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CK Isoenzymes (CKMM and CKBB)","<a href='tests/798.html' target='_blank'>CK Isoenzymes (CKMM and CKBB)</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["CKMB (Creatine Kinase MB isoform)","<a href='tests/436.html' target='_blank'>CKMB (Creatine Kinase MB isoform)</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Class I, Class II, DR typing","<a href='tests/601.html' target='_blank'>HLA Phenotype (Haematology)</a>","Blood","ACD tube","Yes","No","a-c"],["CLCN1","<a href='tests/932.html' target='_blank'>Myotonia Congenita</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Clonazepam","<a href='tests/123.html' target='_blank'>Clonazepam</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Clopine","<a href='tests/124.html' target='_blank'>Clozapine</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Clozapine","<a href='tests/124.html' target='_blank'>Clozapine</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Clozaril","<a href='tests/124.html' target='_blank'>Clozapine</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["CMP","<a href='tests/937.html' target='_blank'>CMP</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CMT1A Gene","<a href='tests/233.html' target='_blank'>CMT1A Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["CMTX1","<a href='tests/927.html' target='_blank'>Connexin 32 Genetic Testing</a>","Blood","EDTA Tube 6ml","Yes","Yes","a-c"],["CMV antibodies","<a href='tests/259.html' target='_blank'>Cytomegalovirus antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CMV DNA (by PCR)","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","a-c"],["Coagulation Factor assay","<a href='tests/207.html' target='_blank'>Factor V</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor assay","<a href='tests/211.html' target='_blank'>F XII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor Assay","<a href='tests/945.html' target='_blank'>FXIII Quantitative Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","a-c"],["Coagulation Factor assay","<a href='tests/209.html' target='_blank'>FX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor assay","<a href='tests/627.html' target='_blank'>Factor IX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor assay","<a href='tests/623.html' target='_blank'>Factor VIII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor assay","<a href='tests/208.html' target='_blank'>FVII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor assay","<a href='tests/206.html' target='_blank'>Factor II</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor Assay","<a href='tests/946.html' target='_blank'>FXIII Qualitative</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Coagulation Factor Inhibitor Assay","<a href='tests/607.html' target='_blank'>Coagulation Factor Inhibitor Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","a-c"],["Coagulation Factor XI assay","<a href='tests/210.html' target='_blank'>Coagulation Factor XI assay</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Cobalt","<a href='tests/773.html' target='_blank'>Cobalt</a>","Urine","Urine/Specimen container 50ml","Yes","No","a-c"],["Cobalt, PLASMA","<a href='tests/925.html' target='_blank'>Cobalt, PLASMA</a>","Blood","EDTA Tube 6ml","Yes","No","a-c"],["Cocaine","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Cocaine, Urine","<a href='tests/424.html' target='_blank'>Cocaine, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","a-c"],["Coeliac Antibodies","<a href='tests/890.html' target='_blank'>Coeliac Antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Coeliac Disease Genetic Testing","<a href='tests/772.html' target='_blank'>Coeliac Disease Genetic Testing</a>","Blood","ACD tube","Yes","No","a-c"],["Coeliac Serology","<a href='tests/890.html' target='_blank'>Coeliac Antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Coenzyme Q10","<a href='tests/78.html' target='_blank'>Coenzyme Q10</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["CoHb","<a href='tests/505.html' target='_blank'>Carboxyhaemoglobin (Carbon Monoxide)</a>","Blood","Lithium Heparin Tube WITHOUT GEL","No","No","a-c"],["Cold Agglutinin Titre","<a href='tests/606.html' target='_blank'>Cold Agglutinin Titre</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Cold Haemolysins","<a href='tests/606.html' target='_blank'>Cold Agglutinin Titre</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Collagen Binding Assay","<a href='tests/779.html' target='_blank'>Collagen Binding Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","a-c"],["Compatibility Testing, Blood Transfusion","<a href='tests/672.html' target='_blank'>Compatibility Testing, Blood Transfusion</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["Complement Activity, (CH100)","<a href='tests/444.html' target='_blank'>Complement Activity, (CH100)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Complement Component, C1 Esterase Inhibitor","<a href='tests/443.html' target='_blank'>C1 Esterase Inhibitor, Antigenic Assay</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Complement Component, C1q","<a href='tests/442.html' target='_blank'>Complement Component, C1q</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Complement Component, C2","<a href='tests/441.html' target='_blank'>Complement Component, C2</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Complement Component, C3","<a href='tests/440.html' target='_blank'>Complement Component, C3</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Complement Component, C4","<a href='tests/439.html' target='_blank'>Complement Component, C4</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Complement Component, C5","<a href='tests/438.html' target='_blank'>Complement Component, C5</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Complement Component, C6","<a href='tests/429.html' target='_blank'>Complement Component, C6</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Complement Component, C7","<a href='tests/437.html' target='_blank'>Complement Component, C7</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Complement Component, C8","<a href='tests/445.html' target='_blank'>Complement Component, C8</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Complement Component, C9","<a href='tests/435.html' target='_blank'>Complement Component, C9</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Complement Component, Functional Assay of C1_","<a href='tests/434.html' target='_blank'>C1 Esterase Inhibitor, Functional Assay</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Congenital Deafness Genetic Testing","<a href='tests/232.html' target='_blank'>Connexin 26 Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Congenital Myotonic Dystrophy","<a href='tests/220.html' target='_blank'>Myotonic Dystrophy (Triplet Repeat) Genetic Testi_</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Conjugated Bilbrubin","<a href='tests/486.html' target='_blank'>Direct Bilirubin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Conjunctival Biopsy for Ocular Cicatricial P_","<a href='tests/50.html' target='_blank'>Conjunctival Biopsy for Ocular Cicatricial Pempha_</a>","Tissue","Urine/Specimen container 50ml","No","No","a-c"],["Conjunctival swab - Chlamydia trachomatis PCR","<a href='tests/398.html' target='_blank'>Chlamydia trachomatis DNA (PCR) in swabs</a>","Genital or eye_","Dry Swab","No","No","a-c"],["Conjunctival swab -adenovirus investigation","<a href='tests/82.html' target='_blank'>Adenovirus Investigation - ocular specimens</a>","Conjuctival sw_","Dry Swab","Yes","No","a-c"],["Conjunctival Swab, Microscopy and Culture","<a href='tests/260.html' target='_blank'>Conjunctival Swab, Microscopy and Culture</a>","Conjunctival s_","Transswab- swab in transport medium","No","No","a-c"],["Conjuntival Impression","<a href='tests/531.html' target='_blank'>Cytology, Impression Cytology</a>","Impression Cyt_","Millipore filter (cellulose acetate filter).","No","No","a-c"],["CONNEXIN 26","<a href='tests/232.html' target='_blank'>Connexin 26 Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Connexin 26 Genetic Testing","<a href='tests/232.html' target='_blank'>Connexin 26 Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Connexin 32 Genetic Testing","<a href='tests/927.html' target='_blank'>Connexin 32 Genetic Testing</a>","Blood","EDTA Tube 6ml","Yes","Yes","a-c"],["Contact Lenses, Microscopy and Culture","<a href='tests/261.html' target='_blank'>Contact Lenses, Microscopy and Culture</a>","Contact lens/s_","Lens in case","No","No","a-c"],["Coombs Test","<a href='tests/663.html' target='_blank'>Cord Blood Studies</a>","Cord blood","Special collection kit; contact laboratory.","No","No","a-c"],["Copper","<a href='tests/433.html' target='_blank'>Copper</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Copper, Liver Tissue","<a href='tests/140.html' target='_blank'>Copper, Liver Tissue</a>","Liver tissue","Sterile container","Yes","No","a-c"],["Copper, Urine","<a href='tests/141.html' target='_blank'>Copper, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","a-c"],["CoQ10","<a href='tests/78.html' target='_blank'>Coenzyme Q10</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","a-c"],["Cord Blood","<a href='tests/663.html' target='_blank'>Cord Blood Studies</a>","Cord blood","Special collection kit; contact laboratory.","No","No","a-c"],["Cord Blood Studies","<a href='tests/663.html' target='_blank'>Cord Blood Studies</a>","Cord blood","Special collection kit; contact laboratory.","No","No","a-c"],["Cordarone","<a href='tests/590.html' target='_blank'>Amiodarone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Corneal Biopsy - Microscopy and culture","<a href='tests/262.html' target='_blank'>Corneal Scraping, Corneal Button, Corneal Biopsy,</a>","Scraping, corn_","Sterile container","No","No","a-c"],["Corneal Button - Microscopy and culture","<a href='tests/262.html' target='_blank'>Corneal Scraping, Corneal Button, Corneal Biopsy,</a>","Scraping, corn_","Sterile container","No","No","a-c"],["Corneal Impression","<a href='tests/531.html' target='_blank'>Cytology, Impression Cytology</a>","Impression Cyt_","Millipore filter (cellulose acetate filter).","No","No","a-c"],["Corneal Scraping, Corneal Button, Corneal Bi_","<a href='tests/262.html' target='_blank'>Corneal Scraping, Corneal Button, Corneal Biopsy,</a>","Scraping, corn_","Sterile container","No","No","a-c"],["Corneal scrapings - fungal sample micro and _","<a href='tests/293.html' target='_blank'>Fungal Sample, Micro and culture- corneal scrapin_</a>","Scrapings, cor_","Corneal collection kit","No","No","a-c"],["Corneal Scrapings,cytology","<a href='tests/522.html' target='_blank'>Cytology, Corneal Scrapings</a>","Corneal Scrapi_","Glass Slide","No","No","a-c"],["Coronavirus- SARS Serology","<a href='tests/100.html' target='_blank'>SARS- Coronavirus Serology</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Corrected Calcuim","<a href='tests/560.html' target='_blank'>Calcium</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cortisol","<a href='tests/432.html' target='_blank'>Cortisol</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cortisol (Saliva)","<a href='tests/800.html' target='_blank'>Cortisol (Saliva)</a>","Saliva","Special Container - Contact Laboratory","Yes","No","a-c"],["Cortisol, Urine Free","<a href='tests/431.html' target='_blank'>Cortisol, Urine Free</a>","Timed Urine","Urine container Plain 24 hour","No","No","a-c"],["Cotinine, Serum","<a href='tests/801.html' target='_blank'>Cotinine, Serum</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Cotinine, Urine","<a href='tests/76.html' target='_blank'>Cotinine, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","a-c"],["Coumadin levels","<a href='tests/30.html' target='_blank'>Warfarin levels</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Coxiella burneti antibodies","<a href='tests/359.html' target='_blank'>Q Fever antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Coxsackie GpB antibodies","<a href='tests/281.html' target='_blank'>Enterovirus antibodies</a>","","N/A","No","No","a-c"],["CPEO Mutation Genetic Testing","<a href='tests/222.html' target='_blank'>CPEO Mutation Genetic Testing</a>","Muscle/Skin","Sterile container","Yes","No","a-c"],["Crabs","<a href='tests/300.html' target='_blank'>Hair, for Microbiological Investigation</a>","Hair","Urine/Specimen container 50ml","No","No","a-c"],["CRASH Syndrome","<a href='tests/231.html' target='_blank'>L1 CAM Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["CRCL","<a href='tests/408.html' target='_blank'>Creatinine Clearance</a>","Urine","Urine container Plain PLUS Serum Separator Tube (SST) 24 hour","No","No","a-c"],["cre","<a href='tests/418.html' target='_blank'>Creatinine</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["C-Reactive Protein","<a href='tests/417.html' target='_blank'>C-Reactive Protein</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["creat","<a href='tests/418.html' target='_blank'>Creatinine</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Creatine Kinase","<a href='tests/419.html' target='_blank'>CK (Creatine Kinase)</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Creatinine","<a href='tests/418.html' target='_blank'>Creatinine</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Creatinine Clearance","<a href='tests/408.html' target='_blank'>Creatinine Clearance</a>","Urine","Urine container Plain PLUS Serum Separator Tube (SST) 24 hour","No","No","a-c"],["Creatinine, Urine","<a href='tests/930.html' target='_blank'>Creatinine, Urine</a>","Urine","Urine container Plain 24 hour","No","No","a-c"],["Creutzfeldt-Jacob Disease","<a href='tests/851.html' target='_blank'>Prion Protein Gene Mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Creutzfeldt-Jakob Disease","<a href='tests/536.html' target='_blank'>Creutzfeldt-Jakob Disease</a>","Tissue","Formalin container","No","No","a-c"],["Creutzfeldt-Jakob Disease 14-3-3 Protein","<a href='tests/263.html' target='_blank'>Creutzfeldt-Jakob Disease 14-3-3 Protein</a>","CSF","CSF tube(s)","Yes","No","a-c"],["Crossmatch Blood","<a href='tests/672.html' target='_blank'>Compatibility Testing, Blood Transfusion</a>","Blood","EDTA Tube 6ml","No","No","a-c"],["CRP (C-Reactive Protein)","<a href='tests/417.html' target='_blank'>C-Reactive Protein</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CRP, High-sensitivity","<a href='tests/77.html' target='_blank'>CRP, High-sensitivity</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cryofibrinogen","<a href='tests/14.html' target='_blank'>Cryofibrinogen</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","a-c"],["Cryoglobulin","<a href='tests/13.html' target='_blank'>Cryoglobulin</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cryptococcal Antigen - Blood","<a href='tests/264.html' target='_blank'>Cryptococcal Antigen - Blood</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cryptococcal Antigen - CSF","<a href='tests/265.html' target='_blank'>Cryptococcal Antigen - CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["Crystal examination - joint fluid","<a href='tests/381.html' target='_blank'>Synovial Fluid, Microscopy and culture</a>","Synovial Fluid","Sterile container","No","No","a-c"],["Crytosporidium parvum antigen","<a href='tests/41.html' target='_blank'>Faeces, Giardia and Crytosporidium antigens</a>","","N/A","No","No","a-c"],["CSF - cytology","<a href='tests/521.html' target='_blank'>Cytology, CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Angiotensin Converting Enzyme","<a href='tests/163.html' target='_blank'>Angiotensin Converting Enzyme, CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Cryptococcal antigen","<a href='tests/265.html' target='_blank'>Cryptococcal Antigen - CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Cryptococcal Investigation","<a href='tests/265.html' target='_blank'>Cryptococcal Antigen - CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF drain fluid","<a href='tests/268.html' target='_blank'>CSF Routine Microscopy and Culture</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Drain tips, for Microbiological Investig_","<a href='tests/266.html' target='_blank'>CSF Drain tips, for Microbiological Investigation</a>","Drain tip","Sterile container","No","No","a-c"],["CSF Electrophoresis","<a href='tests/12.html' target='_blank'>CSF Electrophoresis</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Glucose","<a href='tests/11.html' target='_blank'>CSF Glucose</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Investigation for Mycobacteria.","<a href='tests/267.html' target='_blank'>CSF Investigation for Mycobacteria.</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Investigation for TB","<a href='tests/267.html' target='_blank'>CSF Investigation for Mycobacteria.</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Lactate","<a href='tests/38.html' target='_blank'>Lactate, CSF</a>","CSF","Fluoride oxalate Tube 2 ml","No","No","a-c"],["CSF lumbar puncture","<a href='tests/268.html' target='_blank'>CSF Routine Microscopy and Culture</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Methotrexate","<a href='tests/178.html' target='_blank'>Methotrexate, CSF</a>","CSF","CSF tube(s)","Yes","No","a-c"],["CSF Oligoclonal bands","<a href='tests/12.html' target='_blank'>CSF Electrophoresis</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Protein","<a href='tests/10.html' target='_blank'>CSF Protein</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Pyruvate","<a href='tests/170.html' target='_blank'>Pyruvate, CSF</a>","CSF","CSF tube(s)","Yes","Yes","a-c"],["CSF Routine Microscopy and Culture","<a href='tests/268.html' target='_blank'>CSF Routine Microscopy and Culture</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF sugar","<a href='tests/11.html' target='_blank'>CSF Glucose</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF Transferrin","<a href='tests/40.html' target='_blank'>Asialo-Transferrin</a>","Body Fluid","Sterile container","No","Yes","a-c"],["CSF ventricular drain","<a href='tests/268.html' target='_blank'>CSF Routine Microscopy and Culture</a>","CSF","CSF tube(s)","No","No","a-c"],["CSF viral examination","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","a-c"],["CSF Viral examination","<a href='tests/269.html' target='_blank'>CSF Viral examination</a>","CSF","CSF tube(s)","Yes","No","a-c"],["C-Telopeptide","<a href='tests/799.html' target='_blank'>C-Telopeptide</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["CTX","<a href='tests/799.html' target='_blank'>C-Telopeptide</a>","Blood","EDTA Tube 4 ml","Yes","No","a-c"],["Cu","<a href='tests/433.html' target='_blank'>Copper</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Culdocentisis M&C","<a href='tests/287.html' target='_blank'>Fallopian Tube Swab</a>","Fluid/tissue o_","Transswab- swab in transport medium","No","No","a-c"],["CV2 antibodies","<a href='tests/149.html' target='_blank'>Anti-CV2 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["CVC (Central venous catheter)","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","a-c"],["Cx26","<a href='tests/232.html' target='_blank'>Connexin 26 Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Cx32","<a href='tests/927.html' target='_blank'>Connexin 32 Genetic Testing</a>","Blood","EDTA Tube 6ml","Yes","Yes","a-c"],["CYA","<a href='tests/8.html' target='_blank'>Cyclosporin</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Cyclic Amp","<a href='tests/802.html' target='_blank'>Cyclic Amp</a>","","N/A","No","No","a-c"],["Cyclosporin","<a href='tests/8.html' target='_blank'>Cyclosporin</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["CYP2C19","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["CYP2D6","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Cysporin","<a href='tests/8.html' target='_blank'>Cyclosporin</a>","Blood","EDTA Tube 4 ml","No","No","a-c"],["Cyst Aspirate - cytology","<a href='tests/520.html' target='_blank'>Cytology, Cyst Fluid</a>","Cyst Fluid","Urine/Specimen container 50ml","No","No","a-c"],["Cyst Fluid - cytology","<a href='tests/520.html' target='_blank'>Cytology, Cyst Fluid</a>","Cyst Fluid","Urine/Specimen container 50ml","No","No","a-c"],["Cystic Fibrosis testing","<a href='tests/186.html' target='_blank'>Cystic Fibrosis testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Cysticercosis antibodies - Blood","<a href='tests/271.html' target='_blank'>Cysticercosis antibodies - Blood</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Cystine, Urine Quantitative","<a href='tests/91.html' target='_blank'>Cystine, Urine Quantitative</a>","Urine","Urine container Plain 24 hour","Yes","No","a-c"],["Cytochrome P450","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Cytochrome P450 Genotyping","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","a-c"],["Cytogenetics, bone marrow","<a href='tests/619.html' target='_blank'>Cytogenetics, bone marrow</a>","Bone marrow","Lithium Heparin Tube","No","No","a-c"],["Cytogenetics, peripheral blood","<a href='tests/664.html' target='_blank'>Cytogenetics, peripheral blood</a>","Peripheral blo_","Lithium Heparin Tube","No","No","a-c"],["Cytogenomic arrays","<a href='tests/129.html' target='_blank'>Karyotyping</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","a-c"],["Cytology Herpes Smear Test","<a href='tests/518.html' target='_blank'>Cytology, Tzank Smear</a>","Tzank Smear","Glass Slide","No","No","a-c"],["Cytology, Bronchial Brush","<a href='tests/527.html' target='_blank'>Cytology, Bronchial Brush</a>","Bronchial Brus_","Glass Slide","No","No","a-c"],["Cytology, Bronchial Wash","<a href='tests/526.html' target='_blank'>Cytology, Bronchial Wash</a>","Bronchial Wash_","Bronchial Suction Trap Container","No","No","a-c"],["Cytology, Bronchio-Alveolar Lavage","<a href='tests/517.html' target='_blank'>Cytology, Bronchio-Alveolar Lavage</a>","BAL (Bronchioa_","Bronchial Suction Trap Container","No","No","a-c"],["Cytology, CHOROIDAL MASSES (FNA)","<a href='tests/1.html' target='_blank'>Cytology, CHOROIDAL MASSES (FNA)</a>","Choroidal Aspi_","Syringe 2ml","No","No","a-c"],["Cytology, Conjunctival Impression","<a href='tests/531.html' target='_blank'>Cytology, Impression Cytology</a>","Impression Cyt_","Millipore filter (cellulose acetate filter).","No","No","a-c"],["Cytology, Corneal Scrapings","<a href='tests/522.html' target='_blank'>Cytology, Corneal Scrapings</a>","Corneal Scrapi_","Glass Slide","No","No","a-c"],["Cytology, CSF","<a href='tests/521.html' target='_blank'>Cytology, CSF</a>","CSF","CSF tube(s)","No","No","a-c"],["Cytology, Cyst Fluid","<a href='tests/520.html' target='_blank'>Cytology, Cyst Fluid</a>","Cyst Fluid","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Fine Needle Aspiration","<a href='tests/519.html' target='_blank'>Cytology, Fine Needle Aspiration</a>","FNA (Fine Need_","Glass Slide","No","No","a-c"],["Cytology, Hydrocoele Fluid","<a href='tests/756.html' target='_blank'>Cytology, Hydrocoele Fluid</a>","Hydrocoele Flu_","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Impression Cytology","<a href='tests/531.html' target='_blank'>Cytology, Impression Cytology</a>","Impression Cyt_","Millipore filter (cellulose acetate filter).","No","No","a-c"],["Cytology, Nasal Swab","<a href='tests/538.html' target='_blank'>Cytology, Nasal Swab</a>","Nasal Swab","Glass Slide","No","No","a-c"],["Cytology, Nipple Discharge","<a href='tests/23.html' target='_blank'>Cytology, Nipple Discharge</a>","Nipple Dischar_","Glass Slide","No","No","a-c"],["Cytology, Pap Smear","<a href='tests/524.html' target='_blank'>Cytology, Pap Smear</a>","PAP Smear","Pap Smear collection Kit","No","No","a-c"],["Cytology, Pelvic Washings","<a href='tests/25.html' target='_blank'>Cytology, Pelvic Washings</a>","Pelvic Washings","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Pericardial Fluid","<a href='tests/523.html' target='_blank'>Cytology, Pericardial Fluid</a>","Pericardial Fl_","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Peritoneal Fluid","<a href='tests/525.html' target='_blank'>Cytology, Peritoneal Fluid</a>","Peritoneal Flu_","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Peritoneal Washings","<a href='tests/24.html' target='_blank'>Cytology, Peritoneal Washings</a>","Peritoneal Was_","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Pleural Fluid","<a href='tests/545.html' target='_blank'>Cytology, Pleural Fluid</a>","Pleural Fluid","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, sputum","<a href='tests/496.html' target='_blank'>Cytology, sputum</a>","Sputum","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Sub-Retinal Fluid","<a href='tests/543.html' target='_blank'>Cytology, Sub-Retinal Fluid</a>","Sub-Retinal Fl_","Syringe 2ml","No","No","a-c"],["Cytology, Synovial Fluid","<a href='tests/26.html' target='_blank'>Cytology, Synovial Fluid</a>","Synovial Fluid","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, ThinPrep Collection","<a href='tests/755.html' target='_blank'>Cytology, ThinPrep Collection</a>","ThinPrep, Conv_","Thin prep vials","No","Yes","a-c"],["Cytology, Tzank Smear","<a href='tests/518.html' target='_blank'>Cytology, Tzank Smear</a>","Tzank Smear","Glass Slide","No","No","a-c"],["Cytology, Ureteric Washings","<a href='tests/27.html' target='_blank'>Cytology, Ureteric Washings</a>","Ureteric Washi_","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Urine","<a href='tests/542.html' target='_blank'>Cytology, Urine</a>","Urine (X 3)","Urine/Specimen container 50ml","No","No","a-c"],["Cytology, Vitreous Fluid","<a href='tests/541.html' target='_blank'>Cytology, Vitreous Fluid</a>","Vitreous Fluid","Syringe 2ml","No","No","a-c"],["Cytology, Vitreous Washings","<a href='tests/532.html' target='_blank'>Cytology, Vitreous Washings</a>","Vitreous Washi_","Urine/Specimen container 50ml","No","No","a-c"],["Cytomegalavirus CMV DNA","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","a-c"],["Cytomegalovirus antibodies","<a href='tests/259.html' target='_blank'>Cytomegalovirus antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","a-c"],["Cytotoxic antibodies","<a href='tests/6.html' target='_blank'>Cytotoxic antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","a-c"],["Dark-Field Microscopy","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["DAT","<a href='tests/660.html' target='_blank'>Direct Antiglobulin Test (Coombs Test)</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["DCT","<a href='tests/660.html' target='_blank'>Direct Antiglobulin Test (Coombs Test)</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["D-Dimer","<a href='tests/662.html' target='_blank'>D-Dimer</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Decubitus ulcer swab - Microscopy and culture","<a href='tests/393.html' target='_blank'>Ulcer Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","d-f"],["Dehydroepiandrosterone Sulphate","<a href='tests/5.html' target='_blank'>Dehydroepiandrosterone Sulphate</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Delta F508 gene","<a href='tests/186.html' target='_blank'>Cystic Fibrosis testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["Delta Virus Antigen and antibodies","<a href='tests/313.html' target='_blank'>Delta Virus Antigen and antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Demerol plasma","<a href='tests/204.html' target='_blank'>Pethidine, Quantitative Plasma Assay</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["Demerol urine","<a href='tests/203.html' target='_blank'>Pethidine, Qualitative Urine Screen</a>","Urine","Urine/Specimen container 50ml","Yes","No","d-f"],["Dengue Virus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","d-f"],["Deoxycortisol","<a href='tests/79.html' target='_blank'>11-Deoxycortisol</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["De-Oxy-Pyridinoline Cross-links","<a href='tests/171.html' target='_blank'>Pyridinium Cross-links</a>","Urine","Urine/Specimen container 50ml","Yes","No","d-f"],["Dermatophyte microscopy and culture - Hair","<a href='tests/300.html' target='_blank'>Hair, for Microbiological Investigation</a>","Hair","Urine/Specimen container 50ml","No","No","d-f"],["Dermatophyte microscopy and culture - Nail","<a href='tests/342.html' target='_blank'>Nail Clippings, for Dermatophyte Investigation- N_</a>","Nail clippings","Urine/Specimen container 50ml","No","No","d-f"],["Dermatophyte -Microscopy and culture - Skin","<a href='tests/376.html' target='_blank'>Skin Scrapings, for Dermatophyte Investigation</a>","Skin scrapings","Urine/Specimen container 50ml","No","No","d-f"],["Desethylamiodarone","<a href='tests/590.html' target='_blank'>Amiodarone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["Devics Antibody","<a href='tests/785.html' target='_blank'>NMO Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Dexamethasone Suppression Test","<a href='tests/4.html' target='_blank'>Dexamethasone Suppression Test</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["DHEAS (Dehydroepiandrosterone Sulphate)","<a href='tests/5.html' target='_blank'>Dehydroepiandrosterone Sulphate</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["DHEAS04","<a href='tests/5.html' target='_blank'>Dehydroepiandrosterone Sulphate</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["DHT","<a href='tests/804.html' target='_blank'>Dihydrotestosterone</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Diabetes Elimination Test","<a href='tests/504.html' target='_blank'>Glucose Challenge Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","d-f"],["Diabetic ulcer swab - Microscopy and culture","<a href='tests/393.html' target='_blank'>Ulcer Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","d-f"],["Diazepam","<a href='tests/805.html' target='_blank'>Diazepam</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["Dibucaine number","<a href='tests/420.html' target='_blank'>Cholinesterase, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["DIC","<a href='tests/770.html' target='_blank'>Disseminated Intravascular Coagulation (Screen)</a>","Whole Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["diff","<a href='tests/661.html' target='_blank'>Differential White Cell Count</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Differential White Cell Count","<a href='tests/661.html' target='_blank'>Differential White Cell Count</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Diflucan","<a href='tests/142.html' target='_blank'>Fluconazole</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Digoxin","<a href='tests/3.html' target='_blank'>Digoxin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Dihydrotestosterone","<a href='tests/804.html' target='_blank'>Dihydrotestosterone</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Dilantin","<a href='tests/738.html' target='_blank'>Phenytoin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Diphenylhydantoin","<a href='tests/738.html' target='_blank'>Phenytoin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Diptheria Antibodies","<a href='tests/881.html' target='_blank'>Diptheria Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Diptheria toxoid antibodies","<a href='tests/881.html' target='_blank'>Diptheria Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Direct Antiglobulin Test (Coombs Test)","<a href='tests/660.html' target='_blank'>Direct Antiglobulin Test (Coombs Test)</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Direct Bilirubin","<a href='tests/486.html' target='_blank'>Direct Bilirubin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Direct Coombs test","<a href='tests/660.html' target='_blank'>Direct Antiglobulin Test (Coombs Test)</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Dirofilaria immitis antibodies","<a href='tests/370.html' target='_blank'>Heart Worm (Dog) antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Disaccharidase Levels","<a href='tests/533.html' target='_blank'>Disaccharide enzymes</a>","Biopsy Tissue","**Sterile container","Yes","No","d-f"],["Disaccharide enzymes","<a href='tests/533.html' target='_blank'>Disaccharide enzymes</a>","Biopsy Tissue","**Sterile container","Yes","No","d-f"],["Disopyramide","<a href='tests/2.html' target='_blank'>Disopyramide</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Disopyramide TEST NO LONGER AVAILABLE","<a href='tests/2.html' target='_blank'>Disopyramide</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Disseminated Intravascular Coagulation (Scre_","<a href='tests/770.html' target='_blank'>Disseminated Intravascular Coagulation (Screen)</a>","Whole Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Diuretic Screen","<a href='tests/133.html' target='_blank'>Diuretic Screen</a>","Urine","Urine/Specimen container 50ml","Yes","No","d-f"],["DM1","<a href='tests/220.html' target='_blank'>Myotonic Dystrophy (Triplet Repeat) Genetic Testi_</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["DMD","<a href='tests/221.html' target='_blank'>Duchenne Muscular Dystrophy (DMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["DMD Gene","<a href='tests/221.html' target='_blank'>Duchenne Muscular Dystrophy (DMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["DMPK gene","<a href='tests/220.html' target='_blank'>Myotonic Dystrophy (Triplet Repeat) Genetic Testi_</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["DNA Analysis","<a href='tests/926.html' target='_blank'>DNA Analysis</a>","","Slide holder","No","No","d-f"],["DNA antibodies","<a href='tests/554.html' target='_blank'>Anti-DNA antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["DNA Dose","<a href='tests/803.html' target='_blank'>Cytochrome P450</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["DNase B antibodies","<a href='tests/84.html' target='_blank'>ASOT, (Anti-Streptolysin O Titre)</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Dog Heart Worm antibodies","<a href='tests/370.html' target='_blank'>Heart Worm (Dog) antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["DOPAC serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","d-f"],["DOPAC urine","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","d-f"],["Dopamine, Urine","<a href='tests/425.html' target='_blank'>Catecholamines, Urine</a>","Timed Urine","Urine container Acid 24 hour","No","No","d-f"],["Double Stranded DNA antibodies","<a href='tests/554.html' target='_blank'>Anti-DNA antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Downs Syndrome Screen","<a href='tests/106.html' target='_blank'>Maternal Serum Screening</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","d-f"],["DPD","<a href='tests/171.html' target='_blank'>Pyridinium Cross-links</a>","Urine","Urine/Specimen container 50ml","Yes","No","d-f"],["DPD Creatinine Ratio","<a href='tests/171.html' target='_blank'>Pyridinium Cross-links</a>","Urine","Urine/Specimen container 50ml","Yes","No","d-f"],["DPD Cross-links","<a href='tests/171.html' target='_blank'>Pyridinium Cross-links</a>","Urine","Urine/Specimen container 50ml","Yes","No","d-f"],["Drain Fluid, Microscopy and culture","<a href='tests/274.html' target='_blank'>Drain Fluid, Microscopy and culture</a>","Drain fluid","Sterile container","No","No","d-f"],["Drain tip, for Microbiological Investigation","<a href='tests/388.html' target='_blank'>Drain tip, for Microbiological Investigation</a>","Drain tip or t_","Sterile container","No","No","d-f"],["Drain tube fluid - Microscopy and culture","<a href='tests/274.html' target='_blank'>Drain Fluid, Microscopy and culture</a>","Drain fluid","Sterile container","No","No","d-f"],["Drug Screen, Urine","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","d-f"],["Duchenne Muscular Dystrophy (DMD) Genetic Te_","<a href='tests/221.html' target='_blank'>Duchenne Muscular Dystrophy (DMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Duodenal aspirate investigation for Giardia","<a href='tests/275.html' target='_blank'>Duodenal Aspirate, Microscopy and culture</a>","Aspirate","Sterile container","No","No","d-f"],["Duodenal Aspirate, Microscopy and culture","<a href='tests/275.html' target='_blank'>Duodenal Aspirate, Microscopy and culture</a>","Aspirate","Sterile container","No","No","d-f"],["Dystonia gene","<a href='tests/917.html' target='_blank'>DYT1 Mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["Dystrophin","<a href='tests/221.html' target='_blank'>Duchenne Muscular Dystrophy (DMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Dystrophinopathy","<a href='tests/221.html' target='_blank'>Duchenne Muscular Dystrophy (DMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Dyt1","<a href='tests/917.html' target='_blank'>DYT1 Mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["DYT1 Mutation","<a href='tests/917.html' target='_blank'>DYT1 Mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["DYT1-GAG deletion","<a href='tests/917.html' target='_blank'>DYT1 Mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["E coli - Enteropathogenic","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","d-f"],["E2","<a href='tests/674.html' target='_blank'>Oestradiol, 17� Oestradiol</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Ear Swab, Microscopy and culture","<a href='tests/276.html' target='_blank'>Ear Swab, Microscopy and culture</a>","Ear swab","Transswab- swab in transport medium","No","No","d-f"],["Eaton-Lambert Antibodies","<a href='tests/793.html' target='_blank'>Calcium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["EBV antibodies (Epstein-Barr Virus antibodie_","<a href='tests/277.html' target='_blank'>Epstein Barr Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","d-f"],["ECG","<a href='tests/876.html' target='_blank'>ECG</a>","Monitor Record_","N/A","Yes","No","d-f"],["Echinococcosis serology","<a href='tests/322.html' target='_blank'>Hydatid Cyst antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Echinococcus granulosus antibodies","<a href='tests/322.html' target='_blank'>Hydatid Cyst antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Efavirenz","<a href='tests/807.html' target='_blank'>Efavirenz</a>","Blood","EDTA Tube 6ml","Yes","No","d-f"],["EGFR","<a href='tests/938.html' target='_blank'>Estimated Glomerular Filtration Rate</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Elastase, Faecal","<a href='tests/812.html' target='_blank'>Faecal Pancreatic Elastase</a>","Faeces","Faeces container","Yes","Yes","d-f"],["Electrocardiogram","<a href='tests/876.html' target='_blank'>ECG</a>","Monitor Record_","N/A","Yes","No","d-f"],["Electrolytes","<a href='tests/416.html' target='_blank'>Electrolytes</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Electron Microscopy","<a href='tests/539.html' target='_blank'>Electron Microscopy</a>","Tissue","Vial containing 2.5% Glutaraldehyde","No","No","d-f"],["Electrophoresis, Serum","<a href='tests/754.html' target='_blank'>Protein Electrophoresis, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["EMU - Early morning urine for TB M&C","<a href='tests/386.html' target='_blank'>Urine, Early morning for Mycobacterium</a>","Urine","Urine container 200ml","No","No","d-f"],["ENA (Extractable Nuclear Antigens)","<a href='tests/553.html' target='_blank'>Anti-ENA (Extractable Nuclear Antigens)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Endocervical swab - Chlamydia trachomatis PCR","<a href='tests/398.html' target='_blank'>Chlamydia trachomatis DNA (PCR) in swabs</a>","Genital or eye_","Dry Swab","No","No","d-f"],["Endocervical Swab, Microscopy and culture","<a href='tests/278.html' target='_blank'>Endocervical Swab, Microscopy and culture</a>","Endocervical s_","Transswab- swab in transport medium","No","No","d-f"],["Endoscope, Disinfection Check","<a href='tests/279.html' target='_blank'>Endoscope, Disinfection Check</a>","Washings","Sterile container","No","No","d-f"],["Entamoeba histolytica antibodies","<a href='tests/83.html' target='_blank'>Entamoeba histolytica antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Enterobius vermicularis Examination","<a href='tests/280.html' target='_blank'>Enterobius vermicularis Examination</a>","See collection_","Slide holder","No","No","d-f"],["Enteropathogenic E. coli in Faeces","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","d-f"],["Enterovirus antibodies","<a href='tests/281.html' target='_blank'>Enterovirus antibodies</a>","","N/A","No","No","d-f"],["Enterovirus RNA (PCR) CSF","<a href='tests/269.html' target='_blank'>CSF Viral examination</a>","CSF","CSF tube(s)","Yes","No","d-f"],["EPCAM gene","<a href='tests/226.html' target='_blank'>Hereditary Non Polyposis Colorectal Cancer Geneti_</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["EPCAM gene","<a href='tests/842.html' target='_blank'>MSH2/MSH6 Mutation Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["EPG","<a href='tests/754.html' target='_blank'>Protein Electrophoresis, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Epilim","<a href='tests/456.html' target='_blank'>Valproate</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Epinephrine","<a href='tests/425.html' target='_blank'>Catecholamines, Urine</a>","Timed Urine","Urine container Acid 24 hour","No","No","d-f"],["Epstein Barr Virus antibodies","<a href='tests/277.html' target='_blank'>Epstein Barr Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","d-f"],["Epstein Barr Virus DNA","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","d-f"],["Erythrocyte Sedimentation Rate","<a href='tests/653.html' target='_blank'>Erythrocyte Sedimentation Rate</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Erythropoietin","<a href='tests/668.html' target='_blank'>Erythropoietin</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","d-f"],["ESR","<a href='tests/653.html' target='_blank'>Erythrocyte Sedimentation Rate</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Essential Fatty Acids","<a href='tests/173.html' target='_blank'>Essential Fatty Acids</a>","Blood","Lithium Heparin Tube","Yes","No","d-f"],["Estimated Glomerular Filtration Rate","<a href='tests/938.html' target='_blank'>Estimated Glomerular Filtration Rate</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Estradiol","<a href='tests/674.html' target='_blank'>Oestradiol, 17� Oestradiol</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Estriol serum TEST NO LONGER AVAILABLE","<a href='tests/683.html' target='_blank'>Oestriol, Serum</a>","","N/A","No","No","d-f"],["Estrone Metabolites","<a href='tests/806.html' target='_blank'>Estrone Metabolites</a>","Urine","Special Container - Contact Laboratory","Yes","Yes","d-f"],["Ethanol","<a href='tests/466.html' target='_blank'>Ethanol</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","d-f"],["Ethmoid Sinus Swab -Microscopy and culture","<a href='tests/93.html' target='_blank'>Nasal Sinus Swab, Microscopy and culture</a>","Sinus swab","ENT/urethral swab- wire swab in transport medium","No","No","d-f"],["Ethosuximide","<a href='tests/465.html' target='_blank'>Ethosuximide</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["Ethyl alcohol","<a href='tests/466.html' target='_blank'>Ethanol</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","d-f"],["Ethylene Glycol","<a href='tests/808.html' target='_blank'>Ethylene Glycol</a>","Blood","EDTA Tube 6ml","Yes","No","d-f"],["ETKA","<a href='tests/730.html' target='_blank'>Vitamin B1</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["ETOH","<a href='tests/466.html' target='_blank'>Ethanol</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","d-f"],["Euglobulin Lysis Time","<a href='tests/659.html' target='_blank'>Euglobulin Lysis Time</a>","Blood,","Sodium citrate Tube 2.7 ml","No","No","d-f"],["EVD tip","<a href='tests/266.html' target='_blank'>CSF Drain tips, for Microbiological Investigation</a>","Drain tip","Sterile container","No","No","d-f"],["Everolimus","<a href='tests/809.html' target='_blank'>Everolimus</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Excema swab - Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","d-f"],["Extended Red Cell phenotype","<a href='tests/634.html' target='_blank'>Red Cell Phenotype</a>","Blood","EDTA Tube 6ml","No","No","d-f"],["Extra ventricular drain tip","<a href='tests/266.html' target='_blank'>CSF Drain tips, for Microbiological Investigation</a>","Drain tip","Sterile container","No","No","d-f"],["Extractable Nuclear Antigens","<a href='tests/553.html' target='_blank'>Anti-ENA (Extractable Nuclear Antigens)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["F XII","<a href='tests/211.html' target='_blank'>F XII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["FA Gene","<a href='tests/224.html' target='_blank'>Friedreichs Ataxia Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["FacioScapuloHumeral Muscular Dystrophy","<a href='tests/915.html' target='_blank'>FacioScapuloHumeral Muscular Dystrophy</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["F-Actin antibodies","<a href='tests/940.html' target='_blank'>Anti-F-Actin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Factor assay","<a href='tests/623.html' target='_blank'>Factor VIII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor assay","<a href='tests/627.html' target='_blank'>Factor IX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor II","<a href='tests/206.html' target='_blank'>Factor II</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor inhibitor","<a href='tests/607.html' target='_blank'>Coagulation Factor Inhibitor Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","d-f"],["Factor Inhibitor Assay","<a href='tests/607.html' target='_blank'>Coagulation Factor Inhibitor Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","d-f"],["Factor IX","<a href='tests/627.html' target='_blank'>Factor IX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor V","<a href='tests/207.html' target='_blank'>Factor V</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor V assay","<a href='tests/207.html' target='_blank'>Factor V</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor V Gene analysis","<a href='tests/667.html' target='_blank'>Leiden Mutation (Factor V)</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Factor V Leiden","<a href='tests/667.html' target='_blank'>Leiden Mutation (Factor V)</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Factor VII assay","<a href='tests/208.html' target='_blank'>FVII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor VIII","<a href='tests/623.html' target='_blank'>Factor VIII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor X assay","<a href='tests/209.html' target='_blank'>FX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor XI assay","<a href='tests/210.html' target='_blank'>Coagulation Factor XI assay</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Factor XII assay","<a href='tests/211.html' target='_blank'>F XII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Faecal Calprotectin","<a href='tests/909.html' target='_blank'>Calprotectin</a>","Faeces","Faeces container","No","Yes","d-f"],["Faecal Fat","<a href='tests/464.html' target='_blank'>Faecal Fat</a>","Faeces","Faeces container","Yes","No","d-f"],["Faecal Haemoglobin","<a href='tests/463.html' target='_blank'>Faecal Occult Blood (FOB)</a>","Faeces (X 3)","Faecal Occult Blood Collection Kit","No","No","d-f"],["Faecal Occult Blood (FOB)","<a href='tests/463.html' target='_blank'>Faecal Occult Blood (FOB)</a>","Faeces (X 3)","Faecal Occult Blood Collection Kit","No","No","d-f"],["Faecal Pancreatic Elastase","<a href='tests/812.html' target='_blank'>Faecal Pancreatic Elastase</a>","Faeces","Faeces container","Yes","Yes","d-f"],["Faecal porphyrins","<a href='tests/741.html' target='_blank'>Porphyrins, Faeces</a>","Faeces","Faeces container","Yes","No","d-f"],["Faeces","<a href='tests/89.html' target='_blank'>Osmolality, Faeces</a>","Random faeces","Faeces container","Yes","No","d-f"],["Faeces - Detection of Giardia lamblia antigen","<a href='tests/41.html' target='_blank'>Faeces, Giardia and Crytosporidium antigens</a>","","N/A","No","No","d-f"],["Faeces - Helicobacter pylori Antigen","<a href='tests/302.html' target='_blank'>Helicobacter pylori Antigen</a>","Faeces (random_","Faeces container","No","No","d-f"],["Faeces - Rotavirus antigen","<a href='tests/282.html' target='_blank'>Faeces, Detection of Viral antigens</a>","Faeces (random_","Faeces container","No","No","d-f"],["Faeces, Clostridium difficile Toxin A & B.","<a href='tests/254.html' target='_blank'>Faeces, Clostridium difficile Toxin A & B.</a>","Faeces","Faeces container","No","No","d-f"],["Faeces, Detection of Viral antigens","<a href='tests/282.html' target='_blank'>Faeces, Detection of Viral antigens</a>","Faeces (random_","Faeces container","No","No","d-f"],["Faeces, Giardia and Crytosporidium antigens","<a href='tests/41.html' target='_blank'>Faeces, Giardia and Crytosporidium antigens</a>","","N/A","No","No","d-f"],["Faeces, Microscopy and culture","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","d-f"],["Faeces, Ova, Cysts and Parasites.","<a href='tests/284.html' target='_blank'>Faeces, Ova, Cysts and Parasites.</a>","Faeces (X 2)","Faeces parasite container (contains preservative)","No","No","d-f"],["Faeces, Potassium","<a href='tests/88.html' target='_blank'>Potassium, Faeces</a>","Random faeces","Faeces container","No","No","d-f"],["Faeces, Reducing Substances","<a href='tests/285.html' target='_blank'>Faeces, Reducing Substances</a>","","N/A","No","No","d-f"],["Faeces, sodium","<a href='tests/87.html' target='_blank'>Sodium, Faeces</a>","Random faeces","Faeces container","No","No","d-f"],["Faeces, Viral Agents","<a href='tests/286.html' target='_blank'>Faeces, Viral Agents</a>","Faeces (random_","Faeces container","Yes","Yes","d-f"],["FAI, Free Androgen Index","<a href='tests/457.html' target='_blank'>Free Androgen Index</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Fallopian Tube Swab","<a href='tests/287.html' target='_blank'>Fallopian Tube Swab</a>","Fluid/tissue o_","Transswab- swab in transport medium","No","No","d-f"],["Familial Adenomatous Polyposis Genetic testi_","<a href='tests/223.html' target='_blank'>Familial Adenomatous Polyposis Genetic testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Familial Mediterranean Fever Gene Analysis","<a href='tests/783.html' target='_blank'>Familial Mediterranean Fever Gene Analysis</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["FAP","<a href='tests/223.html' target='_blank'>Familial Adenomatous Polyposis Genetic testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Fasciola hepatica antibodies","<a href='tests/288.html' target='_blank'>Fasciola hepatica antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Fascioliasis antibodies","<a href='tests/288.html' target='_blank'>Fasciola hepatica antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Fasting Glucose","<a href='tests/701.html' target='_blank'>Glucose, Fasting</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","d-f"],["Fatty Acid Ratio","<a href='tests/127.html' target='_blank'>Fatty Acid Ratio</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["FBE","<a href='tests/600.html' target='_blank'>Full Blood Examination</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["FDP","<a href='tests/662.html' target='_blank'>D-Dimer</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["FDRA","<a href='tests/224.html' target='_blank'>Friedreichs Ataxia Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Fe","<a href='tests/693.html' target='_blank'>Iron</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Fe studies","<a href='tests/709.html' target='_blank'>Iron Studies (Includes Iron, Transferrin and Ferr_</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Fecal Occult Blood","<a href='tests/463.html' target='_blank'>Faecal Occult Blood (FOB)</a>","Faeces (X 3)","Faecal Occult Blood Collection Kit","No","No","d-f"],["Female genital swabs - Microscopy and culture","<a href='tests/399.html' target='_blank'>Vaginal Swabs, Microscopy and culture</a>","Vaginal Swabs","Transswab- swab in transport medium","No","No","d-f"],["Fentanyl Levels","<a href='tests/813.html' target='_blank'>Fentanyl Levels</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["Feotal Maternal Haemorrhage","<a href='tests/673.html' target='_blank'>Kleihauer Test</a>","Blood","EDTA Tube 6ml","No","No","d-f"],["Fer","<a href='tests/507.html' target='_blank'>Ferritin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Ferritin","<a href='tests/507.html' target='_blank'>Ferritin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Ferritin, Red Cell TEST NO LONGER AVAILABLE","<a href='tests/117.html' target='_blank'>Red Cell Ferritin</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Fibreoptoscope Disinfection Check","<a href='tests/279.html' target='_blank'>Endoscope, Disinfection Check</a>","Washings","Sterile container","No","No","d-f"],["Fibrescope testing","<a href='tests/279.html' target='_blank'>Endoscope, Disinfection Check</a>","Washings","Sterile container","No","No","d-f"],["Fibrin Degradation products","<a href='tests/662.html' target='_blank'>D-Dimer</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Fibrinogen","<a href='tests/604.html' target='_blank'>Fibrinogen</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["Fibroblast Analysis","<a href='tests/535.html' target='_blank'>Fibroblast Analysis</a>","Tissue, Full t_","Urine/Specimen container 50ml","No","No","d-f"],["Filariasis antibodies/Antigen","<a href='tests/289.html' target='_blank'>Filariasis antibodies/Antigen</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["film","<a href='tests/613.html' target='_blank'>Blood Film Examination</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Fine Needle Biopsy - cytology","<a href='tests/519.html' target='_blank'>Cytology, Fine Needle Aspiration</a>","FNA (Fine Need_","Glass Slide","No","No","d-f"],["First trimester screening","<a href='tests/106.html' target='_blank'>Maternal Serum Screening</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","d-f"],["FK506","<a href='tests/29.html' target='_blank'>Tacrolimus</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Flavivirus antibodies","<a href='tests/273.html' target='_blank'>Flavivirus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Flavivirus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","d-f"],["FLC","<a href='tests/893.html' target='_blank'>Free Light Chains</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Flecainide","<a href='tests/513.html' target='_blank'>Flecainide</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Flecatab","<a href='tests/513.html' target='_blank'>Flecainide</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Flopen","<a href='tests/516.html' target='_blank'>Flucloxacillin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Flowcytometry","<a href='tests/644.html' target='_blank'>Surface Marker Studies</a>","Blood or bone _","EDTA Tube 4 ml","No","No","d-f"],["Flowcytometry testing for Anti-D","<a href='tests/673.html' target='_blank'>Kleihauer Test</a>","Blood","EDTA Tube 6ml","No","No","d-f"],["Flowcytometry testing for Foetal Hb","<a href='tests/673.html' target='_blank'>Kleihauer Test</a>","Blood","EDTA Tube 6ml","No","No","d-f"],["Flowcytometry Tissue","<a href='tests/609.html' target='_blank'>Cell Marker Studies, Lymph Node Biopsy</a>","Tissue - fresh","Urine/Specimen container 50ml","No","No","d-f"],["Floxapen","<a href='tests/516.html' target='_blank'>Flucloxacillin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Floxig","<a href='tests/516.html' target='_blank'>Flucloxacillin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Flubiclox","<a href='tests/516.html' target='_blank'>Flucloxacillin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Flucloxacillin","<a href='tests/516.html' target='_blank'>Flucloxacillin</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Fluconazole","<a href='tests/142.html' target='_blank'>Fluconazole</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Flucytosine (5FC)","<a href='tests/512.html' target='_blank'>Flucytosine (5FC)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Fluid (abscess or seroma) - Microscopy and c_","<a href='tests/358.html' target='_blank'>Pus, Microscopy and culture</a>","Pus","Sterile container","No","No","d-f"],["Fluid (Ascitic), Microscopy and culture","<a href='tests/86.html' target='_blank'>Ascitic Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","d-f"],["Fluid (bile) - Microscopy and culture","<a href='tests/248.html' target='_blank'>Bile, Microscopy and culture</a>","Bile","Sterile container","No","No","d-f"],["Fluid (drain) - Microscopy and culture","<a href='tests/274.html' target='_blank'>Drain Fluid, Microscopy and culture</a>","Drain fluid","Sterile container","No","No","d-f"],["Fluid (Pericardial) - Microscopy and culture","<a href='tests/351.html' target='_blank'>Pericardial Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","d-f"],["Fluid (Peritoneal) - Microscopy and culture","<a href='tests/353.html' target='_blank'>Peritoneal Fluid, Microscopy and culture</a>","Aspirated Fluid","Sterile container","No","No","d-f"],["Fluid (Pleural) - Microscopy and culture","<a href='tests/354.html' target='_blank'>Pleural Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","d-f"],["Fluid (subdural or subgaleal) - Microscopy a_","<a href='tests/379.html' target='_blank'>Sub-dural or Sub-galeal Fluid</a>","Fluid","Sterile container","No","No","d-f"],["Fluid (Synovial) - Microscopy and culture","<a href='tests/381.html' target='_blank'>Synovial Fluid, Microscopy and culture</a>","Synovial Fluid","Sterile container","No","No","d-f"],["Fluid, Microscopy and culture","<a href='tests/290.html' target='_blank'>Fluid, Microscopy and culture</a>","Fluid","Sterile container","No","No","d-f"],["Fluorescent Treponemal antibodies","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Fluoride number","<a href='tests/420.html' target='_blank'>Cholinesterase, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["FMH","<a href='tests/673.html' target='_blank'>Kleihauer Test</a>","Blood","EDTA Tube 6ml","No","No","d-f"],["FNA - cytology","<a href='tests/1.html' target='_blank'>Cytology, CHOROIDAL MASSES (FNA)</a>","Choroidal Aspi_","Syringe 2ml","No","No","d-f"],["FOB","<a href='tests/463.html' target='_blank'>Faecal Occult Blood (FOB)</a>","Faeces (X 3)","Faecal Occult Blood Collection Kit","No","No","d-f"],["Foetal haemoglobin","<a href='tests/63.html' target='_blank'>Haemoglobin F Quantitation</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Folate level","<a href='tests/595.html' target='_blank'>Folate, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Folate, Red Cell","<a href='tests/596.html' target='_blank'>Red Cell Folate</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Folate, Serum","<a href='tests/595.html' target='_blank'>Folate, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Folic Acid","<a href='tests/595.html' target='_blank'>Folate, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Follicular Stimulating Hormone","<a href='tests/511.html' target='_blank'>Follicular Stimulating Hormone</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Fondaparinux","<a href='tests/949.html' target='_blank'>FXA Fondaparinux Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","d-f"],["for Microscopic Detection of Treponemes","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Foreign Bodies, for Microbiological Investig_","<a href='tests/291.html' target='_blank'>Foreign Bodies, for Microbiological Investigation</a>","Foreign body","Sterile container","No","No","d-f"],["Fragile X testing","<a href='tests/128.html' target='_blank'>Fragile X testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Frataxin","<a href='tests/224.html' target='_blank'>Friedreichs Ataxia Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Free Androgen Index","<a href='tests/457.html' target='_blank'>Free Androgen Index</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["FREE Benzyl Penicillin","<a href='tests/681.html' target='_blank'>FREE Penicillin G</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["Free Fatty Acids","<a href='tests/810.html' target='_blank'>Free Fatty Acids</a>","Blood","Fluoride oxalate Tube 2 ml","Yes","No","d-f"],["Free Insulin","<a href='tests/898.html' target='_blank'>Free Insulin</a>","Blood","Lithium Heparin Tube","No","No","d-f"],["Free Light Chains","<a href='tests/893.html' target='_blank'>Free Light Chains</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["FREE Penicillin G","<a href='tests/681.html' target='_blank'>FREE Penicillin G</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","d-f"],["Free PSA","<a href='tests/111.html' target='_blank'>Free PSA</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","d-f"],["Free T3","<a href='tests/509.html' target='_blank'>Free Tri-Iodothyronine (FT3)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Free T4","<a href='tests/510.html' target='_blank'>Free Thyroxine (FT4)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Free Testosterone","<a href='tests/112.html' target='_blank'>Testosterone, Free</a>","","N/A","No","No","d-f"],["Free Thyroxine (FT4)","<a href='tests/510.html' target='_blank'>Free Thyroxine (FT4)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Free Tri-Iodothyronine (FT3)","<a href='tests/509.html' target='_blank'>Free Tri-Iodothyronine (FT3)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Friedreichs Ataxia Genetic Testing","<a href='tests/224.html' target='_blank'>Friedreichs Ataxia Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["Frontal Sinus Swab - Microscopy and culture","<a href='tests/93.html' target='_blank'>Nasal Sinus Swab, Microscopy and culture</a>","Sinus swab","ENT/urethral swab- wire swab in transport medium","No","No","d-f"],["Frozen Section Diagnosis","<a href='tests/51.html' target='_blank'>Histology, Frozen Section Diagnosis</a>","Tissue","Sterile container","No","No","d-f"],["Fructosamine","<a href='tests/126.html' target='_blank'>Fructosamine</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Fructose Intolerance Gene Analysis","<a href='tests/811.html' target='_blank'>Fructose Intolerance Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["Fructose Intolerance Screen","<a href='tests/811.html' target='_blank'>Fructose Intolerance Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["Fructosemia Genetic Analysis","<a href='tests/811.html' target='_blank'>Fructose Intolerance Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["FRX","<a href='tests/128.html' target='_blank'>Fragile X testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["FSH","<a href='tests/511.html' target='_blank'>Follicular Stimulating Hormone</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["FSHD","<a href='tests/915.html' target='_blank'>FacioScapuloHumeral Muscular Dystrophy</a>","Blood","EDTA Tube 4 ml","Yes","Yes","d-f"],["FT3 (Free Triiodothyronine)","<a href='tests/509.html' target='_blank'>Free Tri-Iodothyronine (FT3)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["FT4","<a href='tests/724.html' target='_blank'>Thyroid Function Tests</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["FT4 (Free Thyroxine)","<a href='tests/510.html' target='_blank'>Free Thyroxine (FT4)</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["FTA-ABS (Fluorescent Treponemal antibodies)","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","d-f"],["Full Blood Examination","<a href='tests/600.html' target='_blank'>Full Blood Examination</a>","Blood","EDTA Tube 4 ml","No","No","d-f"],["Fungal Culture, Aspirates and fluids","<a href='tests/292.html' target='_blank'>Fungal Culture, Aspirates and fluids</a>","Aspirated fluid","Sterile container","No","No","d-f"],["Fungal investigation - blood","<a href='tests/387.html' target='_blank'>Blood Cultures, Mycobacterium</a>","Blood","Blood culture bottles (BACTEC) Mycolytic","No","No","d-f"],["Fungal Precipitins","<a href='tests/460.html' target='_blank'>Fungal Precipitins</a>","Blood","Serum Separator Tube (SST)","Yes","No","d-f"],["Fungal Sample, Micro and culture- corneal sc_","<a href='tests/293.html' target='_blank'>Fungal Sample, Micro and culture- corneal scrapin_</a>","Scrapings, cor_","Corneal collection kit","No","No","d-f"],["Fungal Sample, Microscopy and culture- respi_","<a href='tests/294.html' target='_blank'>Fungal Sample, Microscopy and culture- respiratory</a>","Sputum, bronch_","Sterile container","No","No","d-f"],["Fungal Sample, Microscopy and culture- tissue","<a href='tests/295.html' target='_blank'>Fungal Sample, Microscopy and culture- tissue</a>","Tissue","Sterile container","No","No","d-f"],["FVII","<a href='tests/208.html' target='_blank'>FVII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["FX","<a href='tests/209.html' target='_blank'>FX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["FXA","<a href='tests/615.html' target='_blank'>Anti-Factor Xa</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["FXA Fondaparinux Assay","<a href='tests/949.html' target='_blank'>FXA Fondaparinux Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","d-f"],["FXIII Qualitative","<a href='tests/946.html' target='_blank'>FXIII Qualitative</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","d-f"],["FXIII Quantitative Assay","<a href='tests/945.html' target='_blank'>FXIII Quantitative Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","d-f"],["FXN Gene","<a href='tests/224.html' target='_blank'>Friedreichs Ataxia Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","d-f"],["G6PD Assay","<a href='tests/781.html' target='_blank'>G6PD Assay</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["G6PD screen","<a href='tests/57.html' target='_blank'>Glucose-6-Phosphate Dehydrogenase Deficiency Scre_</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Gabapentin","<a href='tests/814.html' target='_blank'>Gabapentin</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","g-i"],["GAD antibodies","<a href='tests/122.html' target='_blank'>GAD antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Galactoscreen","<a href='tests/121.html' target='_blank'>Galactoscreen</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","g-i"],["Galactose-1-phoshate uridyl tranferase activ_","<a href='tests/121.html' target='_blank'>Galactoscreen</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","g-i"],["Gall Bladder Calculi","<a href='tests/815.html' target='_blank'>Gall Bladder Stones</a>","Stone","**Sterile container","Yes","Yes","g-i"],["Gall Bladder Stones","<a href='tests/815.html' target='_blank'>Gall Bladder Stones</a>","Stone","**Sterile container","Yes","Yes","g-i"],["GALT","<a href='tests/121.html' target='_blank'>Galactoscreen</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","g-i"],["Gamma Glutamyl Transferase, (GGT)","<a href='tests/459.html' target='_blank'>Gamma Glutamyl Transferase, (GGT)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Ganglioside GM1 antibodies","<a href='tests/551.html' target='_blank'>Anti-Ganglioside GM1 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Gareis-Mason Syndrome","<a href='tests/231.html' target='_blank'>L1 CAM Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Gastric Aspirate for Group B Streptococci","<a href='tests/296.html' target='_blank'>Gastric aspirate, Microscopy and culture</a>","Aspirate, gast_","Sterile container","No","No","g-i"],["Gastric aspirate, Microscopy and culture","<a href='tests/296.html' target='_blank'>Gastric aspirate, Microscopy and culture</a>","Aspirate, gast_","Sterile container","No","No","g-i"],["Gastric biopsy for Helicobacter pylori","<a href='tests/70.html' target='_blank'>Gastric biopsy for Helicobacter pylori</a>","Gastric biopsy_","Sterile container","No","No","g-i"],["Gastric Inhibitory Polypeptide","<a href='tests/816.html' target='_blank'>Gastrointestinal Peptide</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","g-i"],["Gastric Lavage, for AFB Culture","<a href='tests/297.html' target='_blank'>Gastric Lavage, for AFB Culture</a>","Lavage fluid","Gastric lavage container","No","No","g-i"],["Gastric Parietal Cell antibodies","<a href='tests/479.html' target='_blank'>Anti-Parietal Cell antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Gastrin","<a href='tests/458.html' target='_blank'>Gastrin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Gastrointestinal Inhibitory Peptide","<a href='tests/816.html' target='_blank'>Gastrointestinal Peptide</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","g-i"],["Gastrointestinal Peptide","<a href='tests/816.html' target='_blank'>Gastrointestinal Peptide</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","g-i"],["GBM antibodies","<a href='tests/549.html' target='_blank'>Anti-GBM antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["GCT","<a href='tests/504.html' target='_blank'>Glucose Challenge Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Gene Rearrangement Analysis","<a href='tests/546.html' target='_blank'>Gene Rearrangement Analysis</a>","Tissue","Urine/Specimen container 50ml","No","No","g-i"],["Genetic testing for Cystic Fibrosis","<a href='tests/186.html' target='_blank'>Cystic Fibrosis testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Genital herpes","<a href='tests/317.html' target='_blank'>Herpes simplex Virus (HSV) DNA - genital swab</a>","Swab","Dry Swab","No","No","g-i"],["Gentamicin","<a href='tests/703.html' target='_blank'>Gentamicin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["German Measles antibodies","<a href='tests/371.html' target='_blank'>Rubella Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","g-i"],["Gestational Diabetes Screening Test","<a href='tests/504.html' target='_blank'>Glucose Challenge Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","g-i"],["GGT","<a href='tests/459.html' target='_blank'>Gamma Glutamyl Transferase, (GGT)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["GH","<a href='tests/503.html' target='_blank'>Growth Hormone, (hGH)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Giardia intestinalis antigen","<a href='tests/41.html' target='_blank'>Faeces, Giardia and Crytosporidium antigens</a>","","N/A","No","No","g-i"],["Gilberts Disease Gene Testing","<a href='tests/817.html' target='_blank'>Gilberts Disease Gene Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Gingival swab microbiology","<a href='tests/336.html' target='_blank'>Oral Swab, Hard Palate or Soft Palate</a>","Swab of mouth","Transswab- swab in transport medium","No","No","g-i"],["GIP","<a href='tests/816.html' target='_blank'>Gastrointestinal Peptide</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","g-i"],["Glandular Fever Serology","<a href='tests/277.html' target='_blank'>Epstein Barr Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","g-i"],["Gliadin antibodies","<a href='tests/548.html' target='_blank'>Anti-Gliadin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["glibenclamide","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["gliclazide","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["glipizide","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Glomerular Red Blood Cells, Urine","<a href='tests/338.html' target='_blank'>Urine, Mid-stream for Microscopy and culture</a>","Urine, midstre_","Urine/Specimen container 50ml","No","No","g-i"],["glu","<a href='tests/46.html' target='_blank'>Glucose, Random</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Glucagon","<a href='tests/702.html' target='_blank'>Glucagon</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","g-i"],["Glucose Challenge Test","<a href='tests/504.html' target='_blank'>Glucose Challenge Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Glucose screening Test","<a href='tests/504.html' target='_blank'>Glucose Challenge Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Glucose Tolerance Test","<a href='tests/502.html' target='_blank'>Glucose Tolerance Test</a>","Blood (X 3)","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Glucose, Fasting","<a href='tests/701.html' target='_blank'>Glucose, Fasting</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Glucose, Random","<a href='tests/46.html' target='_blank'>Glucose, Random</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Glucose, Urine","<a href='tests/931.html' target='_blank'>Glucose, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","g-i"],["Glucose-6-Phosphate Dehydrogenase Deficiency_","<a href='tests/57.html' target='_blank'>Glucose-6-Phosphate Dehydrogenase Deficiency Scre_</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Glucose-dependent Insulinotropic Peptide","<a href='tests/816.html' target='_blank'>Gastrointestinal Peptide</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","g-i"],["Glutamic Acid Decarboxylase antibodies","<a href='tests/122.html' target='_blank'>GAD antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Glycated Haemoglobin","<a href='tests/498.html' target='_blank'>Hba1c</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Glycogen Tissue","<a href='tests/827.html' target='_blank'>Glycogen Tissue</a>","Tissue","Special Container - Contact Laboratory","Yes","No","g-i"],["Glycoprotein","<a href='tests/569.html' target='_blank'>Alpha Glycoprotein Subunit</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Glycosylated haemoglobin","<a href='tests/498.html' target='_blank'>Hba1c</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["GM1 antibodies","<a href='tests/551.html' target='_blank'>Anti-Ganglioside GM1 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Gold","<a href='tests/818.html' target='_blank'>Gold</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["Gonorrhoeae PCR","<a href='tests/344.html' target='_blank'>Neisseria gonorrhoeae, Detection by PCR</a>","","Urine/Specimen container 50ml","No","No","g-i"],["GQ1b antibodies","<a href='tests/21.html' target='_blank'>Anti-GQ1b antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Groin swab- MRSA","<a href='tests/337.html' target='_blank'>MRSA Screen</a>","Swab, nose, pe_","Transswab- swab in transport medium","No","No","g-i"],["Group and Hold","<a href='tests/58.html' target='_blank'>Group and Hold</a>","Blood","EDTA Tube 6ml","No","No","g-i"],["Group and Save","<a href='tests/58.html' target='_blank'>Group and Hold</a>","Blood","EDTA Tube 6ml","No","No","g-i"],["Group B streptococcus screen","<a href='tests/299.html' target='_blank'>Group B streptococcus screen</a>","Low Vaginal sw_","Transswab- swab in transport medium","No","No","g-i"],["Growth Hormone, (hGH)","<a href='tests/503.html' target='_blank'>Growth Hormone, (hGH)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["GTT","<a href='tests/502.html' target='_blank'>Glucose Tolerance Test</a>","Blood (X 3)","Fluoride oxalate Tube 2 ml","No","No","g-i"],["Gum swab microbiology","<a href='tests/336.html' target='_blank'>Oral Swab, Hard Palate or Soft Palate</a>","Swab of mouth","Transswab- swab in transport medium","No","No","g-i"],["Gynaecological smear - cytology","<a href='tests/524.html' target='_blank'>Cytology, Pap Smear</a>","PAP Smear","Pap Smear collection Kit","No","No","g-i"],["Haematocrit","<a href='tests/636.html' target='_blank'>Packed Cell Volume</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemochromatosis Gene","<a href='tests/59.html' target='_blank'>Haemochromatosis Gene</a>","Blood","ACD tube","No","No","g-i"],["Haemoglobin","<a href='tests/60.html' target='_blank'>Haemoglobin</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin A2 Quantitation","<a href='tests/61.html' target='_blank'>Haemoglobin A2 Quantitation</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin Electrophoresis","<a href='tests/62.html' target='_blank'>Haemoglobin Electrophoresis</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin F Quantitation","<a href='tests/63.html' target='_blank'>Haemoglobin F Quantitation</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin Gene Analysis","<a href='tests/625.html' target='_blank'>Haemoglobin Gene Analysis</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["Haemoglobin H","<a href='tests/624.html' target='_blank'>Haemoglobin H</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin H (Methylene blue stain)","<a href='tests/624.html' target='_blank'>Haemoglobin H</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin H bodies","<a href='tests/624.html' target='_blank'>Haemoglobin H</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin H inclusions","<a href='tests/624.html' target='_blank'>Haemoglobin H</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Haemoglobin, Plasma TEST NO LONGER AVAILABLE","<a href='tests/959.html' target='_blank'>Haemoglobin, Plasma TEST NO LONGER AVAILABLE</a>","Blood","N/A","No","No","g-i"],["Haemoglobin, Urine","<a href='tests/500.html' target='_blank'>Haemoglobin, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","g-i"],["Haemoglobinopathy analysis","<a href='tests/625.html' target='_blank'>Haemoglobin Gene Analysis</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["Haemophilia A","<a href='tests/623.html' target='_blank'>Factor VIII</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","g-i"],["Haemophilia B","<a href='tests/627.html' target='_blank'>Factor IX</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","g-i"],["Haemosiderin, Urine","<a href='tests/622.html' target='_blank'>Haemosiderin, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","g-i"],["Hair, for Microbiological Investigation","<a href='tests/300.html' target='_blank'>Hair, for Microbiological Investigation</a>","Hair","Urine/Specimen container 50ml","No","No","g-i"],["Haptoglobin","<a href='tests/506.html' target='_blank'>Haptoglobin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hb","<a href='tests/60.html' target='_blank'>Haemoglobin</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Hb Electrophoresis","<a href='tests/62.html' target='_blank'>Haemoglobin Electrophoresis</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Hb gene analysis","<a href='tests/625.html' target='_blank'>Haemoglobin Gene Analysis</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["Hba1c","<a href='tests/498.html' target='_blank'>Hba1c</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["HbA2","<a href='tests/61.html' target='_blank'>Haemoglobin A2 Quantitation</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["HbH","<a href='tests/624.html' target='_blank'>Haemoglobin H</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["HCG","<a href='tests/515.html' target='_blank'>Human Chorionic Gonadotrophin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["hCG (Quantitative)","<a href='tests/515.html' target='_blank'>Human Chorionic Gonadotrophin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HCG Urine, Quantitative","<a href='tests/819.html' target='_blank'>HCG Urine, Quantitative</a>","Urine","Urine container Plain 24 hour","Yes","No","g-i"],["HCGA","<a href='tests/59.html' target='_blank'>Haemochromatosis Gene</a>","Blood","ACD tube","No","No","g-i"],["HCO3","<a href='tests/494.html' target='_blank'>Bicarbonate</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HCOF II","<a href='tests/626.html' target='_blank'>Heparin Cofactor II</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","g-i"],["HCT","<a href='tests/636.html' target='_blank'>Packed Cell Volume</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["HCV antibodies (Hepatitis C Virus antibodies)","<a href='tests/312.html' target='_blank'>Hepatitis C Virus antibodies, (HCV Ab)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hcy","<a href='tests/501.html' target='_blank'>Homocysteine</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HD","<a href='tests/225.html' target='_blank'>Huntingtons Disease Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["HDL Cholesterol","<a href='tests/497.html' target='_blank'>HDL Cholesterol</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Head louse","<a href='tests/300.html' target='_blank'>Hair, for Microbiological Investigation</a>","Hair","Urine/Specimen container 50ml","No","No","g-i"],["Heart Muscle antibodies","<a href='tests/414.html' target='_blank'>Anti-Heart Muscle antibodies (Cardiac Muscle Abs)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Heart Rhythm Monitor","<a href='tests/877.html' target='_blank'>Holter Monitor</a>","Monitor Record_","N/A","Yes","No","g-i"],["Heart Worm (Dog) antibodies","<a href='tests/370.html' target='_blank'>Heart Worm (Dog) antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Heat Shock Protein 70","<a href='tests/103.html' target='_blank'>Heat Shock Protein 70</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Heinz Bodies","<a href='tests/656.html' target='_blank'>Heinz Bodies</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Helicobacter pylori- antibiotic resistance","<a href='tests/70.html' target='_blank'>Gastric biopsy for Helicobacter pylori</a>","Gastric biopsy_","Sterile container","No","No","g-i"],["Helicobacter pylori antibodies","<a href='tests/301.html' target='_blank'>Helicobacter pylori antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Helicobacter pylori Antigen","<a href='tests/302.html' target='_blank'>Helicobacter pylori Antigen</a>","Faeces (random_","Faeces container","No","No","g-i"],["Helicobacter pylori breath test","<a href='tests/68.html' target='_blank'>Helicobacter pylori breath test</a>","Kit available _","Breath test kit container","No","No","g-i"],["Hemoglobin, Urine","<a href='tests/500.html' target='_blank'>Haemoglobin, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","g-i"],["Heparin assay","<a href='tests/615.html' target='_blank'>Anti-Factor Xa</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","g-i"],["Heparin Cofactor II","<a href='tests/626.html' target='_blank'>Heparin Cofactor II</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","g-i"],["Heparin Induced Thrombocytopenia Screen","<a href='tests/617.html' target='_blank'>Heparin Induced Thrombocytopenia Screen</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Heparin-Induced Thrombocytopenia","<a href='tests/944.html' target='_blank'>HIT ELISA</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["Hepatitis A antibodies (IgG)","<a href='tests/303.html' target='_blank'>Hepatitis A antibodies (IgG)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis A Antibodies (IgM)","<a href='tests/759.html' target='_blank'>Hepatitis A Antibodies (IgM)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis A antibodies IgG","<a href='tests/303.html' target='_blank'>Hepatitis A antibodies (IgG)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis B Core antibodies , (HBcAb)","<a href='tests/304.html' target='_blank'>Hepatitis B Core antibodies , (HBcAb)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis B Surface antibodies, (HBsAb)","<a href='tests/306.html' target='_blank'>Hepatitis B Surface antibodies, (HBsAb)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis B Surface Antigen, (HBsAg)","<a href='tests/307.html' target='_blank'>Hepatitis B Surface Antigen, (HBsAg)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis B Viral DNA (Viral Load)","<a href='tests/308.html' target='_blank'>Hepatitis B Viral DNA (Viral Load)</a>","Blood","ACD tube","No","No","g-i"],["Hepatitis B Virus DNA sequencing","<a href='tests/94.html' target='_blank'>Hepatitis B Virus DNA sequencing</a>","Blood","ACD tube","Yes","Yes","g-i"],["Hepatitis B Virus resistance testing","<a href='tests/94.html' target='_blank'>Hepatitis B Virus DNA sequencing</a>","Blood","ACD tube","Yes","Yes","g-i"],["Hepatitis Be antibodies (HBeAb)","<a href='tests/305.html' target='_blank'>Hepatitis Be Antigen and antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis Be Antigen (HBeAg)","<a href='tests/305.html' target='_blank'>Hepatitis Be Antigen and antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis Be Antigen and antibodies","<a href='tests/305.html' target='_blank'>Hepatitis Be Antigen and antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis C Genotyping","<a href='tests/309.html' target='_blank'>Hepatitis C Genotyping</a>","Blood","ACD tube","No","No","g-i"],["Hepatitis C Viral Load (quantitative HCV RNA)","<a href='tests/310.html' target='_blank'>Hepatitis C Viral Load (quantitative HCV RNA)</a>","Blood","ACD tube","No","No","g-i"],["Hepatitis C Viral RNA (HCV PCR qualitative)","<a href='tests/311.html' target='_blank'>Hepatitis C Viral RNA (HCV PCR qualitative)</a>","Blood","ACD tube","No","No","g-i"],["Hepatitis C Virus antibodies, (HCV Ab)","<a href='tests/312.html' target='_blank'>Hepatitis C Virus antibodies, (HCV Ab)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hepatitis D Virus antibodies","<a href='tests/313.html' target='_blank'>Delta Virus Antigen and antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Hepatitis D Virus Antigen","<a href='tests/313.html' target='_blank'>Delta Virus Antigen and antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Hepatitis E Virus antibodies","<a href='tests/314.html' target='_blank'>Hepatitis E Virus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Hepatitis G Virus PCR","<a href='tests/315.html' target='_blank'>Hepatitis G Virus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["HER2 CISH","<a href='tests/886.html' target='_blank'>HER2 CISH</a>","","N/A","No","No","g-i"],["Herceptin CISH test","<a href='tests/886.html' target='_blank'>HER2 CISH</a>","","N/A","No","No","g-i"],["Hereditary Fructose Intolerance","<a href='tests/811.html' target='_blank'>Fructose Intolerance Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Hereditary Non Polyposis Colorectal Cancer G_","<a href='tests/226.html' target='_blank'>Hereditary Non Polyposis Colorectal Cancer Geneti_</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["Herpes Simplex DNA (PCR) CSF","<a href='tests/269.html' target='_blank'>CSF Viral examination</a>","CSF","CSF tube(s)","Yes","No","g-i"],["Herpes simplex type 1 & 2 Virus antibodies","<a href='tests/316.html' target='_blank'>Herpes simplex type 1 & 2 Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Herpes simplex Virus (HSV) DNA - genital swab","<a href='tests/317.html' target='_blank'>Herpes simplex Virus (HSV) DNA - genital swab</a>","Swab","Dry Swab","No","No","g-i"],["Herpes virus PCR-multiplex","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","g-i"],["Hexosaminidase","<a href='tests/820.html' target='_blank'>Hexosaminidase</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["HFI","<a href='tests/811.html' target='_blank'>Fructose Intolerance Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Hgb","<a href='tests/60.html' target='_blank'>Haemoglobin</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["Hickmans Catheter","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","g-i"],["High vaginal swab - Microscopy and culture","<a href='tests/399.html' target='_blank'>Vaginal Swabs, Microscopy and culture</a>","Vaginal Swabs","Transswab- swab in transport medium","No","No","g-i"],["high-sensitivity Troponin","<a href='tests/39.html' target='_blank'>Troponin I</a>","Blood","Lithium Heparin Tube","No","No","g-i"],["Histamine -1-Methyl urine","<a href='tests/187.html' target='_blank'>Methyl Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","g-i"],["Histamine, BLOOD","<a href='tests/821.html' target='_blank'>Histamine, BLOOD</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","g-i"],["Histamine, Urine","<a href='tests/822.html' target='_blank'>Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","g-i"],["Histology","<a href='tests/54.html' target='_blank'>Histology, Nerve Biopsy</a>","Nerve tissue. _","Nerve Biopsy Kit","No","No","g-i"],["Histology - Conjunctival Biopsy for Ocular C_","<a href='tests/50.html' target='_blank'>Conjunctival Biopsy for Ocular Cicatricial Pempha_</a>","Tissue","Urine/Specimen container 50ml","No","No","g-i"],["Histology, Bone Marrow for Metabolic Bone Di_","<a href='tests/48.html' target='_blank'>Histology, Bone Marrow for Metabolic Bone Disease</a>","Bone biopsy or_","Formalin container","No","No","g-i"],["Histology, Bone Marrow Trephine Biopsy","<a href='tests/49.html' target='_blank'>Histology, Bone Marrow Trephine Biopsy</a>","Bone marrow, t_","Formalin container","No","No","g-i"],["Histology, Frozen Section Diagnosis","<a href='tests/51.html' target='_blank'>Histology, Frozen Section Diagnosis</a>","Tissue","Sterile container","No","No","g-i"],["Histology, Lymph Node Biopsy","<a href='tests/52.html' target='_blank'>Histology, Lymph Node Biopsy</a>","Tissue, fresh _","Sterile container","No","No","g-i"],["Histology, Muscle Biopsy","<a href='tests/53.html' target='_blank'>Histology, Muscle Biopsy</a>","Tissue, muscle_","Muscle Biopsy Kit","No","No","g-i"],["Histology, Nerve Biopsy","<a href='tests/54.html' target='_blank'>Histology, Nerve Biopsy</a>","Nerve tissue. _","Nerve Biopsy Kit","No","No","g-i"],["Histology, Renal Biopsy","<a href='tests/55.html' target='_blank'>Histology, Renal Biopsy</a>","Tissue, renal _","Urine/Specimen container 50ml","No","No","g-i"],["Histology, Routine Tissue","<a href='tests/56.html' target='_blank'>Histology, Routine Tissue</a>","Tissue","Formalin container","No","No","g-i"],["Histology, Skin Biopsy for Immunofluorescence","<a href='tests/530.html' target='_blank'>Histology, Skin Biopsy for Immunofluorescence</a>","Tissue, fresh _","Urine/Specimen container 50ml","No","No","g-i"],["Histology, Temporal Artery Biopsy","<a href='tests/529.html' target='_blank'>Histology, Temporal Artery Biopsy</a>","Tissue","Formalin container","No","No","g-i"],["Histology, Testicular Biopsy","<a href='tests/528.html' target='_blank'>Histology, Testicular Biopsy</a>","Tissue","Sterile container","No","No","g-i"],["Histone antibodies","<a href='tests/409.html' target='_blank'>Anti-Histone antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["HIT ELISA","<a href='tests/944.html' target='_blank'>HIT ELISA</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["HITS","<a href='tests/617.html' target='_blank'>Heparin Induced Thrombocytopenia Screen</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HIV antibodies","<a href='tests/318.html' target='_blank'>Human Immunodeficiency Virus antibodies Type 1 & 2</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HIV genotyping","<a href='tests/96.html' target='_blank'>HIV genotyping</a>","Blood","ACD tube","Yes","No","g-i"],["HIV P24 Antigen","<a href='tests/95.html' target='_blank'>HIV P24 Antigen</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["HIV resistance testing","<a href='tests/96.html' target='_blank'>HIV genotyping</a>","Blood","ACD tube","Yes","No","g-i"],["HIV Viral Load","<a href='tests/319.html' target='_blank'>HIV Viral Load</a>","Blood","ACD tube","No","No","g-i"],["HLA antibodies","<a href='tests/603.html' target='_blank'>HLA antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","g-i"],["HLA B-27","<a href='tests/602.html' target='_blank'>HLA B-27</a>","Blood","EDTA Tube 4 ml","No","No","g-i"],["HLA DQ2 DQ8","<a href='tests/772.html' target='_blank'>Coeliac Disease Genetic Testing</a>","Blood","ACD tube","Yes","No","g-i"],["HLA Phenotype (Haematology)","<a href='tests/601.html' target='_blank'>HLA Phenotype (Haematology)</a>","Blood","ACD tube","Yes","No","g-i"],["HLA Phenotyping","<a href='tests/772.html' target='_blank'>Coeliac Disease Genetic Testing</a>","Blood","ACD tube","Yes","No","g-i"],["HLA TYPING","<a href='tests/601.html' target='_blank'>HLA Phenotype (Haematology)</a>","Blood","ACD tube","Yes","No","g-i"],["HLA Typing","<a href='tests/772.html' target='_blank'>Coeliac Disease Genetic Testing</a>","Blood","ACD tube","Yes","No","g-i"],["HLA Typing for Organ Transplantation","<a href='tests/499.html' target='_blank'>HLA Typing for Organ Transplantation</a>","Blood","ACD tube","Yes","No","g-i"],["HLA typing: A,B,C,Dr","<a href='tests/499.html' target='_blank'>HLA Typing for Organ Transplantation</a>","Blood","ACD tube","Yes","No","g-i"],["HLA-B57","<a href='tests/887.html' target='_blank'>HLA-B57</a>","Blood","ACD tube","Yes","No","g-i"],["HLA-B57 typing for abacavir hypersensitivity,","<a href='tests/887.html' target='_blank'>HLA-B57</a>","Blood","ACD tube","Yes","No","g-i"],["HMMA","<a href='tests/213.html' target='_blank'>Vanillyl Mandelic Acid (VMA)</a>","Urine","Urine container Acid 24 hour","Yes","No","g-i"],["HNPCC","<a href='tests/226.html' target='_blank'>Hereditary Non Polyposis Colorectal Cancer Geneti_</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["HNPCC","<a href='tests/842.html' target='_blank'>MSH2/MSH6 Mutation Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","g-i"],["Holotranscobalamin","<a href='tests/907.html' target='_blank'>Holotranscobalamin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Holter Monitor","<a href='tests/877.html' target='_blank'>Holter Monitor</a>","Monitor Record_","N/A","Yes","No","g-i"],["Homocysteine","<a href='tests/501.html' target='_blank'>Homocysteine</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HPV high risk types","<a href='tests/879.html' target='_blank'>Human papilloma virus - Hybrid capture</a>","","Thin prep vials","Yes","Yes","g-i"],["HPV high risk types","<a href='tests/321.html' target='_blank'>Human Papilloma Virus Typing</a>","Cervical sample","Thin prep vials","Yes","No","g-i"],["HPV PCR","<a href='tests/880.html' target='_blank'>Human papilloma virus PCR</a>","","Dry Swab","Yes","Yes","g-i"],["HPV typing","<a href='tests/321.html' target='_blank'>Human Papilloma Virus Typing</a>","Cervical sample","Thin prep vials","Yes","No","g-i"],["HPY typing","<a href='tests/879.html' target='_blank'>Human papilloma virus - Hybrid capture</a>","","Thin prep vials","Yes","Yes","g-i"],["HSP70","<a href='tests/103.html' target='_blank'>Heat Shock Protein 70</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["hsTnI","<a href='tests/39.html' target='_blank'>Troponin I</a>","Blood","Lithium Heparin Tube","No","No","g-i"],["HSV type specific antibodies","<a href='tests/316.html' target='_blank'>Herpes simplex type 1 & 2 Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["hTC","<a href='tests/907.html' target='_blank'>Holotranscobalamin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HTLV 1 & 2 antibodies","<a href='tests/320.html' target='_blank'>HTLV 1 & 2 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["HTT Gene","<a href='tests/225.html' target='_blank'>Huntingtons Disease Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Hu antibodies","<a href='tests/413.html' target='_blank'>Anti-Hu antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Human Chorionic Gonadotrophin","<a href='tests/515.html' target='_blank'>Human Chorionic Gonadotrophin</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Human Immunodeficiency Virus antibodies Type_","<a href='tests/318.html' target='_blank'>Human Immunodeficiency Virus antibodies Type 1 & 2</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Human Immunodeficiency Virus P24 Antigen","<a href='tests/95.html' target='_blank'>HIV P24 Antigen</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Human papilloma virus - Hybrid capture","<a href='tests/879.html' target='_blank'>Human papilloma virus - Hybrid capture</a>","","Thin prep vials","Yes","Yes","g-i"],["Human papilloma virus PCR","<a href='tests/880.html' target='_blank'>Human papilloma virus PCR</a>","","Dry Swab","Yes","Yes","g-i"],["Human Papilloma Virus PCR","<a href='tests/321.html' target='_blank'>Human Papilloma Virus Typing</a>","Cervical sample","Thin prep vials","Yes","No","g-i"],["Human Papilloma Virus Typing","<a href='tests/321.html' target='_blank'>Human Papilloma Virus Typing</a>","Cervical sample","Thin prep vials","Yes","No","g-i"],["Human T Lymphotropic Virus antibodies","<a href='tests/320.html' target='_blank'>HTLV 1 & 2 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Huntingtons Disease Genetic Testing","<a href='tests/225.html' target='_blank'>Huntingtons Disease Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Hydatid Cyst antibodies","<a href='tests/322.html' target='_blank'>Hydatid Cyst antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Hydrocoele fluid cytology","<a href='tests/756.html' target='_blank'>Cytology, Hydrocoele Fluid</a>","Hydrocoele Flu_","Urine/Specimen container 50ml","No","No","g-i"],["HYDROXY METHOXY MANDELIC ACID","<a href='tests/213.html' target='_blank'>Vanillyl Mandelic Acid (VMA)</a>","Urine","Urine container Acid 24 hour","Yes","No","g-i"],["Hydroxy Progesterone, 17HP","<a href='tests/514.html' target='_blank'>17-Hydroxy Progesterone, 17HP</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Hyperkalaemic Periodic Paralysis","<a href='tests/918.html' target='_blank'>Periodic Paralysis Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["Hypokalaemic Periodic Paralysis","<a href='tests/918.html' target='_blank'>Periodic Paralysis Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","g-i"],["IA-2 Antibodies","<a href='tests/768.html' target='_blank'>Anti-IA-2 Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["IgA","<a href='tests/700.html' target='_blank'>Immunoglobulin A</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["IgE","<a href='tests/699.html' target='_blank'>Immunoglobulin E</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["IGF1 (Insulin-Like Growth Factor 1)","<a href='tests/695.html' target='_blank'>Insulin Like Growth Factor 1 (IGF-1)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["IGF2 ","<a href='tests/835.html' target='_blank'>IGF2 </a>","Blood","N/A","No","No","g-i"],["IGF2 TEST NO LONGER AVAILABLE","<a href='tests/835.html' target='_blank'>IGF2 </a>","Blood","N/A","No","No","g-i"],["IGFBP3","<a href='tests/228.html' target='_blank'>Insulin-Like Growth Factor Binding Protein 3</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["IgG","<a href='tests/698.html' target='_blank'>Immunoglobulin G</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["IgG Subclasses","<a href='tests/22.html' target='_blank'>IgG Subclasses</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["IgH Framework 2 and 3","<a href='tests/761.html' target='_blank'>Immunoglobulin Heavy Chain Gene Rearrangement (Ig_</a>","Blood and/or B_","EDTA Tube 4 ml","Yes","No","g-i"],["IgM","<a href='tests/691.html' target='_blank'>Immunoglobulin M</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["IGS","<a href='tests/17.html' target='_blank'>Immunoglobulins</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["IL1 TEST NO LONGER AVAILABLE","<a href='tests/825.html' target='_blank'>Interleukin 1</a>","","N/A","No","No","g-i"],["IL6","<a href='tests/230.html' target='_blank'>Interleukin 6</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["IM screen","<a href='tests/277.html' target='_blank'>Epstein Barr Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","g-i"],["Immunofixation","<a href='tests/754.html' target='_blank'>Protein Electrophoresis, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Immunoglobulin A","<a href='tests/700.html' target='_blank'>Immunoglobulin A</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Immunoglobulin E","<a href='tests/699.html' target='_blank'>Immunoglobulin E</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Immunoglobulin G","<a href='tests/698.html' target='_blank'>Immunoglobulin G</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Immunoglobulin G, subclasses","<a href='tests/22.html' target='_blank'>IgG Subclasses</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Immunoglobulin Gene rearrangement","<a href='tests/764.html' target='_blank'>Immunoglobulin Gene rearrangement</a>","Bone marrow","EDTA Tube 4 ml","Yes","No","g-i"],["Immunoglobulin Heavy Chain Gene Rearrangemen_","<a href='tests/761.html' target='_blank'>Immunoglobulin Heavy Chain Gene Rearrangement (Ig_</a>","Blood and/or B_","EDTA Tube 4 ml","Yes","No","g-i"],["Immunoglobulin M","<a href='tests/691.html' target='_blank'>Immunoglobulin M</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Immunoglobulins","<a href='tests/17.html' target='_blank'>Immunoglobulins</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Implant, Microscopy and Culture","<a href='tests/324.html' target='_blank'>Implant, Microscopy and Culture</a>","Implant or pro_","Sterile container","No","No","g-i"],["Indirect Coombs","<a href='tests/616.html' target='_blank'>Antibody Screen (Red Cell antibodies)</a>","Blood","EDTA Tube 6ml","No","No","g-i"],["Infectious mononucleosis serology","<a href='tests/277.html' target='_blank'>Epstein Barr Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","g-i"],["Influenza Virus A & B antibodies","<a href='tests/325.html' target='_blank'>Influenza Virus A & B antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["Influenza Virus PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","g-i"],["Inhibin","<a href='tests/704.html' target='_blank'>Inhibin</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["Inhibin B","<a href='tests/704.html' target='_blank'>Inhibin</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["Inorganic Phosphate","<a href='tests/736.html' target='_blank'>Phosphate</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["INR (International Normalised Ratio)","<a href='tests/670.html' target='_blank'>INR (International Normalised Ratio)</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","g-i"],["Insulin","<a href='tests/697.html' target='_blank'>Insulin</a>","Blood","Lithium Heparin Tube","No","No","g-i"],["Insulin antibodies","<a href='tests/696.html' target='_blank'>Anti-Insulin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Insulin Like Growth Factor 1 (IGF-1)","<a href='tests/695.html' target='_blank'>Insulin Like Growth Factor 1 (IGF-1)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Insulin, Free","<a href='tests/898.html' target='_blank'>Free Insulin</a>","Blood","Lithium Heparin Tube","No","No","g-i"],["Insulin-Like Growth Factor Binding Protein 3","<a href='tests/228.html' target='_blank'>Insulin-Like Growth Factor Binding Protein 3</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["Intact Parathyroid Hormone","<a href='tests/690.html' target='_blank'>Parathyroid Hormone (PTH)</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Interferon Antibodies ","<a href='tests/824.html' target='_blank'>Interferon Antibodies </a>","","Serum Separator Tube (SST)","No","No","g-i"],["Interferon Beta Bioactivity ","<a href='tests/936.html' target='_blank'>Interferon Beta Bioactivity </a>","","Serum Separator Tube (SST)","No","No","g-i"],["Interferon Beta Neutralising Antibodies TEST_","<a href='tests/936.html' target='_blank'>Interferon Beta Bioactivity </a>","","Serum Separator Tube (SST)","No","No","g-i"],["Interleukin 1","<a href='tests/825.html' target='_blank'>Interleukin 1</a>","","N/A","No","No","g-i"],["Interleukin 6","<a href='tests/230.html' target='_blank'>Interleukin 6</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","g-i"],["Intra Uterine Device (IUD)","<a href='tests/69.html' target='_blank'>Intra Uterine Device (IUD)</a>","Intra Uterine _","Sterile container","No","No","g-i"],["Intracellular substance of squamous epitheli_","<a href='tests/694.html' target='_blank'>Anti-intracellular substance of squamous epitheli_</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Intravasular Coagulation Screen","<a href='tests/770.html' target='_blank'>Disseminated Intravascular Coagulation (Screen)</a>","Whole Blood","Sodium citrate Tube 2.7 ml","No","No","g-i"],["Intrinsic Factor antibodies","<a href='tests/20.html' target='_blank'>Anti-Intrinsic Factor antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Investigation of Lesions by Darkground Micro_","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Iodine, Urine","<a href='tests/227.html' target='_blank'>Iodine, Urine</a>","Urine","Urine/Specimen container 50ml","No","Yes","g-i"],["Ionised Calcium","<a href='tests/565.html' target='_blank'>Calcium Activity (Ionised)</a>","Blood","Syringe * Blood Gas","No","No","g-i"],["Iron","<a href='tests/693.html' target='_blank'>Iron</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Iron Studies (Includes Iron, Transferrin and_","<a href='tests/709.html' target='_blank'>Iron Studies (Includes Iron, Transferrin and Ferr_</a>","Blood","Serum Separator Tube (SST)","No","No","g-i"],["Iron, Liver Tissue","<a href='tests/143.html' target='_blank'>Iron, Liver Tissue</a>","Liver tissue","Sterile container","Yes","No","g-i"],["Iron, Urine","<a href='tests/229.html' target='_blank'>Iron, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","g-i"],["Isocyanide Metabolites","<a href='tests/920.html' target='_blank'>Isocyanide Metabolites</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","g-i"],["Isoniazid, Qualitative Screen (urine)","<a href='tests/92.html' target='_blank'>Isoniazid, Qualitative Screen (urine)</a>","Urine","Urine/Specimen container 50ml","No","No","g-i"],["Itraconazole","<a href='tests/151.html' target='_blank'>Itraconazole</a>","Blood","Serum Separator Tube (SST)","Yes","No","g-i"],["JAK 2","<a href='tests/896.html' target='_blank'>JAK 2</a>","Whole Blood","EDTA Tube 4 ml","No","No","j-l"],["Janus Kinase 2","<a href='tests/896.html' target='_blank'>JAK 2</a>","Whole Blood","EDTA Tube 4 ml","No","No","j-l"],["Japanese B Encephalitis Virus antibodies","<a href='tests/326.html' target='_blank'>Japanese B Encephalitis Virus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Japanese B Encephalitis Virus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","j-l"],["JC Virus DNA","<a href='tests/249.html' target='_blank'>BK Virus DNA</a>","","Serum Separator Tube (SST)","Yes","Yes","j-l"],["Jejunal Aspirate - Microscopy and culture","<a href='tests/275.html' target='_blank'>Duodenal Aspirate, Microscopy and culture</a>","Aspirate","Sterile container","No","No","j-l"],["Joint Aspirate cytology","<a href='tests/26.html' target='_blank'>Cytology, Synovial Fluid</a>","Synovial Fluid","Urine/Specimen container 50ml","No","No","j-l"],["Joint Fluid - Microscopy and culture","<a href='tests/381.html' target='_blank'>Synovial Fluid, Microscopy and culture</a>","Synovial Fluid","Sterile container","No","No","j-l"],["K","<a href='tests/734.html' target='_blank'>Potassium</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Karyotyping","<a href='tests/129.html' target='_blank'>Karyotyping</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","j-l"],["Kearns-Sayre Syndrome Genetic Testing","<a href='tests/894.html' target='_blank'>Kearns-Sayre Syndrome Genetic Testing</a>","Muscle/Skin","Sterile container","Yes","No","j-l"],["Kennedys Syndrome Genetic Testing","<a href='tests/242.html' target='_blank'>Kennedys Syndrome Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","j-l"],["Keppra","<a href='tests/919.html' target='_blank'>Levetiracetam</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","j-l"],["Ketones, Urine","<a href='tests/941.html' target='_blank'>Ketones, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","j-l"],["Kinidin TEST NO LONGER AVAILABLE","<a href='tests/745.html' target='_blank'>Quinidine</a>","","N/A","No","No","j-l"],["Kleihauer Test","<a href='tests/673.html' target='_blank'>Kleihauer Test</a>","Blood","EDTA Tube 6ml","No","No","j-l"],["KSS mutation genetic testing","<a href='tests/894.html' target='_blank'>Kearns-Sayre Syndrome Genetic Testing</a>","Muscle/Skin","Sterile container","Yes","No","j-l"],["Kugelberg-Welander","<a href='tests/239.html' target='_blank'>Spinal Muscular Atrophy Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["Kunjin virus antibodies","<a href='tests/273.html' target='_blank'>Flavivirus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Kunjin Virus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","j-l"],["L1 CAM Gene","<a href='tests/231.html' target='_blank'>L1 CAM Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","j-l"],["Labial Swab microscopy & culture","<a href='tests/404.html' target='_blank'>Vulval Swab, Microscopy and culture</a>","Vulval swab","Transswab- swab in transport medium","No","No","j-l"],["Lacrimal swab","<a href='tests/327.html' target='_blank'>Lacrimal swab</a>","Swab OR Pus","Transswab- swab in transport medium","No","No","j-l"],["Lactate","<a href='tests/715.html' target='_blank'>Lactate</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","j-l"],["Lactate Dehydrogenase, (LDH)","<a href='tests/714.html' target='_blank'>Lactate Dehydrogenase, (LDH)</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Lactate, CSF","<a href='tests/38.html' target='_blank'>Lactate, CSF</a>","CSF","Fluoride oxalate Tube 2 ml","No","No","j-l"],["lactic acidosis","<a href='tests/155.html' target='_blank'>MELAS mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["Lactoferrin antibodies","<a href='tests/933.html' target='_blank'>Anti-Lactoferrin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Lactose intolerance -faeces","<a href='tests/285.html' target='_blank'>Faeces, Reducing Substances</a>","","N/A","No","No","j-l"],["Lactose Tolerance Test","<a href='tests/146.html' target='_blank'>Lactose Tolerance Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","j-l"],["Lamictal","<a href='tests/102.html' target='_blank'>Lamotrigine</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["LAMIN gene","<a href='tests/153.html' target='_blank'>Becker Muscular Dystrophy (BMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["Lamotrigine","<a href='tests/102.html' target='_blank'>Lamotrigine</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Lanoxin","<a href='tests/3.html' target='_blank'>Digoxin</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Laxative Screen","<a href='tests/828.html' target='_blank'>Laxative Screen</a>","Urine","Urine/Specimen container 50ml","Yes","No","j-l"],["LDH","<a href='tests/714.html' target='_blank'>Lactate Dehydrogenase, (LDH)</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["LDH Isoenzymes","<a href='tests/912.html' target='_blank'>LDH Isoenzymes</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Lead, Urine","<a href='tests/144.html' target='_blank'>Lead, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","j-l"],["Lead, Whole Blood","<a href='tests/713.html' target='_blank'>Lead, Whole Blood</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["Lebers Neuropathy Screen","<a href='tests/174.html' target='_blank'>LHON Mutation 6460 (G->A)</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["Legionella antibodies","<a href='tests/329.html' target='_blank'>Legionella pneumophila antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Legionella culture TEST NOT AVAILABLE","<a href='tests/328.html' target='_blank'>Legionella Examination</a>","Sputum, Bronch_","Sterile container","Yes","Yes","j-l"],["Legionella Examination","<a href='tests/328.html' target='_blank'>Legionella Examination</a>","Sputum, Bronch_","Sterile container","Yes","Yes","j-l"],["Legionella PCR","<a href='tests/328.html' target='_blank'>Legionella Examination</a>","Sputum, Bronch_","Sterile container","Yes","Yes","j-l"],["Legionella pneumophila antibodies","<a href='tests/329.html' target='_blank'>Legionella pneumophila antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Legionella Pneumophila Type 1 Antigen","<a href='tests/330.html' target='_blank'>Legionella Pneumophila Type 1 Antigen</a>","Urine","Urine/Specimen container 50ml","Yes","No","j-l"],["Leiden Mutation (Factor V)","<a href='tests/667.html' target='_blank'>Leiden Mutation (Factor V)</a>","Blood","EDTA Tube 4 ml","No","No","j-l"],["Leighs Disease Screen","<a href='tests/161.html' target='_blank'>Leighs Disease Screen</a>","Blood","EDTA Tube 6ml","Yes","No","j-l"],["Leishmania antibodies","<a href='tests/331.html' target='_blank'>Leishmania antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Leishmaniasis serology","<a href='tests/331.html' target='_blank'>Leishmania antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Leptospira antibodies","<a href='tests/332.html' target='_blank'>Leptospira antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","j-l"],["Leptospira culture","<a href='tests/98.html' target='_blank'>Leptospira culture</a>","Serum, urine, _","N/A","Yes","No","j-l"],["Leucocyte antibodies","<a href='tests/603.html' target='_blank'>HLA antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","j-l"],["Leucocyte Lysosomal Enzymes","<a href='tests/107.html' target='_blank'>Lysosomal Enzyme Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","j-l"],["Leucodystrophy Screen","<a href='tests/107.html' target='_blank'>Lysosomal Enzyme Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","j-l"],["Levetiracetam","<a href='tests/919.html' target='_blank'>Levetiracetam</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","j-l"],["LFT","<a href='tests/712.html' target='_blank'>Liver Function Test</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["LH","<a href='tests/707.html' target='_blank'>Luteinising Hormone, (LH)</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["LHON Mutation 11778 (G->A)","<a href='tests/175.html' target='_blank'>LHON Mutation 11778 (G->A)</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["LHON Mutation 14484 (T->C)","<a href='tests/176.html' target='_blank'>LHON Mutation 14484 (T->C)</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["LHON Mutation 6460 (G->A)","<a href='tests/174.html' target='_blank'>LHON Mutation 6460 (G->A)</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["LI","<a href='tests/708.html' target='_blank'>Lithium</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Lid margin swab for M&C","<a href='tests/327.html' target='_blank'>Lacrimal swab</a>","Swab OR Pus","Transswab- swab in transport medium","No","No","j-l"],["Light chains in Urine","<a href='tests/415.html' target='_blank'>Protein Electrophoresis, Urine</a>","Early morning _","Urine/Specimen container 50ml","No","No","j-l"],["Lignocaine","<a href='tests/928.html' target='_blank'>Lignocaine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","j-l"],["Limbal Impression","<a href='tests/531.html' target='_blank'>Cytology, Impression Cytology</a>","Impression Cyt_","Millipore filter (cellulose acetate filter).","No","No","j-l"],["Lipase","<a href='tests/16.html' target='_blank'>Lipase</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Lipid Profile (Total Cholestesterol & Trigly_","<a href='tests/711.html' target='_blank'>Lipid Profile (Total Cholestesterol & Triglycerid_</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Lipoprotein (a)","<a href='tests/470.html' target='_blank'>Lipoprotein (a)</a>","Blood","Serum Separator Tube (SST)","No","Yes","j-l"],["Lipoprotein A1","<a href='tests/469.html' target='_blank'>Apolipoprotein A1</a>","Blood","Serum Separator Tube (SST)","No","Yes","j-l"],["Lipoprotein B","<a href='tests/468.html' target='_blank'>Apolipoprotein B</a>","Blood","Serum Separator Tube (SST)","No","Yes","j-l"],["Lipoprotein E genotype","<a href='tests/489.html' target='_blank'>Apolipoprotein E Genotype</a>","Blood","ACD tube","No","Yes","j-l"],["Lipoprotein Electrophoresis","<a href='tests/705.html' target='_blank'>Lipoprotein Electrophoresis</a>","","N/A","No","No","j-l"],["Lipoproteins electrophoresis TEST NO LONGER _","<a href='tests/705.html' target='_blank'>Lipoprotein Electrophoresis</a>","","N/A","No","No","j-l"],["Lithium","<a href='tests/708.html' target='_blank'>Lithium</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Liver Biopsy Copper level","<a href='tests/140.html' target='_blank'>Copper, Liver Tissue</a>","Liver tissue","Sterile container","Yes","No","j-l"],["Liver Biopsy Iron level","<a href='tests/143.html' target='_blank'>Iron, Liver Tissue</a>","Liver tissue","Sterile container","Yes","No","j-l"],["Liver Function Test","<a href='tests/712.html' target='_blank'>Liver Function Test</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Liver Function Tests (LFT)","<a href='tests/712.html' target='_blank'>Liver Function Test</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["LKM antibodies (Liver Kidney Microsome antib_","<a href='tests/412.html' target='_blank'>Anti-Liver Kidney Microsome antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Long-acting Thyroid Stimulator (LATS)","<a href='tests/474.html' target='_blank'>TSH Receptor antibodies (TSI)</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Low vaginal swab for Group B streptococcus s_","<a href='tests/299.html' target='_blank'>Group B streptococcus screen</a>","Low Vaginal sw_","Transswab- swab in transport medium","No","No","j-l"],["Low vaginal swab Microscopy and culture","<a href='tests/399.html' target='_blank'>Vaginal Swabs, Microscopy and culture</a>","Vaginal Swabs","Transswab- swab in transport medium","No","No","j-l"],["Lp(a)","<a href='tests/470.html' target='_blank'>Lipoprotein (a)</a>","Blood","Serum Separator Tube (SST)","No","Yes","j-l"],["Lupus Anticoagulant Screen","<a href='tests/666.html' target='_blank'>Lupus Anticoagulant Screen</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","j-l"],["Lupus Inhibitor","<a href='tests/666.html' target='_blank'>Lupus Anticoagulant Screen</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","j-l"],["Luteinising Hormone, (LH)","<a href='tests/707.html' target='_blank'>Luteinising Hormone, (LH)</a>","Blood","Serum Separator Tube (SST)","No","No","j-l"],["Lyme Disease antibodies","<a href='tests/333.html' target='_blank'>Lyme Disease antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","j-l"],["Lymph Node Biopsy Histology","<a href='tests/52.html' target='_blank'>Histology, Lymph Node Biopsy</a>","Tissue, fresh _","Sterile container","No","No","j-l"],["Lymphocoele Fluid - Microscopy and culture","<a href='tests/358.html' target='_blank'>Pus, Microscopy and culture</a>","Pus","Sterile container","No","No","j-l"],["Lymphocyte markers","<a href='tests/644.html' target='_blank'>Surface Marker Studies</a>","Blood or bone _","EDTA Tube 4 ml","No","No","j-l"],["Lymphocyte Subset Analysis","<a href='tests/665.html' target='_blank'>Lymphocyte Subset Analysis</a>","Blood","EDTA Tube 4 ml","No","No","j-l"],["LYNCH SYNDROME","<a href='tests/842.html' target='_blank'>MSH2/MSH6 Mutation Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["LYNCH SYNDROME","<a href='tests/226.html' target='_blank'>Hereditary Non Polyposis Colorectal Cancer Geneti_</a>","Blood","EDTA Tube 4 ml","Yes","No","j-l"],["Lysis test","<a href='tests/659.html' target='_blank'>Euglobulin Lysis Time</a>","Blood,","Sodium citrate Tube 2.7 ml","No","No","j-l"],["Lysosomal alpha-glucosidase","<a href='tests/771.html' target='_blank'>Acid Maltase</a>","Blood & Urine","EDTA Tube 4 ml","Yes","Yes","j-l"],["Lysosomal Enzyme Screen","<a href='tests/107.html' target='_blank'>Lysosomal Enzyme Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","j-l"],["Lysozyme ","<a href='tests/706.html' target='_blank'>Lysozyme </a>","Blood","N/A","Yes","No","j-l"],["Lysozyme urine TEST NO LONGER AVAILABLE","<a href='tests/829.html' target='_blank'>Lysozyme, Urine</a>","","N/A","No","No","j-l"],["Lysozyme, Urine","<a href='tests/829.html' target='_blank'>Lysozyme, Urine</a>","","N/A","No","No","j-l"],["Machado-Joseph / ATXN3 gene","<a href='tests/202.html' target='_blank'>Spinal Cerebellar Ataxia Screening</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MacroPRL","<a href='tests/939.html' target='_blank'>Macroprolactin</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Macroprolactin","<a href='tests/939.html' target='_blank'>Macroprolactin</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["MAG Antibodies","<a href='tests/830.html' target='_blank'>Anti-MAG Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["Magnesium","<a href='tests/689.html' target='_blank'>Magnesium</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Magnesium, Red Cell","<a href='tests/118.html' target='_blank'>Red Cell Magnesium</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","m-o"],["Magnesium, Urine","<a href='tests/897.html' target='_blank'>Magnesium, Urine</a>","Urine","Urine container Acid 24 hour","No","No","m-o"],["Malarial Parasite Investigation","<a href='tests/651.html' target='_blank'>Malarial Parasite Investigation</a>","Blood","EDTA Tube 4 ml","No","No","m-o"],["Malignant Hyperthermia","<a href='tests/924.html' target='_blank'>Central Core Disease Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Mammary Serum Antigen","<a href='tests/152.html' target='_blank'>Mammary Serum Antigen</a>","","N/A","No","No","m-o"],["Manganese plasma TEST NO LONGER AVAILABLE","<a href='tests/139.html' target='_blank'>Manganese, Plasma</a>","","N/A","No","No","m-o"],["Manganese, Plasma","<a href='tests/139.html' target='_blank'>Manganese, Plasma</a>","","N/A","No","No","m-o"],["Manganese, Whole Blood","<a href='tests/105.html' target='_blank'>Manganese, Whole Blood</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Manual differential","<a href='tests/661.html' target='_blank'>Differential White Cell Count</a>","Blood","EDTA Tube 4 ml","No","No","m-o"],["Marevan levels","<a href='tests/30.html' target='_blank'>Warfarin levels</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["MASA Syndrome","<a href='tests/231.html' target='_blank'>L1 CAM Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Mast Cell Tryptase","<a href='tests/113.html' target='_blank'>Tryptase</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["Mastoid Swab","<a href='tests/334.html' target='_blank'>Mastoid Swab</a>","Swab","Transswab- swab in transport medium","No","No","m-o"],["Maternal Serum Screening","<a href='tests/106.html' target='_blank'>Maternal Serum Screening</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["Maxillary Sinus Swab -Microscopy and culture","<a href='tests/93.html' target='_blank'>Nasal Sinus Swab, Microscopy and culture</a>","Sinus swab","ENT/urethral swab- wire swab in transport medium","No","No","m-o"],["MD type 1","<a href='tests/220.html' target='_blank'>Myotonic Dystrophy (Triplet Repeat) Genetic Testi_</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Measles Virus antibodies","<a href='tests/335.html' target='_blank'>Measles Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["MEH-1 urine","<a href='tests/187.html' target='_blank'>Methyl Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["MEL","<a href='tests/155.html' target='_blank'>MELAS mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Melanogen","<a href='tests/831.html' target='_blank'>Melanogen</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["Melanogen TEST NO LONGER AVAILABLE","<a href='tests/831.html' target='_blank'>Melanogen</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["MELAS mutation","<a href='tests/155.html' target='_blank'>MELAS mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MELAS: Mitochondrial encephalomyopathy","<a href='tests/155.html' target='_blank'>MELAS mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Melatonin","<a href='tests/891.html' target='_blank'>Melatonin</a>","","N/A","No","No","m-o"],["Melatonin TEST NO LONGER AVAILABLE","<a href='tests/891.html' target='_blank'>Melatonin</a>","","N/A","No","No","m-o"],["Men 1","<a href='tests/903.html' target='_blank'>Men 1</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Men II ","<a href='tests/833.html' target='_blank'>Men II </a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Meningococcal PCR","<a href='tests/345.html' target='_blank'>Neisseria meningitidis, Detection of DNA by polym_</a>","","**Sterile container","Yes","No","m-o"],["meperidine plasma","<a href='tests/204.html' target='_blank'>Pethidine, Quantitative Plasma Assay</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["meperidine urine","<a href='tests/203.html' target='_blank'>Pethidine, Qualitative Urine Screen</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["Mercury, Urine","<a href='tests/692.html' target='_blank'>Mercury, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","m-o"],["Mercury, Whole Blood","<a href='tests/710.html' target='_blank'>Mercury, Whole Blood</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MERRF mutation","<a href='tests/156.html' target='_blank'>MERRF mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Mesomark","<a href='tests/832.html' target='_blank'>Mesothelin</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["Mesothelin","<a href='tests/832.html' target='_blank'>Mesothelin</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["Metabolic Screen, Urine","<a href='tests/104.html' target='_blank'>Metabolic Screen, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","m-o"],["Metadrenaline (timed urine)","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Metadrenaline serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["Metanephrine urine","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Metanephrine serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["Metanephrines, Plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["Metanephrines, Urine","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Methadone","<a href='tests/42.html' target='_blank'>Methadone Metabolite, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","m-o"],["Methadone Metabolite","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","m-o"],["Methadone Metabolite, Urine","<a href='tests/42.html' target='_blank'>Methadone Metabolite, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","m-o"],["Methaemoglobin","<a href='tests/910.html' target='_blank'>Methaemoglobin</a>","Blood","Lithium Heparin Tube WITHOUT GEL","No","No","m-o"],["Methanol","<a href='tests/157.html' target='_blank'>Methanol</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["MetHb","<a href='tests/910.html' target='_blank'>Methaemoglobin</a>","Blood","Lithium Heparin Tube WITHOUT GEL","No","No","m-o"],["Methotrexate, CSF","<a href='tests/178.html' target='_blank'>Methotrexate, CSF</a>","CSF","CSF tube(s)","Yes","No","m-o"],["Methotrexate, Serum","<a href='tests/678.html' target='_blank'>Methotrexate, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Methyl Histamine","<a href='tests/822.html' target='_blank'>Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Methyl Histamine, Urine","<a href='tests/187.html' target='_blank'>Methyl Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Methyl Malonic Acid, Plasma","<a href='tests/901.html' target='_blank'>Methyl Malonic Acid, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["Methyl Malonic Acid, Urine","<a href='tests/873.html' target='_blank'>Methyl Malonic Acid, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","m-o"],["Methylene Tetrahydrofolate Reductase","<a href='tests/188.html' target='_blank'>Methylene Tetrahydrofolate Reductase</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Methylene Tetrahydrofolate Reductase Mutation","<a href='tests/188.html' target='_blank'>Methylene Tetrahydrofolate Reductase</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Mets 3,4-Dihydroxymandelic acid serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["Mets 3,4-Dihydroxymandelic Acid serum/plasma","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Mexiletine","<a href='tests/677.html' target='_blank'>Mexiletine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["MG","<a href='tests/689.html' target='_blank'>Magnesium</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Microalbumin, Random","<a href='tests/573.html' target='_blank'>Microalbumin, Random</a>","Urine","Urine/Specimen container 50ml","No","No","m-o"],["Microarray analysis","<a href='tests/129.html' target='_blank'>Karyotyping</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["Mitochondrial antibodies","<a href='tests/411.html' target='_blank'>Anti-Mitochondrial antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Mitochondrial DNA","<a href='tests/108.html' target='_blank'>Mitochondrial Studies</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Mitochondrial Studies","<a href='tests/108.html' target='_blank'>Mitochondrial Studies</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MLH 1 gene","<a href='tests/226.html' target='_blank'>Hereditary Non Polyposis Colorectal Cancer Geneti_</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MLH 1 gene","<a href='tests/842.html' target='_blank'>MSH2/MSH6 Mutation Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MMA","<a href='tests/901.html' target='_blank'>Methyl Malonic Acid, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["MMA","<a href='tests/873.html' target='_blank'>Methyl Malonic Acid, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","m-o"],["Molecular Karyotyping","<a href='tests/129.html' target='_blank'>Karyotyping</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["Molybdenum, Whole Blood","<a href='tests/130.html' target='_blank'>Molybdenum, Whole Blood</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Monospot Test (Epstein Barr Virus antibodies)","<a href='tests/277.html' target='_blank'>Epstein Barr Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","m-o"],["Morphine","<a href='tests/840.html' target='_blank'>Morphine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["Motor Neurone Disease Screening","<a href='tests/837.html' target='_blank'>Motor Neurone Disease Screening</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Mouth Swab microbiology","<a href='tests/336.html' target='_blank'>Oral Swab, Hard Palate or Soft Palate</a>","Swab of mouth","Transswab- swab in transport medium","No","No","m-o"],["MPA","<a href='tests/131.html' target='_blank'>Mycophenolate</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MPO antibodies","<a href='tests/446.html' target='_blank'>Anti-Myeloperoxidase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["MPRL","<a href='tests/939.html' target='_blank'>Macroprolactin</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["MRSA Screen","<a href='tests/337.html' target='_blank'>MRSA Screen</a>","Swab, nose, pe_","Transswab- swab in transport medium","No","No","m-o"],["MS","<a href='tests/108.html' target='_blank'>Mitochondrial Studies</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MSA TEST NO LONGER AVAILABLE","<a href='tests/152.html' target='_blank'>Mammary Serum Antigen</a>","","N/A","No","No","m-o"],["MSH 2 gene","<a href='tests/842.html' target='_blank'>MSH2/MSH6 Mutation Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MSH 2 gene","<a href='tests/226.html' target='_blank'>Hereditary Non Polyposis Colorectal Cancer Geneti_</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MSH 6 gene","<a href='tests/226.html' target='_blank'>Hereditary Non Polyposis Colorectal Cancer Geneti_</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MSH 6 gene","<a href='tests/842.html' target='_blank'>MSH2/MSH6 Mutation Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MSH2/MSH6 Mutation Testing","<a href='tests/842.html' target='_blank'>MSH2/MSH6 Mutation Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["MTHFR","<a href='tests/188.html' target='_blank'>Methylene Tetrahydrofolate Reductase</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["MTX","<a href='tests/678.html' target='_blank'>Methotrexate, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Multiple Endocrine Neoplasia II","<a href='tests/833.html' target='_blank'>Men II </a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Multiple Endocrine Neoplasia Type 1","<a href='tests/903.html' target='_blank'>Men 1</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Mumps Virus antibodies","<a href='tests/339.html' target='_blank'>Mumps Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","m-o"],["Muraminidase (Lysozyme) TEST NO LONGER AVAIL_","<a href='tests/706.html' target='_blank'>Lysozyme </a>","Blood","N/A","Yes","No","m-o"],["Murray Valley Encephalitis Virus antibodies","<a href='tests/340.html' target='_blank'>Murray Valley Encephalitis Virus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Murray Valley Encephalitis Virus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["Muscle Biopsy Histology","<a href='tests/53.html' target='_blank'>Histology, Muscle Biopsy</a>","Tissue, muscle_","Muscle Biopsy Kit","No","No","m-o"],["Muscle Enzymes","<a href='tests/419.html' target='_blank'>CK (Creatine Kinase)</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Muscle Specific Kinase (MuSK) antibodies","<a href='tests/238.html' target='_blank'>Anti-MuSK Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["Muscular Dystrophy Testing","<a href='tests/153.html' target='_blank'>Becker Muscular Dystrophy (BMD) Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Mycobacteria investigation- blood","<a href='tests/387.html' target='_blank'>Blood Cultures, Mycobacterium</a>","Blood","Blood culture bottles (BACTEC) Mycolytic","No","No","m-o"],["Mycobacteria investigation- fluid","<a href='tests/383.html' target='_blank'>Aspirated fluid - Mycobacteria investigation</a>","Fluid","Sterile container","No","No","m-o"],["Mycobacteria investigation- sputum M&C","<a href='tests/384.html' target='_blank'>Sputum - Mycobacteria investigation</a>","Sputum","Urine/Specimen container 50ml","No","No","m-o"],["Mycobacteria investigation- tissue M&C","<a href='tests/385.html' target='_blank'>Tissue, for AFB Investigation</a>","Tissue","Sterile container","No","No","m-o"],["Mycobacteria investigation- urine M&C","<a href='tests/386.html' target='_blank'>Urine, Early morning for Mycobacterium</a>","Urine","Urine container 200ml","No","No","m-o"],["Mycophenolate","<a href='tests/131.html' target='_blank'>Mycophenolate</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Mycoplasma pneumoniae antibodies","<a href='tests/341.html' target='_blank'>Mycoplasma pneumoniae antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","m-o"],["Mycoplasma pneumoniae antibodies Ig G and IgM","<a href='tests/341.html' target='_blank'>Mycoplasma pneumoniae antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","m-o"],["Myeloperoxidase antibodies","<a href='tests/446.html' target='_blank'>Anti-Myeloperoxidase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Myocardial CK (CKMB)","<a href='tests/436.html' target='_blank'>CKMB (Creatine Kinase MB isoform)</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Myoglobin, Serum","<a href='tests/679.html' target='_blank'>Myoglobin, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Myoglobin, Urine","<a href='tests/74.html' target='_blank'>Myoglobin, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["Myositis antibodies","<a href='tests/921.html' target='_blank'>Anti-Myositis antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Myotonia Congenita","<a href='tests/932.html' target='_blank'>Myotonia Congenita</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Myotonic Dystrophy (Triplet Repeat) Genetic _","<a href='tests/220.html' target='_blank'>Myotonic Dystrophy (Triplet Repeat) Genetic Testi_</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Mysoline","<a href='tests/739.html' target='_blank'>Primidone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["N Telopeptide urine","<a href='tests/172.html' target='_blank'>N-Telopeptide, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["NAB","<a href='tests/240.html' target='_blank'>Anti-Interferon antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["NAB TEST NO LONGER AVAILABLE","<a href='tests/824.html' target='_blank'>Interferon Antibodies </a>","","Serum Separator Tube (SST)","No","No","m-o"],["Nail Clippings, for Dermatophyte Investigati_","<a href='tests/342.html' target='_blank'>Nail Clippings, for Dermatophyte Investigation- N_</a>","Nail clippings","Urine/Specimen container 50ml","No","No","m-o"],["NARP mutation","<a href='tests/154.html' target='_blank'>NARP mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Nasal Sinus Swab, Microscopy and culture","<a href='tests/93.html' target='_blank'>Nasal Sinus Swab, Microscopy and culture</a>","Sinus swab","ENT/urethral swab- wire swab in transport medium","No","No","m-o"],["Nasal Swab, Microscopy and culture","<a href='tests/347.html' target='_blank'>Nasal Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","m-o"],["Nasogastric aspirate - Microscopy and culture","<a href='tests/296.html' target='_blank'>Gastric aspirate, Microscopy and culture</a>","Aspirate, gast_","Sterile container","No","No","m-o"],["Nasopharyngeal aspirate for Bordetella pertu_","<a href='tests/343.html' target='_blank'>Nasopharyngeal Swab, microscopy and culture</a>","Nasopharyngeal_","Urine/Specimen container 50ml","No","No","m-o"],["Nasopharyngeal aspirate for Bordetella pertu_","<a href='tests/101.html' target='_blank'>Bordetella pertussis PCR</a>","","Sterile container","No","Yes","m-o"],["Nasopharyngeal aspirate for Bordetella pertu_","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","m-o"],["Nasopharyngeal aspirate for viral PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","m-o"],["Nasopharyngeal Swab","<a href='tests/101.html' target='_blank'>Bordetella pertussis PCR</a>","","Sterile container","No","Yes","m-o"],["Nasopharyngeal Swab","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","m-o"],["Nasopharyngeal Swab, microscopy and culture","<a href='tests/343.html' target='_blank'>Nasopharyngeal Swab, microscopy and culture</a>","Nasopharyngeal_","Urine/Specimen container 50ml","No","No","m-o"],["NEFA","<a href='tests/810.html' target='_blank'>Free Fatty Acids</a>","Blood","Fluoride oxalate Tube 2 ml","Yes","No","m-o"],["Neisseria gonorrhoeae detection by PCR in ur_","<a href='tests/145.html' target='_blank'>Urine, Neisseria gonorrheae PCR</a>","First catch ur_","Urine/Specimen container 50ml","No","No","m-o"],["Neisseria gonorrhoeae, Detection by PCR","<a href='tests/344.html' target='_blank'>Neisseria gonorrhoeae, Detection by PCR</a>","","Urine/Specimen container 50ml","No","No","m-o"],["Neisseria meningitidis, Detection of DNA by _","<a href='tests/345.html' target='_blank'>Neisseria meningitidis, Detection of DNA by polym_</a>","","**Sterile container","Yes","No","m-o"],["Neoral","<a href='tests/8.html' target='_blank'>Cyclosporin</a>","Blood","EDTA Tube 4 ml","No","No","m-o"],["Nephrostromy Urine","<a href='tests/346.html' target='_blank'>Urine, Nephrostomy Specimen for Microscopy and Cu_</a>","Urine, nephros_","Urine/Specimen container 50ml","No","No","m-o"],["Nerve Biopsy","<a href='tests/54.html' target='_blank'>Histology, Nerve Biopsy</a>","Nerve tissue. _","Nerve Biopsy Kit","No","No","m-o"],["Neurolipidosis Screen","<a href='tests/107.html' target='_blank'>Lysosomal Enzyme Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Neuromyelitis Optica Antibody","<a href='tests/785.html' target='_blank'>NMO Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Neuronal ABS","<a href='tests/7.html' target='_blank'>Anti-Neuronal antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Neuronal antibodies","<a href='tests/7.html' target='_blank'>Anti-Neuronal antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Neurone Specific Enolase, (NSE)","<a href='tests/675.html' target='_blank'>Neurone Specific Enolase, (NSE)</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Neurontin","<a href='tests/814.html' target='_blank'>Gabapentin</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["Neuropathy, ataxia and retinitis pigmentosa _","<a href='tests/154.html' target='_blank'>NARP mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Neutralising Interferon antibodies","<a href='tests/240.html' target='_blank'>Anti-Interferon antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Neutrophil Cytoplasmic antibodies","<a href='tests/430.html' target='_blank'>Anti-Neutrophil Cytoplasmic Abs</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["NH3","<a href='tests/589.html' target='_blank'>Ammonia</a>","Blood","Lithium Heparin Tube","No","No","m-o"],["Niacin, Urine","<a href='tests/839.html' target='_blank'>Niacin, Urine</a>","Timed Urine","Special Container - Contact Laboratory","Yes","No","m-o"],["Nickel, Urine","<a href='tests/215.html' target='_blank'>Nickel, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","m-o"],["Nicotinic Acid urine","<a href='tests/839.html' target='_blank'>Niacin, Urine</a>","Timed Urine","Special Container - Contact Laboratory","Yes","No","m-o"],["Niemann-Pick disease A/B","<a href='tests/857.html' target='_blank'>Sphingomyelinase</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["Nipple Discharge cytology","<a href='tests/23.html' target='_blank'>Cytology, Nipple Discharge</a>","Nipple Dischar_","Glass Slide","No","No","m-o"],["Nits","<a href='tests/300.html' target='_blank'>Hair, for Microbiological Investigation</a>","Hair","Urine/Specimen container 50ml","No","No","m-o"],["NMDA","<a href='tests/913.html' target='_blank'>NMDA Receptor Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["NMDA Receptor Antibodies","<a href='tests/913.html' target='_blank'>NMDA Receptor Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","m-o"],["NMO Antibodies","<a href='tests/785.html' target='_blank'>NMO Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Noradrenaline, Urine","<a href='tests/425.html' target='_blank'>Catecholamines, Urine</a>","Timed Urine","Urine container Acid 24 hour","No","No","m-o"],["Norepinephrine","<a href='tests/425.html' target='_blank'>Catecholamines, Urine</a>","Timed Urine","Urine container Acid 24 hour","No","No","m-o"],["Normetadrenaline serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["Normetadrenaline urine","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Normetanephrine serum/plasma","<a href='tests/836.html' target='_blank'>Metanephrines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","m-o"],["Normetanephrine urine","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["Norovirus PCR","<a href='tests/884.html' target='_blank'>Norovirus PCR</a>","Faeces (Random_","Faeces container","No","No","m-o"],["Norpethidine plasma","<a href='tests/204.html' target='_blank'>Pethidine, Quantitative Plasma Assay</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["Nortriptyline","<a href='tests/844.html' target='_blank'>Nortriptyline</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["Nose Swab - Microscopy and culture","<a href='tests/347.html' target='_blank'>Nasal Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","m-o"],["Nose swab-MRSA","<a href='tests/337.html' target='_blank'>MRSA Screen</a>","Swab, nose, pe_","Transswab- swab in transport medium","No","No","m-o"],["Notch 3 gene","<a href='tests/923.html' target='_blank'>Cadasil Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","m-o"],["NSE","<a href='tests/675.html' target='_blank'>Neurone Specific Enolase, (NSE)</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["N-Telopeptide, Urine","<a href='tests/172.html' target='_blank'>N-Telopeptide, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["N-Telopeptides","<a href='tests/838.html' target='_blank'>N-Telopeptides</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["NTX","<a href='tests/838.html' target='_blank'>N-Telopeptides</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["NTX urine","<a href='tests/172.html' target='_blank'>N-Telopeptide, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","m-o"],["Nuelin","<a href='tests/731.html' target='_blank'>Theophylline</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Ocular specimens - Chlamydia trachomatis PCR","<a href='tests/398.html' target='_blank'>Chlamydia trachomatis DNA (PCR) in swabs</a>","Genital or eye_","Dry Swab","No","No","m-o"],["Oestradiol, 17� Oestradiol","<a href='tests/674.html' target='_blank'>Oestradiol, 17� Oestradiol</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Oestriol serum TEST NO LONGER AVAILABLE","<a href='tests/683.html' target='_blank'>Oestriol, Serum</a>","","N/A","No","No","m-o"],["Oestriol, Serum","<a href='tests/683.html' target='_blank'>Oestriol, Serum</a>","","N/A","No","No","m-o"],["Oestriol, Urine","<a href='tests/845.html' target='_blank'>Oestriol, Urine</a>","","N/A","No","No","m-o"],["Oestrone metabolites","<a href='tests/806.html' target='_blank'>Estrone Metabolites</a>","Urine","Special Container - Contact Laboratory","Yes","Yes","m-o"],["OGCT","<a href='tests/504.html' target='_blank'>Glucose Challenge Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","m-o"],["OGTT","<a href='tests/502.html' target='_blank'>Glucose Tolerance Test</a>","Blood (X 3)","Fluoride oxalate Tube 2 ml","No","No","m-o"],["Olanzapine","<a href='tests/162.html' target='_blank'>Olanzapine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","m-o"],["Oligoclonal bands","<a href='tests/12.html' target='_blank'>CSF Electrophoresis</a>","CSF","CSF tube(s)","No","No","m-o"],["Opiates","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","m-o"],["Opiates, Urine","<a href='tests/676.html' target='_blank'>Opiates, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","m-o"],["Oral Glucose Challenge Test","<a href='tests/504.html' target='_blank'>Glucose Challenge Test</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","m-o"],["Oral Glucose Tolerance test","<a href='tests/502.html' target='_blank'>Glucose Tolerance Test</a>","Blood (X 3)","Fluoride oxalate Tube 2 ml","No","No","m-o"],["Oral hypoglycaemic screen","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Oral Swab, Hard Palate or Soft Palate","<a href='tests/336.html' target='_blank'>Oral Swab, Hard Palate or Soft Palate</a>","Swab of mouth","Transswab- swab in transport medium","No","No","m-o"],["Orbital cellulitis for M&C","<a href='tests/327.html' target='_blank'>Lacrimal swab</a>","Swab OR Pus","Transswab- swab in transport medium","No","No","m-o"],["Organic Acid Screen, Urine","<a href='tests/189.html' target='_blank'>Organic Acid Screen, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","m-o"],["Organochlorinated pesticides","<a href='tests/237.html' target='_blank'>Pesticide Screen (Organochlorinated pesticides)</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","m-o"],["Organophosphate pesticide screening","<a href='tests/71.html' target='_blank'>Cholinesterase, Red Cell</a>","Blood","EDTA Tube 4 ml","Yes","No","m-o"],["Ornithine","<a href='tests/190.html' target='_blank'>Ornithine</a>","Blood","Lithium Heparin Tube","Yes","Yes","m-o"],["Orotic Acid","<a href='tests/191.html' target='_blank'>Orotic Acid</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","m-o"],["Osmolality","<a href='tests/89.html' target='_blank'>Osmolality, Faeces</a>","Random faeces","Faeces container","Yes","No","m-o"],["Osmolality, Faeces","<a href='tests/89.html' target='_blank'>Osmolality, Faeces</a>","Random faeces","Faeces container","Yes","No","m-o"],["Osmolality, Serum","<a href='tests/688.html' target='_blank'>Osmolality, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Osmolality, Urine","<a href='tests/687.html' target='_blank'>Osmolality, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","m-o"],["Ostase","<a href='tests/943.html' target='_blank'>Bone-specific alkaline phosphatase</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Osteocalcin","<a href='tests/686.html' target='_blank'>Osteocalcin</a>","Blood","Serum Separator Tube (SST)","Yes","No","m-o"],["Otitis externa - Microscopy and culture","<a href='tests/276.html' target='_blank'>Ear Swab, Microscopy and culture</a>","Ear swab","Transswab- swab in transport medium","No","No","m-o"],["Otitis media - Microscopy and culture","<a href='tests/276.html' target='_blank'>Ear Swab, Microscopy and culture</a>","Ear swab","Transswab- swab in transport medium","No","No","m-o"],["Ovarian Cyst Fluid - cytology","<a href='tests/520.html' target='_blank'>Cytology, Cyst Fluid</a>","Cyst Fluid","Urine/Specimen container 50ml","No","No","m-o"],["Ovary antibodies","<a href='tests/480.html' target='_blank'>Anti-Ovary antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","m-o"],["Ovary swab M&C","<a href='tests/287.html' target='_blank'>Fallopian Tube Swab</a>","Fluid/tissue o_","Transswab- swab in transport medium","No","No","m-o"],["Oxalate, Urine","<a href='tests/685.html' target='_blank'>Oxalate, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","m-o"],["P1NP","<a href='tests/895.html' target='_blank'>Procollagen Type 1 N-propeptide</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["P4","<a href='tests/733.html' target='_blank'>Progesterone</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Packed Cell Volume","<a href='tests/636.html' target='_blank'>Packed Cell Volume</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["Paediatric bag urine M&C","<a href='tests/298.html' target='_blank'>Urine, Bag specimen for Microscopy and Culture</a>","Urine","N/A","No","No","p-r"],["PAI","<a href='tests/628.html' target='_blank'>Plasminogen Activator Inhibitor</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","p-r"],["Pancreatic Polypeptide","<a href='tests/192.html' target='_blank'>Pancreatic Polypeptide</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","p-r"],["Paracetamol","<a href='tests/684.html' target='_blank'>Paracetamol</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Parasite antigens - faeces","<a href='tests/41.html' target='_blank'>Faeces, Giardia and Crytosporidium antigens</a>","","N/A","No","No","p-r"],["Parathyroid Hormone (PTH)","<a href='tests/690.html' target='_blank'>Parathyroid Hormone (PTH)</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Parathyroid Hormone Related Peptide, (PTHRP)","<a href='tests/682.html' target='_blank'>Parathyroid Hormone Related Peptide, (PTHRP)</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","Yes","p-r"],["Parietal Cell antibodies","<a href='tests/479.html' target='_blank'>Anti-Parietal Cell antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Parkinsons Disease Genetic Screen","<a href='tests/846.html' target='_blank'>Parkinsons Disease Genetic Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["Paroxysmal Nocturnal Haemoglobinuria screen","<a href='tests/621.html' target='_blank'>Paroxysmal Nocturnal Haemoglobinuria screen</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["Parvovirus B19 antibodies","<a href='tests/348.html' target='_blank'>Parvovirus B19 antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","p-r"],["Parvovirus B19 DNA, Detection by PCR","<a href='tests/349.html' target='_blank'>Parvovirus B19 DNA, Detection by PCR</a>","Blood","ACD tube","Yes","No","p-r"],["Paul Bunnell Test","<a href='tests/277.html' target='_blank'>Epstein Barr Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","p-r"],["Paxam","<a href='tests/123.html' target='_blank'>Clonazepam</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["PBG","<a href='tests/743.html' target='_blank'>Porphobilinogen</a>","Urine","Urine/Specimen container 50ml","No","No","p-r"],["PBG Deaminase","<a href='tests/849.html' target='_blank'>PBG Deaminase</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["PBGD","<a href='tests/849.html' target='_blank'>PBG Deaminase</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["PC","<a href='tests/630.html' target='_blank'>Protein C</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["PCA (Parietal Cell antibodies)","<a href='tests/479.html' target='_blank'>Anti-Parietal Cell antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["PCT","<a href='tests/219.html' target='_blank'>Procalcitonin</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["PCV","<a href='tests/636.html' target='_blank'>Packed Cell Volume</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["PD fluid - Microscopy and culture","<a href='tests/352.html' target='_blank'>Peritoneal Dialysis Fluid, Microscopy and culture</a>","Bag, CAPD bag.","Dialysis bag","No","No","p-r"],["Pearson Syndrome, Genetic testing","<a href='tests/199.html' target='_blank'>Pearson Syndrome, Genetic testing</a>","Muscle","Urine/Specimen container 50ml","Yes","No","p-r"],["Pediculosis","<a href='tests/300.html' target='_blank'>Hair, for Microbiological Investigation</a>","Hair","Urine/Specimen container 50ml","No","No","p-r"],["Pelvic inflammatory disease M&C","<a href='tests/287.html' target='_blank'>Fallopian Tube Swab</a>","Fluid/tissue o_","Transswab- swab in transport medium","No","No","p-r"],["Pelvic Washings cytology","<a href='tests/25.html' target='_blank'>Cytology, Pelvic Washings</a>","Pelvic Washings","Urine/Specimen container 50ml","No","No","p-r"],["Penicillin G","<a href='tests/681.html' target='_blank'>FREE Penicillin G</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Penile Swab","<a href='tests/350.html' target='_blank'>Penile Swab</a>","Penile swab","ENT/urethral swab- wire swab in transport medium","No","No","p-r"],["Perhexiline","<a href='tests/717.html' target='_blank'>Perhexiline</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Pericardial Effusion - cytology","<a href='tests/523.html' target='_blank'>Cytology, Pericardial Fluid</a>","Pericardial Fl_","Urine/Specimen container 50ml","No","No","p-r"],["Pericardial Fluid, Microscopy and culture","<a href='tests/351.html' target='_blank'>Pericardial Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","p-r"],["Perineum swab- MRSA","<a href='tests/337.html' target='_blank'>MRSA Screen</a>","Swab, nose, pe_","Transswab- swab in transport medium","No","No","p-r"],["Periodic Paralysis Genetic Testing","<a href='tests/918.html' target='_blank'>Periodic Paralysis Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["Peritoneal Dialysis Fluid, Microscopy and cu_","<a href='tests/352.html' target='_blank'>Peritoneal Dialysis Fluid, Microscopy and culture</a>","Bag, CAPD bag.","Dialysis bag","No","No","p-r"],["Peritoneal Fluid, Microscopy and culture","<a href='tests/353.html' target='_blank'>Peritoneal Fluid, Microscopy and culture</a>","Aspirated Fluid","Sterile container","No","No","p-r"],["Peritoneal Washings cytology","<a href='tests/24.html' target='_blank'>Cytology, Peritoneal Washings</a>","Peritoneal Was_","Urine/Specimen container 50ml","No","No","p-r"],["Peri-Tonsillar Abscess Swab or Aspirate M&C","<a href='tests/389.html' target='_blank'>Throat Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","p-r"],["Permacath","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","p-r"],["Pernasal swab","<a href='tests/101.html' target='_blank'>Bordetella pertussis PCR</a>","","Sterile container","No","Yes","p-r"],["Pernasal swab, Microscopy and culture","<a href='tests/343.html' target='_blank'>Nasopharyngeal Swab, microscopy and culture</a>","Nasopharyngeal_","Urine/Specimen container 50ml","No","No","p-r"],["Pertussis antibodies","<a href='tests/251.html' target='_blank'>Bordetella pertussis antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Pesticide Screen (Organochlorinated pesticid_","<a href='tests/237.html' target='_blank'>Pesticide Screen (Organochlorinated pesticides)</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","p-r"],["Pesticide screen for Pyrethroids","<a href='tests/906.html' target='_blank'>Pyrethroids</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","p-r"],["Pethidine, Qualitative Urine Screen","<a href='tests/203.html' target='_blank'>Pethidine, Qualitative Urine Screen</a>","Urine","Urine/Specimen container 50ml","Yes","No","p-r"],["Pethidine, Quantitative Plasma Assay","<a href='tests/204.html' target='_blank'>Pethidine, Quantitative Plasma Assay</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Pexsig","<a href='tests/717.html' target='_blank'>Perhexiline</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["PFA","<a href='tests/904.html' target='_blank'>PFA</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","p-r"],["PFA100/PFA200","<a href='tests/904.html' target='_blank'>PFA</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","p-r"],["Phenobarbitone","<a href='tests/721.html' target='_blank'>Phenobarbitone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Phenotyping","<a href='tests/567.html' target='_blank'>Alpha-1-Anti-Trypsin Phenotype</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Phenylalanine","<a href='tests/847.html' target='_blank'>Phenylalanine</a>","Blood","Lithium Heparin Tube","Yes","Yes","p-r"],["Phenytoin","<a href='tests/738.html' target='_blank'>Phenytoin</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Phosphate","<a href='tests/736.html' target='_blank'>Phosphate</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Phosphate, Urine","<a href='tests/744.html' target='_blank'>Phosphate, Urine</a>","Urine","Urine container Acid 24 hour","No","No","p-r"],["Phytanate","<a href='tests/848.html' target='_blank'>Phytanic Acid</a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["Phytanic Acid","<a href='tests/848.html' target='_blank'>Phytanic Acid</a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["PICC line","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","p-r"],["Pinworm - Egg Examination","<a href='tests/280.html' target='_blank'>Enterobius vermicularis Examination</a>","See collection_","Slide holder","No","No","p-r"],["Pituitary antibodies TEST NO LONGER AVAILABLE","<a href='tests/478.html' target='_blank'>Anti-Pituitary antibodies</a>","","N/A","No","No","p-r"],["Plasma Amino Acids","<a href='tests/165.html' target='_blank'>Amino Acid Screen, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Plasma Catecholamines","<a href='tests/217.html' target='_blank'>Catecholamines, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Plasma Cobalt","<a href='tests/925.html' target='_blank'>Cobalt, PLASMA</a>","Blood","EDTA Tube 6ml","Yes","No","p-r"],["Plasma Methyl Malonic Acid","<a href='tests/901.html' target='_blank'>Methyl Malonic Acid, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Plasma porphyrins","<a href='tests/742.html' target='_blank'>Porphyrins, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Plasminogen Activator","<a href='tests/635.html' target='_blank'>Plasminogen Activator</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","p-r"],["Plasminogen Activator Inhibitor","<a href='tests/628.html' target='_blank'>Plasminogen Activator Inhibitor</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","p-r"],["Plasminogen Assay","<a href='tests/778.html' target='_blank'>Plasminogen Assay</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","p-r"],["Platelet abs","<a href='tests/638.html' target='_blank'>Platelet antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","p-r"],["Platelet Aggregation","<a href='tests/633.html' target='_blank'>Platelet Aggregation</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["Platelet antibodies","<a href='tests/776.html' target='_blank'>Anti Platelet Antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","p-r"],["Platelet antibodies","<a href='tests/638.html' target='_blank'>Platelet antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","p-r"],["Platelet Function","<a href='tests/904.html' target='_blank'>PFA</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","p-r"],["Platelet Function studies","<a href='tests/633.html' target='_blank'>Platelet Aggregation</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["Pleural Effusion - cytology","<a href='tests/545.html' target='_blank'>Cytology, Pleural Fluid</a>","Pleural Fluid","Urine/Specimen container 50ml","No","No","p-r"],["Pleural Fluid Adenosine Deaminase","<a href='tests/164.html' target='_blank'>Adenosine Deaminase, Pleural Fluid</a>","Pleural Fluid","Sterile container","Yes","No","p-r"],["Pleural Fluid, Microscopy and culture","<a href='tests/354.html' target='_blank'>Pleural Fluid, Microscopy and culture</a>","Aspirate","Sterile container","No","No","p-r"],["PML/RARa (Gene Rearrangement for APML) Bone","<a href='tests/645.html' target='_blank'>PML/RARa (Gene Rearrangement for APML) Bone</a>","Bone Marrow","EDTA Tube 4 ml","Yes","No","p-r"],["PMP22","<a href='tests/233.html' target='_blank'>CMT1A Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["pneumococcal antigen","<a href='tests/882.html' target='_blank'>Streptococcus pneumoniae urinary antigen</a>","Urine","Urine/Specimen container 50ml","Yes","No","p-r"],["Pneumocystis carinii","<a href='tests/355.html' target='_blank'>Pneumocystis carinii</a>","Sputum, Bronch_","Bronchial Suction Trap Container","No","No","p-r"],["PNH screeen","<a href='tests/621.html' target='_blank'>Paroxysmal Nocturnal Haemoglobinuria screen</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["PNP","<a href='tests/853.html' target='_blank'>Purine Nucleoside Phosphorylase</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["PO4","<a href='tests/736.html' target='_blank'>Phosphate</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Polyoma virus DNA (PCR)","<a href='tests/249.html' target='_blank'>BK Virus DNA</a>","","Serum Separator Tube (SST)","Yes","Yes","p-r"],["Pompes Disease","<a href='tests/929.html' target='_blank'>Alpha-Glucosidase</a>","Blood","EDTA Tube 6ml","Yes","Yes","p-r"],["Porphobilinogen","<a href='tests/743.html' target='_blank'>Porphobilinogen</a>","Urine","Urine/Specimen container 50ml","No","No","p-r"],["Porphobilinogen deaminase","<a href='tests/849.html' target='_blank'>PBG Deaminase</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Porphyrins, Blood","<a href='tests/110.html' target='_blank'>Porphyrins, Blood</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Porphyrins, Faeces","<a href='tests/741.html' target='_blank'>Porphyrins, Faeces</a>","Faeces","Faeces container","Yes","No","p-r"],["Porphyrins, Plasma","<a href='tests/742.html' target='_blank'>Porphyrins, Plasma</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Porphyrins, Urine","<a href='tests/740.html' target='_blank'>Porphyrins, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","p-r"],["Portacath","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","p-r"],["Posaconazole","<a href='tests/892.html' target='_blank'>Posaconazole</a>","Blood","EDTA Tube 6ml","Yes","No","p-r"],["Post operative wound - Microscopy and culture","<a href='tests/406.html' target='_blank'>Wound swab, Microscopy and culture</a>","Wound swab","Transswab- swab in transport medium","No","No","p-r"],["Potassium","<a href='tests/734.html' target='_blank'>Potassium</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Potassium Channel Antibodies","<a href='tests/850.html' target='_blank'>Potassium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","p-r"],["Potassium, Faeces","<a href='tests/88.html' target='_blank'>Potassium, Faeces</a>","Random faeces","Faeces container","No","No","p-r"],["Potassium, Urine (Random)","<a href='tests/748.html' target='_blank'>Potassium, Urine (Random)</a>","Urine","Urine/Specimen container 50ml","No","No","p-r"],["Pouch of Douglas Fluid M&C","<a href='tests/287.html' target='_blank'>Fallopian Tube Swab</a>","Fluid/tissue o_","Transswab- swab in transport medium","No","No","p-r"],["pp","<a href='tests/192.html' target='_blank'>Pancreatic Polypeptide</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","p-r"],["PR","<a href='tests/753.html' target='_blank'>Protein, Total Serum protein</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Pre-Albumin","<a href='tests/863.html' target='_blank'>Pre-Albumin</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Pregnancy Screen","<a href='tests/735.html' target='_blank'>Pregnancy Test (Qualitative test for hCG)</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Pregnancy Test (Qualitative test for hCG)","<a href='tests/735.html' target='_blank'>Pregnancy Test (Qualitative test for hCG)</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Pregnenedione","<a href='tests/733.html' target='_blank'>Progesterone</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Pressure sore swab - Microscopy and culture","<a href='tests/393.html' target='_blank'>Ulcer Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","p-r"],["Primidone","<a href='tests/739.html' target='_blank'>Primidone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Prion Protein Gene Mutation","<a href='tests/851.html' target='_blank'>Prion Protein Gene Mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["PRL","<a href='tests/737.html' target='_blank'>Prolactin</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["PRNP","<a href='tests/851.html' target='_blank'>Prion Protein Gene Mutation</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Procalcitonin","<a href='tests/219.html' target='_blank'>Procalcitonin</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Procollagen Type 1 N-propeptide","<a href='tests/895.html' target='_blank'>Procollagen Type 1 N-propeptide</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Prog","<a href='tests/733.html' target='_blank'>Progesterone</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Progesterone","<a href='tests/733.html' target='_blank'>Progesterone</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Pro-insulin","<a href='tests/194.html' target='_blank'>Pro-insulin</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Prolactin","<a href='tests/737.html' target='_blank'>Prolactin</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Prostate Specific Antigen","<a href='tests/750.html' target='_blank'>Prostate Specific Antigen</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Prostatic acid phosphatase","<a href='tests/579.html' target='_blank'>Acid Phosphatase</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Prostatic Secretions","<a href='tests/356.html' target='_blank'>Prostatic Secretions</a>","Urine, urethra_","Urine/Specimen container 50ml","No","No","p-r"],["Prostatic Specific Antigen","<a href='tests/750.html' target='_blank'>Prostate Specific Antigen</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Prosthesis for Microbiological Investigation","<a href='tests/324.html' target='_blank'>Implant, Microscopy and Culture</a>","Implant or pro_","Sterile container","No","No","p-r"],["Protein C","<a href='tests/630.html' target='_blank'>Protein C</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["Protein Electrophoresis, Serum","<a href='tests/754.html' target='_blank'>Protein Electrophoresis, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Protein Electrophoresis, Urine","<a href='tests/415.html' target='_blank'>Protein Electrophoresis, Urine</a>","Early morning _","Urine/Specimen container 50ml","No","No","p-r"],["Protein S","<a href='tests/629.html' target='_blank'>Protein S</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["Protein, Total Serum protein","<a href='tests/753.html' target='_blank'>Protein, Total Serum protein</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Protein, Urine","<a href='tests/752.html' target='_blank'>Protein, Urine</a>","Urine","Urine container Plain 24 hour","No","No","p-r"],["Proteinase 3 antibodies","<a href='tests/18.html' target='_blank'>Anti-Proteinase 3 antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Prothrombin assay","<a href='tests/206.html' target='_blank'>Factor II</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["Prothrombin Fragments 1 and 2","<a href='tests/767.html' target='_blank'>Prothrombin Fragments 1 and 2</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","p-r"],["Prothrombin Gene Analysis, (Gene 20210A)","<a href='tests/643.html' target='_blank'>Prothrombin Gene Analysis, (Gene 20210A)</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["Prothrombin time","<a href='tests/670.html' target='_blank'>INR (International Normalised Ratio)</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["PRP","<a href='tests/682.html' target='_blank'>Parathyroid Hormone Related Peptide, (PTHRP)</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","Yes","p-r"],["PSA","<a href='tests/750.html' target='_blank'>Prostate Specific Antigen</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["PSA, Free","<a href='tests/111.html' target='_blank'>Free PSA</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","p-r"],["Pseudocholinesterase","<a href='tests/420.html' target='_blank'>Cholinesterase, Serum</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Psittacosis (chlamydial) antibodies","<a href='tests/357.html' target='_blank'>Chlamydia antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["PT","<a href='tests/670.html' target='_blank'>INR (International Normalised Ratio)</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["PTH","<a href='tests/690.html' target='_blank'>Parathyroid Hormone (PTH)</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["PTH Related Peptide","<a href='tests/682.html' target='_blank'>Parathyroid Hormone Related Peptide, (PTHRP)</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","Yes","p-r"],["PTHrp","<a href='tests/682.html' target='_blank'>Parathyroid Hormone Related Peptide, (PTHRP)</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","Yes","p-r"],["Purine Nucleoside Phosphorylase","<a href='tests/853.html' target='_blank'>Purine Nucleoside Phosphorylase</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Purkinje Cell antibodies","<a href='tests/477.html' target='_blank'>Anti-Purkinje Cell antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Pus from abscess - Microscopy and culture","<a href='tests/358.html' target='_blank'>Pus, Microscopy and culture</a>","Pus","Sterile container","No","No","p-r"],["Pus swab - Microscopy and culture","<a href='tests/406.html' target='_blank'>Wound swab, Microscopy and culture</a>","Wound swab","Transswab- swab in transport medium","No","No","p-r"],["Pus, Microscopy and culture","<a href='tests/358.html' target='_blank'>Pus, Microscopy and culture</a>","Pus","Sterile container","No","No","p-r"],["Pustule swab - Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","p-r"],["Pyrethroids","<a href='tests/906.html' target='_blank'>Pyrethroids</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","Yes","p-r"],["Pyridinium Cross-links","<a href='tests/171.html' target='_blank'>Pyridinium Cross-links</a>","Urine","Urine/Specimen container 50ml","Yes","No","p-r"],["Pyridoxal-5-phosphate","<a href='tests/66.html' target='_blank'>Vitamin B6</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Pyridoxine","<a href='tests/66.html' target='_blank'>Vitamin B6</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Pyruvate, CSF","<a href='tests/170.html' target='_blank'>Pyruvate, CSF</a>","CSF","CSF tube(s)","Yes","Yes","p-r"],["Pyruvate, Plasma","<a href='tests/193.html' target='_blank'>Pyruvate, Plasma</a>","Blood","Special collection kit; contact laboratory.","Yes","Yes","p-r"],["Q Fever antibodies","<a href='tests/359.html' target='_blank'>Q Fever antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Quadruple test","<a href='tests/106.html' target='_blank'>Maternal Serum Screening</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","p-r"],["Qualitative BHCG","<a href='tests/735.html' target='_blank'>Pregnancy Test (Qualitative test for hCG)</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Qualitative t (8:21) Fusion Gene Analysis","<a href='tests/784.html' target='_blank'>Qualitative t (8:21) Fusion Gene Analysis</a>","Blood and/or B_","EDTA Tube 4 ml","Yes","No","p-r"],["Quantiferon","<a href='tests/360.html' target='_blank'>Quantiferon</a>","Blood","Special collection kit; contact laboratory.","No","Yes","p-r"],["Quantitative Urine Cystine","<a href='tests/91.html' target='_blank'>Cystine, Urine Quantitative</a>","Urine","Urine container Plain 24 hour","Yes","No","p-r"],["Quetiapine","<a href='tests/195.html' target='_blank'>Quetiapine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Quinidine","<a href='tests/745.html' target='_blank'>Quinidine</a>","","N/A","No","No","p-r"],["Quinidine TEST NO LONGER AVAILABLE","<a href='tests/745.html' target='_blank'>Quinidine</a>","","N/A","No","No","p-r"],["Quinsy Drainage Swab or Aspirate for M&C","<a href='tests/389.html' target='_blank'>Throat Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","p-r"],["Rabies Virus antibodies","<a href='tests/361.html' target='_blank'>Rabies Virus antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Radioallergosorbent Testing (RAST)","<a href='tests/751.html' target='_blank'>Specific IgE Testing for Allergens</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Rash swab - Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","p-r"],["RAST testing","<a href='tests/751.html' target='_blank'>Specific IgE Testing for Allergens</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["RBG","<a href='tests/46.html' target='_blank'>Glucose, Random</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","p-r"],["Rectal Swab for Gonococcal Culture","<a href='tests/363.html' target='_blank'>Rectal Swab for Gonococcal Culture</a>","Rectal swab","Transswab- swab in transport medium","No","No","p-r"],["Rectal swab for Group B streptococcus screen","<a href='tests/299.html' target='_blank'>Group B streptococcus screen</a>","Low Vaginal sw_","Transswab- swab in transport medium","No","No","p-r"],["Rectal Swab for Vancomycin Resistant Enteroc_","<a href='tests/362.html' target='_blank'>VRE (Vancomycin resistant Enterococci) screen</a>","Swab","Transswab- swab in transport medium","No","No","p-r"],["Red Cell Cholinesterase","<a href='tests/71.html' target='_blank'>Cholinesterase, Red Cell</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Red Cell Ferritin","<a href='tests/117.html' target='_blank'>Red Cell Ferritin</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Red Cell Folate","<a href='tests/596.html' target='_blank'>Red Cell Folate</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["Red Cell Magnesium","<a href='tests/118.html' target='_blank'>Red Cell Magnesium</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","p-r"],["Red Cell Phenotype","<a href='tests/634.html' target='_blank'>Red Cell Phenotype</a>","Blood","EDTA Tube 6ml","No","No","p-r"],["Red Cell Transketolase","<a href='tests/730.html' target='_blank'>Vitamin B1</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Red Cell Zinc","<a href='tests/854.html' target='_blank'>Red Cell Zinc</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","p-r"],["Reducing substances - faeces","<a href='tests/285.html' target='_blank'>Faeces, Reducing Substances</a>","","N/A","No","No","p-r"],["Refsum disease","<a href='tests/848.html' target='_blank'>Phytanic Acid</a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["Renal Biopsy Histology","<a href='tests/55.html' target='_blank'>Histology, Renal Biopsy</a>","Tissue, renal _","Urine/Specimen container 50ml","No","No","p-r"],["Renal stones","<a href='tests/47.html' target='_blank'>Calculi, Urinary</a>","Calculus","Urine/Specimen container 50ml","No","No","p-r"],["Renin","<a href='tests/746.html' target='_blank'>Renin</a>","Blood","EDTA Tube 6ml","Yes","No","p-r"],["Reptilase Clotting Time","<a href='tests/650.html' target='_blank'>Reptilase Clotting Time</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","p-r"],["Respiratory Investigation for Acid-Fast Baci_","<a href='tests/384.html' target='_blank'>Sputum - Mycobacteria investigation</a>","Sputum","Urine/Specimen container 50ml","No","No","p-r"],["Respiratory Pathogen PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","p-r"],["Respiratory Specimen - Microscopy and Culture","<a href='tests/364.html' target='_blank'>Sputum, Microscopy and Culture</a>","Sputum","Urine/Specimen container 50ml","No","No","p-r"],["Respiratory Specimen PCR for Pneumocystis","<a href='tests/355.html' target='_blank'>Pneumocystis carinii</a>","Sputum, Bronch_","Bronchial Suction Trap Container","No","No","p-r"],["Ret Gene","<a href='tests/833.html' target='_blank'>Men II </a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["retics","<a href='tests/649.html' target='_blank'>Reticulocyte Count</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["Reticulocyte Count","<a href='tests/649.html' target='_blank'>Reticulocyte Count</a>","Blood","EDTA Tube 4 ml","No","No","p-r"],["Retinol","<a href='tests/447.html' target='_blank'>Vitamin A</a>","Blood","Lithium Heparin Tube","Yes","No","p-r"],["Reverse T3","<a href='tests/858.html' target='_blank'>Reverse T3</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","p-r"],["RF","<a href='tests/747.html' target='_blank'>Rheumatoid Factor</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Rheumatoid Factor","<a href='tests/747.html' target='_blank'>Rheumatoid Factor</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Rhinovirus PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","p-r"],["Ri antibodies","<a href='tests/148.html' target='_blank'>Anti-Ri Antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Riboflavin","<a href='tests/866.html' target='_blank'>Vitamin B2</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Rickettsial antibodies","<a href='tests/368.html' target='_blank'>Rickettsial antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Rickettsial Culture","<a href='tests/99.html' target='_blank'>Rickettsial PCR</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["Rickettsial PCR","<a href='tests/99.html' target='_blank'>Rickettsial PCR</a>","Blood","EDTA Tube 4 ml","Yes","No","p-r"],["RICOF","<a href='tests/648.html' target='_blank'>Ristocetin Co-factor</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","p-r"],["Rifadin TEST NO LONGER AVAILABLE","<a href='tests/75.html' target='_blank'>Rifampicin</a>","","N/A","No","No","p-r"],["Rifampicin","<a href='tests/75.html' target='_blank'>Rifampicin</a>","","N/A","No","No","p-r"],["Rimycin TEST NO LONGER AVAILABLE","<a href='tests/75.html' target='_blank'>Rifampicin</a>","","N/A","No","No","p-r"],["Risperdal","<a href='tests/212.html' target='_blank'>Risperidone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Risperidone","<a href='tests/212.html' target='_blank'>Risperidone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Ristocetin Co-factor","<a href='tests/648.html' target='_blank'>Ristocetin Co-factor</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","p-r"],["Rithmic","<a href='tests/590.html' target='_blank'>Amiodarone</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","p-r"],["Rivotril","<a href='tests/123.html' target='_blank'>Clonazepam</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["RNA Polymerase Ab","<a href='tests/769.html' target='_blank'>RNA Polymerase Ab</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["RNAP","<a href='tests/769.html' target='_blank'>RNA Polymerase Ab</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["Ropivacaine","<a href='tests/942.html' target='_blank'>Ropivacaine</a>","Blood","N/A","No","No","p-r"],["Ross River Virus antibodies (RRV antibodies)","<a href='tests/369.html' target='_blank'>Ross River Virus antibodies (RRV antibodies)</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Rotavirus antigen","<a href='tests/282.html' target='_blank'>Faeces, Detection of Viral antigens</a>","Faeces (random_","Faeces container","No","No","p-r"],["Routine Histology","<a href='tests/56.html' target='_blank'>Histology, Routine Tissue</a>","Tissue","Formalin container","No","No","p-r"],["RSV PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","p-r"],["Rubella Virus antibodies","<a href='tests/371.html' target='_blank'>Rubella Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","p-r"],["Rubeola antibodies","<a href='tests/335.html' target='_blank'>Measles Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","p-r"],["RYR1 gene","<a href='tests/924.html' target='_blank'>Central Core Disease Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","p-r"],["Rythmodan TEST NO LONGER AVAILABLE","<a href='tests/2.html' target='_blank'>Disopyramide</a>","Blood","Serum Separator Tube (SST)","Yes","No","p-r"],["Sabril","<a href='tests/865.html' target='_blank'>Vigabatrin</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Salicylate","<a href='tests/749.html' target='_blank'>Salicylate</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Saliva for CMV Investigation","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","s-v"],["Salivary Cortisol","<a href='tests/800.html' target='_blank'>Cortisol (Saliva)</a>","Saliva","Special Container - Contact Laboratory","Yes","No","s-v"],["Salivary Duct antibodies","<a href='tests/476.html' target='_blank'>Anti-Salivary Duct antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Salmonella","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","s-v"],["Salmonella antibodies","<a href='tests/372.html' target='_blank'>Salmonella antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["SARS- Coronavirus Serology","<a href='tests/100.html' target='_blank'>SARS- Coronavirus Serology</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["SBR","<a href='tests/485.html' target='_blank'>Bilirubin, Total</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["SCA 1 / ATXN1 gene","<a href='tests/202.html' target='_blank'>Spinal Cerebellar Ataxia Screening</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["SCA 2 / ATXN2 gene","<a href='tests/202.html' target='_blank'>Spinal Cerebellar Ataxia Screening</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["SCA 3","<a href='tests/202.html' target='_blank'>Spinal Cerebellar Ataxia Screening</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["SCA 6 / CACNA1A gene","<a href='tests/202.html' target='_blank'>Spinal Cerebellar Ataxia Screening</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["SCA 7 / ATXN7 gene","<a href='tests/202.html' target='_blank'>Spinal Cerebellar Ataxia Screening</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Scabies- skin scrapings","<a href='tests/376.html' target='_blank'>Skin Scrapings, for Dermatophyte Investigation</a>","Skin scrapings","Urine/Specimen container 50ml","No","No","s-v"],["Schistosoma antibodies","<a href='tests/373.html' target='_blank'>Schistosoma antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Schistosomes- urine specimen","<a href='tests/73.html' target='_blank'>Urine, Terminal specimen for schistosomes</a>","Terminal speci_","Urine/Specimen container 50ml","No","No","s-v"],["Scleral swab for M&C","<a href='tests/327.html' target='_blank'>Lacrimal swab</a>","Swab OR Pus","Transswab- swab in transport medium","No","No","s-v"],["Scrub typhus - PCR","<a href='tests/99.html' target='_blank'>Rickettsial PCR</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Scrub Typhus antibodies","<a href='tests/368.html' target='_blank'>Rickettsial antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["SDHB","<a href='tests/235.html' target='_blank'>Succinyl Dehydrogenase Deficiency Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["SDHD Gene testing","<a href='tests/235.html' target='_blank'>Succinyl Dehydrogenase Deficiency Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Second trimester screening","<a href='tests/106.html' target='_blank'>Maternal Serum Screening</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","s-v"],["Selenium","<a href='tests/116.html' target='_blank'>Selenium</a>","Blood","Lithium Heparin Tube","Yes","No","s-v"],["Semen Analysis Fertility","<a href='tests/374.html' target='_blank'>Semen Analysis Fertility</a>","Semen","Urine/Specimen container 50ml","Yes","Yes","s-v"],["Semen analysis post vasectomy","<a href='tests/375.html' target='_blank'>Semen analysis post vasectomy</a>","Semen","**Sterile container","Yes","Yes","s-v"],["Sensitive CRP","<a href='tests/77.html' target='_blank'>CRP, High-sensitivity</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Sensitive Testosterone","<a href='tests/855.html' target='_blank'>Testosterone, Sensitive</a>","","N/A","No","No","s-v"],["Sensitive Testosterone","<a href='tests/726.html' target='_blank'>Testosterone</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Seroma fluid - Microscopy and culture","<a href='tests/358.html' target='_blank'>Pus, Microscopy and culture</a>","Pus","Sterile container","No","No","s-v"],["Seroquil","<a href='tests/195.html' target='_blank'>Quetiapine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Serotonin","<a href='tests/201.html' target='_blank'>Serotonin</a>","Blood","Plain Tube 10 ml","Yes","No","s-v"],["Sertraline","<a href='tests/197.html' target='_blank'>Sertraline</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Serum bilirubin","<a href='tests/485.html' target='_blank'>Bilirubin, Total</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Serum Cotinine","<a href='tests/801.html' target='_blank'>Cotinine, Serum</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Serum Lipids","<a href='tests/711.html' target='_blank'>Lipid Profile (Total Cholestesterol & Triglycerid_</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Serum Protein Electrophoresis, SEP","<a href='tests/754.html' target='_blank'>Protein Electrophoresis, Serum</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Serum Viscosity","<a href='tests/647.html' target='_blank'>Serum Viscosity</a>","Blood","Plain Tube 10 ml","No","No","s-v"],["Settle plates","<a href='tests/15.html' target='_blank'>Air samples</a>","Agar plates","Agar plates (settle plates)","No","No","s-v"],["Sex Hormone Binding Globulin","<a href='tests/718.html' target='_blank'>Sex Hormone Binding Globulin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["SGOT","<a href='tests/492.html' target='_blank'>AST (Aspartate Amino Transferase)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["SGPT","<a href='tests/584.html' target='_blank'>Alanine Aminotransferase</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["SHBG","<a href='tests/718.html' target='_blank'>Sex Hormone Binding Globulin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Shigella","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","s-v"],["Short Synacthen Test","<a href='tests/719.html' target='_blank'>Short Synacthen Test</a>","Blood (x3)","Serum Separator Tube (SST)","No","No","s-v"],["sickle cell anemia","<a href='tests/646.html' target='_blank'>Sickle Cell Test</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["Sickle Cell Test","<a href='tests/646.html' target='_blank'>Sickle Cell Test</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["sickling","<a href='tests/646.html' target='_blank'>Sickle Cell Test</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["Sirolimus","<a href='tests/196.html' target='_blank'>Sirolimus</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["Skeletal Muscle antibodies","<a href='tests/467.html' target='_blank'>Anti-Skeletal Muscle antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Skin Bleeding time","<a href='tests/614.html' target='_blank'>Bleeding Time</a>","","N/A","No","No","s-v"],["Skin Scrapings, for Dermatophyte Investigati_","<a href='tests/376.html' target='_blank'>Skin Scrapings, for Dermatophyte Investigation</a>","Skin scrapings","Urine/Specimen container 50ml","No","No","s-v"],["Skin swab, Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","s-v"],["Slapped cheek disease antibodies","<a href='tests/348.html' target='_blank'>Parvovirus B19 antibodies</a>","Blood","Serum Separator Tube (SST)","No","Yes","s-v"],["SLE Screen","<a href='tests/481.html' target='_blank'>Anti-Nuclear antibodies (ANA)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["SMA","<a href='tests/239.html' target='_blank'>Spinal Muscular Atrophy Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["SMN1 gene","<a href='tests/239.html' target='_blank'>Spinal Muscular Atrophy Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["SMN2 gene","<a href='tests/239.html' target='_blank'>Spinal Muscular Atrophy Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Smooth Muscle antibodies","<a href='tests/475.html' target='_blank'>Anti-Smooth Muscle antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Sn","<a href='tests/862.html' target='_blank'>Tin</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["SOD mutation","<a href='tests/200.html' target='_blank'>SOD mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["SOD1","<a href='tests/837.html' target='_blank'>Motor Neurone Disease Screening</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["SOD1 Mutation","<a href='tests/837.html' target='_blank'>Motor Neurone Disease Screening</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Sodium","<a href='tests/723.html' target='_blank'>Sodium</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Sodium, Faeces","<a href='tests/87.html' target='_blank'>Sodium, Faeces</a>","Random faeces","Faeces container","No","No","s-v"],["Sodium, Urine (Random)","<a href='tests/722.html' target='_blank'>Sodium, Urine (Random)</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Soluble Transferrin Receptors","<a href='tests/198.html' target='_blank'>Soluble Transferrin Receptors</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","s-v"],["Somatomedin C (IGF1)","<a href='tests/695.html' target='_blank'>Insulin Like Growth Factor 1 (IGF-1)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Somatostatin","<a href='tests/236.html' target='_blank'>Somatostatin</a>","","N/A","No","No","s-v"],["Somatostatin TEST NO LONGER AVAILABLE","<a href='tests/236.html' target='_blank'>Somatostatin</a>","","N/A","No","No","s-v"],["Somatotrophin (Growth Hormone)","<a href='tests/503.html' target='_blank'>Growth Hormone, (hGH)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Specific IgE Testing for Allergens","<a href='tests/751.html' target='_blank'>Specific IgE Testing for Allergens</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Sperm antibodies","<a href='tests/377.html' target='_blank'>Sperm antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Sphenoid Sinus Swab - Microscopy and culture","<a href='tests/93.html' target='_blank'>Nasal Sinus Swab, Microscopy and culture</a>","Sinus swab","ENT/urethral swab- wire swab in transport medium","No","No","s-v"],["Sphingomyelinase","<a href='tests/857.html' target='_blank'>Sphingomyelinase</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Spinal Cerebellar Ataxia Screening","<a href='tests/202.html' target='_blank'>Spinal Cerebellar Ataxia Screening</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Spinal Muscular Atrophy Genetic Testing","<a href='tests/239.html' target='_blank'>Spinal Muscular Atrophy Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Spirochaetes","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Sporanox","<a href='tests/151.html' target='_blank'>Itraconazole</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Spore strips","<a href='tests/67.html' target='_blank'>Spore strips</a>","Biological ind_","Biological indicators","No","No","s-v"],["Spotted fever - PCR","<a href='tests/99.html' target='_blank'>Rickettsial PCR</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Spotted Fever antibodies","<a href='tests/368.html' target='_blank'>Rickettsial antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Sputum - Mycobacteria investigation","<a href='tests/384.html' target='_blank'>Sputum - Mycobacteria investigation</a>","Sputum","Urine/Specimen container 50ml","No","No","s-v"],["Sputum cytology","<a href='tests/496.html' target='_blank'>Cytology, sputum</a>","Sputum","Urine/Specimen container 50ml","No","No","s-v"],["Sputum, Microscopy and Culture","<a href='tests/364.html' target='_blank'>Sputum, Microscopy and Culture</a>","Sputum","Urine/Specimen container 50ml","No","No","s-v"],["SRP antibodies","<a href='tests/922.html' target='_blank'>Anti-SRP antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["SST","<a href='tests/719.html' target='_blank'>Short Synacthen Test</a>","Blood (x3)","Serum Separator Tube (SST)","No","No","s-v"],["Staphylex","<a href='tests/516.html' target='_blank'>Flucloxacillin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Steriliser testing","<a href='tests/67.html' target='_blank'>Spore strips</a>","Biological ind_","Biological indicators","No","No","s-v"],["Steris testing","<a href='tests/67.html' target='_blank'>Spore strips</a>","Biological ind_","Biological indicators","No","No","s-v"],["Steroid Metabolites","<a href='tests/861.html' target='_blank'>Steroid Profile</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Steroid Profile","<a href='tests/861.html' target='_blank'>Steroid Profile</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Steroid Profile","<a href='tests/583.html' target='_blank'>Androgen Metabolites, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Stitch abscess swab - Microscopy and culture","<a href='tests/406.html' target='_blank'>Wound swab, Microscopy and culture</a>","Wound swab","Transswab- swab in transport medium","No","No","s-v"],["Stool - Microscopy and Culture","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","s-v"],["Streptococcal antibodies","<a href='tests/84.html' target='_blank'>ASOT, (Anti-Streptolysin O Titre)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Streptococcus pneumoniae urinary antigen","<a href='tests/882.html' target='_blank'>Streptococcus pneumoniae urinary antigen</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Streptolysin O Titre","<a href='tests/84.html' target='_blank'>ASOT, (Anti-Streptolysin O Titre)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Striated Muscle antibodies","<a href='tests/467.html' target='_blank'>Anti-Skeletal Muscle antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Strongyloides stercoralis antibodies","<a href='tests/378.html' target='_blank'>Strongyloides stercoralis antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Sub arachnoid haemorrhage CSF","<a href='tests/268.html' target='_blank'>CSF Routine Microscopy and Culture</a>","CSF","CSF tube(s)","No","No","s-v"],["Sub-dural or Sub-galeal Fluid","<a href='tests/379.html' target='_blank'>Sub-dural or Sub-galeal Fluid</a>","Fluid","Sterile container","No","No","s-v"],["Sub-Retinal Fluid - cytology","<a href='tests/543.html' target='_blank'>Cytology, Sub-Retinal Fluid</a>","Sub-Retinal Fl_","Syringe 2ml","No","No","s-v"],["Succinyl Dehydrogenase Deficiency Genetic Te_","<a href='tests/235.html' target='_blank'>Succinyl Dehydrogenase Deficiency Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["sugar","<a href='tests/46.html' target='_blank'>Glucose, Random</a>","Blood","Fluoride oxalate Tube 2 ml","No","No","s-v"],["Sulphamethoxazole TEST NO LONGER AVAILABLE","<a href='tests/462.html' target='_blank'>Bactrim</a>","Blood","N/A","No","No","s-v"],["Sulphonylurea","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Superoxide dismutase mutation","<a href='tests/200.html' target='_blank'>SOD mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Supra-Pubic Aspirate of Urine","<a href='tests/380.html' target='_blank'>Urine, Supra-Pubic Aspirate Specimen for Microsco_</a>","Urine, suprapu_","Urine/Specimen container 50ml","No","No","s-v"],["Surface Marker Studies","<a href='tests/644.html' target='_blank'>Surface Marker Studies</a>","Blood or bone _","EDTA Tube 4 ml","No","No","s-v"],["Swan Ganz Catheter","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","s-v"],["Sweat Test","<a href='tests/720.html' target='_blank'>Sweat Test</a>","","N/A","Yes","No","s-v"],["Synacthen Stimulation Test","<a href='tests/719.html' target='_blank'>Short Synacthen Test</a>","Blood (x3)","Serum Separator Tube (SST)","No","No","s-v"],["Synovial Fluid cytology","<a href='tests/26.html' target='_blank'>Cytology, Synovial Fluid</a>","Synovial Fluid","Urine/Specimen container 50ml","No","No","s-v"],["Synovial Fluid, Microscopy and culture","<a href='tests/381.html' target='_blank'>Synovial Fluid, Microscopy and culture</a>","Synovial Fluid","Sterile container","No","No","s-v"],["Syphilis","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Syphilis Serology","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Systemic Lupus Erythematosus Screen","<a href='tests/481.html' target='_blank'>Anti-Nuclear antibodies (ANA)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["T & B Cells","<a href='tests/665.html' target='_blank'>Lymphocyte Subset Analysis</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["T Cell Gene Rearrangement (Blood)","<a href='tests/652.html' target='_blank'>T Cell Gene Rearrangement (Blood)</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["T Cell Gene Rearrangement (Bone Marrow)","<a href='tests/878.html' target='_blank'>T Cell Gene Rearrangement (Bone Marrow)</a>","Bone Marrow / _","EDTA Tube 4 ml","Yes","No","s-v"],["T CELL RECEPTOR GENE REARRANGEMENT","<a href='tests/652.html' target='_blank'>T Cell Gene Rearrangement (Blood)</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["T Cell Receptor Gene Rearrangement (BM)","<a href='tests/878.html' target='_blank'>T Cell Gene Rearrangement (Bone Marrow)</a>","Bone Marrow / _","EDTA Tube 4 ml","Yes","No","s-v"],["T3 (Free)","<a href='tests/509.html' target='_blank'>Free Tri-Iodothyronine (FT3)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["T4 (Free)","<a href='tests/510.html' target='_blank'>Free Thyroxine (FT4)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Tacrolimus","<a href='tests/29.html' target='_blank'>Tacrolimus</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["Tambocor","<a href='tests/513.html' target='_blank'>Flecainide</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["Targocid","<a href='tests/109.html' target='_blank'>Teicoplanin (Antibiotic)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Tay Sachs Genetic Testing","<a href='tests/214.html' target='_blank'>Tay Sachs Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["TB investigation- blood","<a href='tests/387.html' target='_blank'>Blood Cultures, Mycobacterium</a>","Blood","Blood culture bottles (BACTEC) Mycolytic","No","No","s-v"],["TB investigation- fluid","<a href='tests/383.html' target='_blank'>Aspirated fluid - Mycobacteria investigation</a>","Fluid","Sterile container","No","No","s-v"],["TB investigation- sputum M&C","<a href='tests/384.html' target='_blank'>Sputum - Mycobacteria investigation</a>","Sputum","Urine/Specimen container 50ml","No","No","s-v"],["TB investigation- tissue M&C","<a href='tests/385.html' target='_blank'>Tissue, for AFB Investigation</a>","Tissue","Sterile container","No","No","s-v"],["TB investigation- urine M&C","<a href='tests/386.html' target='_blank'>Urine, Early morning for Mycobacterium</a>","Urine","Urine container 200ml","No","No","s-v"],["TBG","<a href='tests/727.html' target='_blank'>Thyroid Binding Globulin</a>","BLOOD","Serum Separator Tube (SST)","Yes","No","s-v"],["TCA","<a href='tests/484.html' target='_blank'>Tricyclic Antidepressants</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["T-cell subsets","<a href='tests/665.html' target='_blank'>Lymphocyte Subset Analysis</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["T-cell typing","<a href='tests/665.html' target='_blank'>Lymphocyte Subset Analysis</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["TCO2","<a href='tests/494.html' target='_blank'>Bicarbonate</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["TCR GAMMA","<a href='tests/652.html' target='_blank'>T Cell Gene Rearrangement (Blood)</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["TCR Gamma (BM)","<a href='tests/878.html' target='_blank'>T Cell Gene Rearrangement (Bone Marrow)</a>","Bone Marrow / _","EDTA Tube 4 ml","Yes","No","s-v"],["TCT","<a href='tests/641.html' target='_blank'>Thrombin Clotting Time</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","s-v"],["TdT| (Terminal Deoxyribonucleotidyl Transfer_","<a href='tests/642.html' target='_blank'>TdT| (Terminal Deoxyribonucleotidyl Transferase)</a>","Blood or bone _","EDTA Tube 4 ml","No","No","s-v"],["Tegretol","<a href='tests/410.html' target='_blank'>Carbamazepine</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Teicoplanin (Antibiotic)","<a href='tests/109.html' target='_blank'>Teicoplanin (Antibiotic)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Telopeptide (N) urine","<a href='tests/172.html' target='_blank'>N-Telopeptide, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Tenckhoff Catheter for Microbiological Inves_","<a href='tests/388.html' target='_blank'>Drain tip, for Microbiological Investigation</a>","Drain tip or t_","Sterile container","No","No","s-v"],["Tenormin","<a href='tests/218.html' target='_blank'>Atenolol</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Teril","<a href='tests/410.html' target='_blank'>Carbamazepine</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Testosterone","<a href='tests/726.html' target='_blank'>Testosterone</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Testosterone, Free","<a href='tests/112.html' target='_blank'>Testosterone, Free</a>","","N/A","No","No","s-v"],["Testosterone, Sensitive","<a href='tests/855.html' target='_blank'>Testosterone, Sensitive</a>","","N/A","No","No","s-v"],["Testosterone-Oestradiol Binding Globulin (SH_","<a href='tests/718.html' target='_blank'>Sex Hormone Binding Globulin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Tetanus toxoid antibodies","<a href='tests/883.html' target='_blank'>Tetanus toxoid antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Thalassaemia gene analysis","<a href='tests/625.html' target='_blank'>Haemoglobin Gene Analysis</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Thalassaemia screen","<a href='tests/62.html' target='_blank'>Haemoglobin Electrophoresis</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["Thallium, Urine","<a href='tests/180.html' target='_blank'>Thallium, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Thallium, Whole Blood","<a href='tests/179.html' target='_blank'>Thallium, Whole Blood</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","s-v"],["tHcy","<a href='tests/501.html' target='_blank'>Homocysteine</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Theo-Dur","<a href='tests/731.html' target='_blank'>Theophylline</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Theophylline","<a href='tests/731.html' target='_blank'>Theophylline</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Thiamine","<a href='tests/730.html' target='_blank'>Vitamin B1</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Thick and Thin films","<a href='tests/651.html' target='_blank'>Malarial Parasite Investigation</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["ThinPrep with or without Pap Smear collection","<a href='tests/755.html' target='_blank'>Cytology, ThinPrep Collection</a>","ThinPrep, Conv_","Thin prep vials","No","Yes","s-v"],["Thiocyanate","<a href='tests/183.html' target='_blank'>Thiocyanate</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Thiopurine metabolites","<a href='tests/908.html' target='_blank'>Azathioprine metabolites</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Thiopurine Methyl Transferase","<a href='tests/181.html' target='_blank'>Thiopurine Methyl Transferase</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Throat Swab, Microscopy and culture","<a href='tests/389.html' target='_blank'>Throat Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","s-v"],["Thrombin Clotting Time","<a href='tests/641.html' target='_blank'>Thrombin Clotting Time</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","s-v"],["Thrombin time","<a href='tests/641.html' target='_blank'>Thrombin Clotting Time</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","s-v"],["Thrombophilia Screen","<a href='tests/885.html' target='_blank'>Thrombophilia Screen</a>","Blood","EDTA Tube 4 ml","No","No","s-v"],["Thyroglobulin","<a href='tests/729.html' target='_blank'>Thyroglobulin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyroglobulin antibodies","<a href='tests/473.html' target='_blank'>Anti-Thyroglobulin antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyroid antibodies (ATA)","<a href='tests/728.html' target='_blank'>Anti-Thyroid antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyroid Binding Globulin","<a href='tests/727.html' target='_blank'>Thyroid Binding Globulin</a>","BLOOD","Serum Separator Tube (SST)","Yes","No","s-v"],["Thyroid funcion test see also TSH","<a href='tests/724.html' target='_blank'>Thyroid Function Tests</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyroid Function Tests","<a href='tests/724.html' target='_blank'>Thyroid Function Tests</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyroid Microsomal antibodies","<a href='tests/472.html' target='_blank'>Anti-Thyroid Peroxidase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyroid Peroxidase antibodies","<a href='tests/472.html' target='_blank'>Anti-Thyroid Peroxidase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyroid Stimulating immunoglobulin (TSI)","<a href='tests/474.html' target='_blank'>TSH Receptor antibodies (TSI)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Thyrotrophin Receptor antibodies (TRAB)","<a href='tests/474.html' target='_blank'>TSH Receptor antibodies (TSI)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Thyrotropin","<a href='tests/493.html' target='_blank'>TSH (Thyroid Stimulating Hormone)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Thyrotropin Releasing Hormone","<a href='tests/732.html' target='_blank'>Thyrotropin Releasing Hormone</a>","","N/A","No","No","s-v"],["TIBC","<a href='tests/594.html' target='_blank'>Transferrin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["tIgE","<a href='tests/699.html' target='_blank'>Immunoglobulin E</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Tin","<a href='tests/862.html' target='_blank'>Tin</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Tinea","<a href='tests/376.html' target='_blank'>Skin Scrapings, for Dermatophyte Investigation</a>","Skin scrapings","Urine/Specimen container 50ml","No","No","s-v"],["Tissue","<a href='tests/56.html' target='_blank'>Histology, Routine Tissue</a>","Tissue","Formalin container","No","No","s-v"],["Tissue for Fungal Investigation","<a href='tests/295.html' target='_blank'>Fungal Sample, Microscopy and culture- tissue</a>","Tissue","Sterile container","No","No","s-v"],["Tissue Glycogen","<a href='tests/827.html' target='_blank'>Glycogen Tissue</a>","Tissue","Special Container - Contact Laboratory","Yes","No","s-v"],["Tissue Necrosis Factor (TNF)","<a href='tests/114.html' target='_blank'>Tissue Necrosis Factor (TNF)</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Tissue plasminogen activator","<a href='tests/635.html' target='_blank'>Plasminogen Activator</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","s-v"],["Tissue Thromboplastin Inhibition Test","<a href='tests/640.html' target='_blank'>Tissue Thromboplastin Inhibition Test</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","s-v"],["Tissue type","<a href='tests/603.html' target='_blank'>HLA antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","s-v"],["Tissue typing","<a href='tests/601.html' target='_blank'>HLA Phenotype (Haematology)</a>","Blood","ACD tube","Yes","No","s-v"],["Tissue, for AFB Investigation","<a href='tests/385.html' target='_blank'>Tissue, for AFB Investigation</a>","Tissue","Sterile container","No","No","s-v"],["Tissue, for Microscopy and culture","<a href='tests/390.html' target='_blank'>Tissue, for Microscopy and culture</a>","Tissue","Sterile container","No","No","s-v"],["TNF","<a href='tests/114.html' target='_blank'>Tissue Necrosis Factor (TNF)</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["TnI","<a href='tests/39.html' target='_blank'>Troponin I</a>","Blood","Lithium Heparin Tube","No","No","s-v"],["Tobramycin","<a href='tests/725.html' target='_blank'>Tobramycin</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Tocopherol","<a href='tests/65.html' target='_blank'>Vitamin E</a>","Blood","Lithium Heparin Tube","Yes","No","s-v"],["tolazamide","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["tolbutamide","<a href='tests/859.html' target='_blank'>Sulphonylurea</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Tongue swab microbiology","<a href='tests/336.html' target='_blank'>Oral Swab, Hard Palate or Soft Palate</a>","Swab of mouth","Transswab- swab in transport medium","No","No","s-v"],["Tonsillar Swab - Microscopy and culture","<a href='tests/389.html' target='_blank'>Throat Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","s-v"],["Topamax","<a href='tests/115.html' target='_blank'>Topiramate</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Topiramate","<a href='tests/115.html' target='_blank'>Topiramate</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["TOR1A","<a href='tests/917.html' target='_blank'>DYT1 Mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Torsin A","<a href='tests/917.html' target='_blank'>DYT1 Mutation</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Torula - CSF","<a href='tests/265.html' target='_blank'>Cryptococcal Antigen - CSF</a>","CSF","CSF tube(s)","No","No","s-v"],["Total Complement Activity","<a href='tests/444.html' target='_blank'>Complement Activity, (CH100)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Total Haemolytic Complement, THC (CH100)","<a href='tests/444.html' target='_blank'>Complement Activity, (CH100)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Total Protein","<a href='tests/753.html' target='_blank'>Protein, Total Serum protein</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Toxocara canis antibodies","<a href='tests/391.html' target='_blank'>Toxocara canis antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Toxoplasma antibodies","<a href='tests/392.html' target='_blank'>Toxoplasma antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["tPA","<a href='tests/635.html' target='_blank'>Plasminogen Activator</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","Yes","s-v"],["TPHA","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["TPMT Activity","<a href='tests/181.html' target='_blank'>Thiopurine Methyl Transferase</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["TPMT Genotype","<a href='tests/916.html' target='_blank'>TPMT Genotype</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["TPMT PHenotyping","<a href='tests/181.html' target='_blank'>Thiopurine Methyl Transferase</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["TRAB","<a href='tests/474.html' target='_blank'>TSH Receptor antibodies (TSI)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Transferrin","<a href='tests/594.html' target='_blank'>Transferrin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Transferrin saturation","<a href='tests/709.html' target='_blank'>Iron Studies (Includes Iron, Transferrin and Ferr_</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["transferrin, CSF","<a href='tests/40.html' target='_blank'>Asialo-Transferrin</a>","Body Fluid","Sterile container","No","Yes","s-v"],["Transglutaminase antibodies","<a href='tests/471.html' target='_blank'>Anti-Transglutaminase antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Transthyretin","<a href='tests/863.html' target='_blank'>Pre-Albumin</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Treponema pallidum antibodies","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["TRH","<a href='tests/732.html' target='_blank'>Thyrotropin Releasing Hormone</a>","","N/A","No","No","s-v"],["Tricyclic Antidepressants","<a href='tests/484.html' target='_blank'>Tricyclic Antidepressants</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Triglycerides","<a href='tests/483.html' target='_blank'>Triglycerides</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Trigs","<a href='tests/483.html' target='_blank'>Triglycerides</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Triiodothyronine","<a href='tests/509.html' target='_blank'>Free Tri-Iodothyronine (FT3)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Trimethoprim TEST NO LONGER AVAILABLE","<a href='tests/462.html' target='_blank'>Bactrim</a>","Blood","N/A","No","No","s-v"],["Triple test","<a href='tests/106.html' target='_blank'>Maternal Serum Screening</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","s-v"],["Troponin I","<a href='tests/39.html' target='_blank'>Troponin I</a>","Blood","Lithium Heparin Tube","No","No","s-v"],["Tryptase","<a href='tests/113.html' target='_blank'>Tryptase</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","s-v"],["Tryptic Activity - Faecal","<a href='tests/864.html' target='_blank'>Tryptic Activity - Faecal</a>","","N/A","No","No","s-v"],["Tryptic activity, faecal TEST NO LONGER AVAI_","<a href='tests/864.html' target='_blank'>Tryptic Activity - Faecal</a>","","N/A","No","No","s-v"],["TSH (Thyroid Stimulating Hormone)","<a href='tests/493.html' target='_blank'>TSH (Thyroid Stimulating Hormone)</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["TSH Receptor antibodies (TSI)","<a href='tests/474.html' target='_blank'>TSH Receptor antibodies (TSI)</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Typhoid Fever antibodies","<a href='tests/372.html' target='_blank'>Salmonella antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Typhus fever - PCR","<a href='tests/99.html' target='_blank'>Rickettsial PCR</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Typhus Fever antibodies","<a href='tests/368.html' target='_blank'>Rickettsial antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Tyrosine Phosphatase","<a href='tests/768.html' target='_blank'>Anti-IA-2 Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Tzank Smear","<a href='tests/518.html' target='_blank'>Cytology, Tzank Smear</a>","Tzank Smear","Glass Slide","No","No","s-v"],["U","<a href='tests/453.html' target='_blank'>Urea</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["UA","<a href='tests/454.html' target='_blank'>Urate</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["UDS","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["UEP","<a href='tests/415.html' target='_blank'>Protein Electrophoresis, Urine</a>","Early morning _","Urine/Specimen container 50ml","No","No","s-v"],["Ulcer Swab, Microscopy and culture","<a href='tests/393.html' target='_blank'>Ulcer Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","s-v"],["Ultracentrifugation","<a href='tests/455.html' target='_blank'>Ultracentrifugation, Cholesterol Characterisation</a>","","N/A","No","No","s-v"],["Ultracentrifugation, Cholesterol Characteris_","<a href='tests/455.html' target='_blank'>Ultracentrifugation, Cholesterol Characterisation</a>","","N/A","No","No","s-v"],["Ultra-sensitive CRP","<a href='tests/77.html' target='_blank'>CRP, High-sensitivity</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Umbilical catheter","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","s-v"],["Umbilical Swab, Neonatal Sepsis","<a href='tests/394.html' target='_blank'>Umbilical Swab, Neonatal Sepsis</a>","Umbilical swab","Transswab- swab in transport medium","No","No","s-v"],["UMET","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","s-v"],["UPR","<a href='tests/752.html' target='_blank'>Protein, Urine</a>","Urine","Urine container Plain 24 hour","No","No","s-v"],["Urate","<a href='tests/454.html' target='_blank'>Urate</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Urate, Urine","<a href='tests/452.html' target='_blank'>Uric Acid, Urine</a>","Urine","Urine container Alkaline 24 hour","No","No","s-v"],["Urea","<a href='tests/453.html' target='_blank'>Urea</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Urease test- Helicobacter pylori","<a href='tests/70.html' target='_blank'>Gastric biopsy for Helicobacter pylori</a>","Gastric biopsy_","Sterile container","No","No","s-v"],["Ureteric Washings -cytology","<a href='tests/27.html' target='_blank'>Cytology, Ureteric Washings</a>","Ureteric Washi_","Urine/Specimen container 50ml","No","No","s-v"],["Urethral or Urethral Meatus Swabs","<a href='tests/395.html' target='_blank'>Urethral or Urethral Meatus Swabs</a>","Urethral Swab","ENT/urethral swab- wire swab in transport medium","No","No","s-v"],["Urethral swab - Chlamydia trachomatis PCR","<a href='tests/398.html' target='_blank'>Chlamydia trachomatis DNA (PCR) in swabs</a>","Genital or eye_","Dry Swab","No","No","s-v"],["Uric Acid","<a href='tests/454.html' target='_blank'>Urate</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Uric Acid, Urine","<a href='tests/452.html' target='_blank'>Uric Acid, Urine</a>","Urine","Urine container Alkaline 24 hour","No","No","s-v"],["Urinary Calculi","<a href='tests/47.html' target='_blank'>Calculi, Urinary</a>","Calculus","Urine/Specimen container 50ml","No","No","s-v"],["Urinary HCG","<a href='tests/819.html' target='_blank'>HCG Urine, Quantitative</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Urine 5 Hydroxy Indole Acetic Acid","<a href='tests/31.html' target='_blank'>5 Hydroxy Indole Acetic Acid, Urine</a>","24 hour urine","Urine container Acid 24 hour","No","No","s-v"],["Urine Albumin","<a href='tests/573.html' target='_blank'>Microalbumin, Random</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Aldosterone","<a href='tests/577.html' target='_blank'>Aldosterone, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Urine Amino Acid screen","<a href='tests/591.html' target='_blank'>Amino Acids, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Amylase","<a href='tests/585.html' target='_blank'>Amylase, Urine</a>","Urine","Urine container Plain 24 hour","No","No","s-v"],["Urine Androgens","<a href='tests/583.html' target='_blank'>Androgen Metabolites, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Urine Arsenic","<a href='tests/134.html' target='_blank'>Arsenic, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Cadmium","<a href='tests/137.html' target='_blank'>Cadmium, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","s-v"],["Urine Calcium","<a href='tests/558.html' target='_blank'>Calcium, Urine</a>","Urine","Urine container Acid 24 hour","No","No","s-v"],["Urine Catecholamines","<a href='tests/425.html' target='_blank'>Catecholamines, Urine</a>","Timed Urine","Urine container Acid 24 hour","No","No","s-v"],["Urine Chloride","<a href='tests/132.html' target='_blank'>Chloride, Urine</a>","Urine","Urine container Plain 24 hour","No","No","s-v"],["Urine Citrate","<a href='tests/160.html' target='_blank'>Citrate, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Urine Copper","<a href='tests/141.html' target='_blank'>Copper, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","s-v"],["Urine Cortisol","<a href='tests/431.html' target='_blank'>Cortisol, Urine Free</a>","Timed Urine","Urine container Plain 24 hour","No","No","s-v"],["Urine Cotinine","<a href='tests/76.html' target='_blank'>Cotinine, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Creatinine","<a href='tests/930.html' target='_blank'>Creatinine, Urine</a>","Urine","Urine container Plain 24 hour","No","No","s-v"],["Urine cytology","<a href='tests/542.html' target='_blank'>Cytology, Urine</a>","Urine (X 3)","Urine/Specimen container 50ml","No","No","s-v"],["Urine Deoxypyridinoline","<a href='tests/171.html' target='_blank'>Pyridinium Cross-links</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Drug Screen","<a href='tests/9.html' target='_blank'>Drug Screen, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Electrophoresis","<a href='tests/415.html' target='_blank'>Protein Electrophoresis, Urine</a>","Early morning _","Urine/Specimen container 50ml","No","No","s-v"],["Urine Glucose","<a href='tests/931.html' target='_blank'>Glucose, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Haemoglobin","<a href='tests/500.html' target='_blank'>Haemoglobin, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Hemoglobin","<a href='tests/500.html' target='_blank'>Haemoglobin, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Histamine","<a href='tests/822.html' target='_blank'>Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","s-v"],["Urine Iodine","<a href='tests/227.html' target='_blank'>Iodine, Urine</a>","Urine","Urine/Specimen container 50ml","No","Yes","s-v"],["Urine Iron","<a href='tests/229.html' target='_blank'>Iron, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Ketones","<a href='tests/941.html' target='_blank'>Ketones, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Lead","<a href='tests/144.html' target='_blank'>Lead, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","s-v"],["Urine Legionella Antigen","<a href='tests/330.html' target='_blank'>Legionella Pneumophila Type 1 Antigen</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Magnesium","<a href='tests/897.html' target='_blank'>Magnesium, Urine</a>","Urine","Urine container Acid 24 hour","No","No","s-v"],["Urine Mercury","<a href='tests/692.html' target='_blank'>Mercury, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","s-v"],["Urine Metabolic Screen","<a href='tests/104.html' target='_blank'>Metabolic Screen, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","s-v"],["Urine Metanephrines","<a href='tests/216.html' target='_blank'>Metanephrines, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","s-v"],["Urine Methadone","<a href='tests/42.html' target='_blank'>Methadone Metabolite, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Methadone Metabolite","<a href='tests/42.html' target='_blank'>Methadone Metabolite, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Methyl Histamine-1","<a href='tests/187.html' target='_blank'>Methyl Histamine, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","s-v"],["Urine Methyl Malonic Acid","<a href='tests/873.html' target='_blank'>Methyl Malonic Acid, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","s-v"],["Urine Myoglobin","<a href='tests/74.html' target='_blank'>Myoglobin, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Niacin","<a href='tests/839.html' target='_blank'>Niacin, Urine</a>","Timed Urine","Special Container - Contact Laboratory","Yes","No","s-v"],["Urine Nickel","<a href='tests/215.html' target='_blank'>Nickel, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","s-v"],["Urine Organic Acid Screen","<a href='tests/189.html' target='_blank'>Organic Acid Screen, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","Yes","s-v"],["Urine Oxalate","<a href='tests/685.html' target='_blank'>Oxalate, Urine</a>","Urine","Urine container Acid 24 hour","Yes","No","s-v"],["Urine Phosphate","<a href='tests/744.html' target='_blank'>Phosphate, Urine</a>","Urine","Urine container Acid 24 hour","No","No","s-v"],["Urine Porphobilinogen","<a href='tests/743.html' target='_blank'>Porphobilinogen</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Porphyrins","<a href='tests/740.html' target='_blank'>Porphyrins, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Potassium","<a href='tests/748.html' target='_blank'>Potassium, Urine (Random)</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Protein","<a href='tests/752.html' target='_blank'>Protein, Urine</a>","Urine","Urine container Plain 24 hour","No","No","s-v"],["Urine Red Cell Morphology, MSU","<a href='tests/338.html' target='_blank'>Urine, Mid-stream for Microscopy and culture</a>","Urine, midstre_","Urine/Specimen container 50ml","No","No","s-v"],["Urine Sodium","<a href='tests/722.html' target='_blank'>Sodium, Urine (Random)</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine Steroid Profile","<a href='tests/583.html' target='_blank'>Androgen Metabolites, Urine</a>","Urine","Urine container Plain 24 hour","Yes","No","s-v"],["Urine Thallium","<a href='tests/180.html' target='_blank'>Thallium, Urine</a>","Urine","Urine/Specimen container 50ml","Yes","No","s-v"],["Urine Urate","<a href='tests/452.html' target='_blank'>Uric Acid, Urine</a>","Urine","Urine container Alkaline 24 hour","No","No","s-v"],["Urine Uric Acid","<a href='tests/452.html' target='_blank'>Uric Acid, Urine</a>","Urine","Urine container Alkaline 24 hour","No","No","s-v"],["Urine Zinc","<a href='tests/44.html' target='_blank'>Zinc, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","s-v"],["Urine, Bag specimen for Microscopy and Cultu_","<a href='tests/298.html' target='_blank'>Urine, Bag specimen for Microscopy and Culture</a>","Urine","N/A","No","No","s-v"],["Urine, Barbiturates","<a href='tests/45.html' target='_blank'>Barbiturates, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine, benzodiaepines","<a href='tests/490.html' target='_blank'>Benzodiazepines, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Catheter Specimen for Microscopy and _","<a href='tests/270.html' target='_blank'>Urine, Catheter Specimen for Microscopy and Cultu_</a>","Urine, cathete_","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Early morning for Mycobacterium","<a href='tests/386.html' target='_blank'>Urine, Early morning for Mycobacterium</a>","Urine","Urine container 200ml","No","No","s-v"],["Urine, First Catch, Detection of Chlamydia t_","<a href='tests/396.html' target='_blank'>Urine, First Catch, Detection of Chlamydia tracho_</a>","Urine, first c_","Urine/Specimen container 50ml","No","No","s-v"],["Urine, haemosiderin","<a href='tests/622.html' target='_blank'>Haemosiderin, Urine</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Ileal Conduit - Microscopy and Cultu_","<a href='tests/323.html' target='_blank'>Urine, Ileal Conduit - Microscopy and Culture</a>","Urine, ileal c_","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Mid-stream for Microscopy and culture","<a href='tests/338.html' target='_blank'>Urine, Mid-stream for Microscopy and culture</a>","Urine, midstre_","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Neisseria gonorrheae PCR","<a href='tests/145.html' target='_blank'>Urine, Neisseria gonorrheae PCR</a>","First catch ur_","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Nephrostomy Specimen for Microscopy a_","<a href='tests/346.html' target='_blank'>Urine, Nephrostomy Specimen for Microscopy and Cu_</a>","Urine, nephros_","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Reducing substances","<a href='tests/397.html' target='_blank'>Urine, Reducing substances</a>","Urine","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Supra-Pubic Aspirate Specimen for Mic_","<a href='tests/380.html' target='_blank'>Urine, Supra-Pubic Aspirate Specimen for Microsco_</a>","Urine, suprapu_","Urine/Specimen container 50ml","No","No","s-v"],["Urine, Terminal specimen for schistosomes","<a href='tests/73.html' target='_blank'>Urine, Terminal specimen for schistosomes</a>","Terminal speci_","Urine/Specimen container 50ml","No","No","s-v"],["Urogenital Specimen - Chlamydia trachomatis _","<a href='tests/398.html' target='_blank'>Chlamydia trachomatis DNA (PCR) in swabs</a>","Genital or eye_","Dry Swab","No","No","s-v"],["uUA","<a href='tests/452.html' target='_blank'>Uric Acid, Urine</a>","Urine","Urine container Alkaline 24 hour","No","No","s-v"],["Vaginal swab for Group B streptococcus scre_","<a href='tests/299.html' target='_blank'>Group B streptococcus screen</a>","Low Vaginal sw_","Transswab- swab in transport medium","No","No","s-v"],["Vaginal Swabs, Microscopy and culture","<a href='tests/399.html' target='_blank'>Vaginal Swabs, Microscopy and culture</a>","Vaginal Swabs","Transswab- swab in transport medium","No","No","s-v"],["Vaginal Vault Smear - cytology","<a href='tests/524.html' target='_blank'>Cytology, Pap Smear</a>","PAP Smear","Pap Smear collection Kit","No","No","s-v"],["Valium","<a href='tests/805.html' target='_blank'>Diazepam</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Valproate","<a href='tests/456.html' target='_blank'>Valproate</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Vancomycin","<a href='tests/449.html' target='_blank'>Vancomycin</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Vanillyl Mandelic Acid (VMA)","<a href='tests/213.html' target='_blank'>Vanillyl Mandelic Acid (VMA)</a>","Urine","Urine container Acid 24 hour","Yes","No","s-v"],["Varicella zoster DNA","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","s-v"],["Varicella zoster DNA (PCR) CSF","<a href='tests/269.html' target='_blank'>CSF Viral examination</a>","CSF","CSF tube(s)","Yes","No","s-v"],["Varicella-zoster Virus antibodies","<a href='tests/401.html' target='_blank'>Varicella-zoster Virus antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Varicella-zoster Virus DNA (PCR)","<a href='tests/400.html' target='_blank'>Varicella-zoster Virus DNA (PCR)</a>","","Virocult- swab in viral transport medium","No","No","s-v"],["Varicose ulcer swab - Microscopy and culture","<a href='tests/393.html' target='_blank'>Ulcer Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","s-v"],["Vascath","<a href='tests/257.html' target='_blank'>Catheter, Intravenous Catheter Tip, for Microbiol_</a>","Catheter tip","Sterile container","No","No","s-v"],["Vasoactive Intestinal Peptide, VIP","<a href='tests/448.html' target='_blank'>Vasoactive Intestinal Peptide, VIP</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","s-v"],["Vasopressin","<a href='tests/576.html' target='_blank'>Antidiuretic Hormone (ADH)</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Vault Smear - cytology","<a href='tests/524.html' target='_blank'>Cytology, Pap Smear</a>","PAP Smear","Pap Smear collection Kit","No","No","s-v"],["VDRL","<a href='tests/382.html' target='_blank'>Syphilis Serology</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Venous Blood Gases","<a href='tests/559.html' target='_blank'>Blood Gases (Includes Glucose & Electrolytes)</a>","Blood","Syringe * Blood Gas","No","No","s-v"],["Venous ulcer swab - Microscopy and culture","<a href='tests/393.html' target='_blank'>Ulcer Swab, Microscopy and culture</a>","Swab","Transswab- swab in transport medium","No","No","s-v"],["Ventricular aspirate, Microscopy and culture","<a href='tests/402.html' target='_blank'>Ventricular aspirate, Microscopy and culture</a>","Fluid","CSF tube(s)","No","No","s-v"],["Very Long Chain Fatty Acids","<a href='tests/127.html' target='_blank'>Fatty Acid Ratio</a>","Blood","EDTA Tube 4 ml","Yes","Yes","s-v"],["Vesicle swab - Microscopy and culture","<a href='tests/760.html' target='_blank'>Skin swab, Microscopy and culture</a>","Skin swab","Transswab- swab in transport medium","No","No","s-v"],["VGCC Ab","<a href='tests/793.html' target='_blank'>Calcium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["VGKC","<a href='tests/914.html' target='_blank'>Anti-Voltage-Gated Potassium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","s-v"],["VGKC Ab","<a href='tests/850.html' target='_blank'>Potassium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","s-v"],["Vigabatrin","<a href='tests/865.html' target='_blank'>Vigabatrin</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Vincents organisms","<a href='tests/336.html' target='_blank'>Oral Swab, Hard Palate or Soft Palate</a>","Swab of mouth","Transswab- swab in transport medium","No","No","s-v"],["VIP (Vasoactive Intestinal Peptide)","<a href='tests/448.html' target='_blank'>Vasoactive Intestinal Peptide, VIP</a>","Blood","Tube containing Trasylol, available from laboratory","Yes","No","s-v"],["Viral PCR (CSF)","<a href='tests/269.html' target='_blank'>CSF Viral examination</a>","CSF","CSF tube(s)","Yes","No","s-v"],["Viral PCR CSF","<a href='tests/272.html' target='_blank'>Herpes virus PCR-multiplex</a>","Swab, Urine, T_","Dry Swab","No","No","s-v"],["Visceral larvamigrans serology","<a href='tests/391.html' target='_blank'>Toxocara canis antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Vitamin A","<a href='tests/447.html' target='_blank'>Vitamin A</a>","Blood","Lithium Heparin Tube","Yes","No","s-v"],["Vitamin B1","<a href='tests/730.html' target='_blank'>Vitamin B1</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Vitamin B12","<a href='tests/655.html' target='_blank'>Vitamin B12</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Vitamin B2","<a href='tests/866.html' target='_blank'>Vitamin B2</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["Vitamin B3 urine","<a href='tests/839.html' target='_blank'>Niacin, Urine</a>","Timed Urine","Special Container - Contact Laboratory","Yes","No","s-v"],["Vitamin B6","<a href='tests/66.html' target='_blank'>Vitamin B6</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","s-v"],["Vitamin C","<a href='tests/461.html' target='_blank'>Vitamin C</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Vitamin D","<a href='tests/451.html' target='_blank'>25-Hydroxy Vitamin D</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Vitamin D3","<a href='tests/451.html' target='_blank'>25-Hydroxy Vitamin D</a>","Blood","Serum Separator Tube (SST)","No","No","s-v"],["Vitamin E","<a href='tests/65.html' target='_blank'>Vitamin E</a>","Blood","Lithium Heparin Tube","Yes","No","s-v"],["Vitreous Biopsy - cytology","<a href='tests/541.html' target='_blank'>Cytology, Vitreous Fluid</a>","Vitreous Fluid","Syringe 2ml","No","No","s-v"],["Vitreous Humour, Microscopy and culture","<a href='tests/403.html' target='_blank'>Vitreous Humour, Microscopy and culture</a>","Aspirate, vitr_","Sterile container","No","No","s-v"],["Vitreous washings cytology","<a href='tests/532.html' target='_blank'>Cytology, Vitreous Washings</a>","Vitreous Washi_","Urine/Specimen container 50ml","No","No","s-v"],["VMA","<a href='tests/213.html' target='_blank'>Vanillyl Mandelic Acid (VMA)</a>","Urine","Urine container Acid 24 hour","Yes","No","s-v"],["Voltage Gated Calcium Channel antibodies","<a href='tests/793.html' target='_blank'>Calcium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","s-v"],["Voltage Gated Potassium Channel antibodies","<a href='tests/850.html' target='_blank'>Potassium Channel Antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","s-v"],["von Willebrand Multimer Analysis","<a href='tests/780.html' target='_blank'>von Willebrand Multimer Analysis</a>","Blood","Sodium citrate Tube 2.7 ml","Yes","No","s-v"],["von Willebrands antigen","<a href='tests/654.html' target='_blank'>von Willebrands factor</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","s-v"],["von Willebrands factor","<a href='tests/654.html' target='_blank'>von Willebrands factor</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","s-v"],["Voriconazole","<a href='tests/182.html' target='_blank'>Voriconazole</a>","Blood","EDTA Tube 4 ml","Yes","No","s-v"],["VRE (Vancomycin resistant Enterococci) screen","<a href='tests/362.html' target='_blank'>VRE (Vancomycin resistant Enterococci) screen</a>","Swab","Transswab- swab in transport medium","No","No","s-v"],["Vulval Swab, Microscopy and culture","<a href='tests/404.html' target='_blank'>Vulval Swab, Microscopy and culture</a>","Vulval swab","Transswab- swab in transport medium","No","No","s-v"],["VWF","<a href='tests/654.html' target='_blank'>von Willebrands factor</a>","Blood","Sodium citrate Tube 2.7 ml","No","No","s-v"],["Warfarin levels","<a href='tests/30.html' target='_blank'>Warfarin levels</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","w-z"],["Washings - cytology","<a href='tests/526.html' target='_blank'>Cytology, Bronchial Wash</a>","Bronchial Wash_","Bronchial Suction Trap Container","No","No","w-z"],["WCC","<a href='tests/661.html' target='_blank'>Differential White Cell Count</a>","Blood","EDTA Tube 4 ml","No","No","w-z"],["Werdnig-Hoffman","<a href='tests/239.html' target='_blank'>Spinal Muscular Atrophy Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","No","w-z"],["West Nile Virus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","w-z"],["Whipples Disease, Investigation of CSF or Ti_","<a href='tests/405.html' target='_blank'>Whipples Disease, Investigation of CSF or Tissue _</a>","CSF or tissue","Sterile container","Yes","No","w-z"],["White cell antibodies","<a href='tests/603.html' target='_blank'>HLA antibodies</a>","Blood","Plain Tube 10 ml","Yes","No","w-z"],["White cell differential (manual)","<a href='tests/613.html' target='_blank'>Blood Film Examination</a>","Blood","EDTA Tube 4 ml","No","No","w-z"],["White cell enzymes","<a href='tests/107.html' target='_blank'>Lysosomal Enzyme Screen</a>","Blood","EDTA Tube 4 ml","Yes","Yes","w-z"],["Whole Blood Cholinesterase","<a href='tests/71.html' target='_blank'>Cholinesterase, Red Cell</a>","Blood","EDTA Tube 4 ml","Yes","No","w-z"],["Whooping Cough","<a href='tests/343.html' target='_blank'>Nasopharyngeal Swab, microscopy and culture</a>","Nasopharyngeal_","Urine/Specimen container 50ml","No","No","w-z"],["Whooping Cough antibodies","<a href='tests/251.html' target='_blank'>Bordetella pertussis antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","w-z"],["Whooping Cough PCR","<a href='tests/101.html' target='_blank'>Bordetella pertussis PCR</a>","","Sterile container","No","Yes","w-z"],["Whooping Cough PCR","<a href='tests/367.html' target='_blank'>Respiratory Pathogen PCR</a>","","Sterile container","No","Yes","w-z"],["Widal test","<a href='tests/372.html' target='_blank'>Salmonella antibodies</a>","Blood","Serum Separator Tube (SST)","Yes","No","w-z"],["Williams Gene Syndrome","<a href='tests/867.html' target='_blank'>Williams Gene Syndrome</a>","Blood","EDTA Tube 4 ml","Yes","No","w-z"],["Worm for examination","<a href='tests/72.html' target='_blank'>Worm for examination</a>","Worm for ident_","Urine/Specimen container 50ml","No","No","w-z"],["Wound swab, Microscopy and culture","<a href='tests/406.html' target='_blank'>Wound swab, Microscopy and culture</a>","Wound swab","Transswab- swab in transport medium","No","No","w-z"],["X-linked Hydrocephalus Genetic Testing","<a href='tests/231.html' target='_blank'>L1 CAM Gene</a>","Blood","EDTA Tube 4 ml","Yes","Yes","w-z"],["Xylose","<a href='tests/868.html' target='_blank'>Xylose</a>","Blood","Serum Separator Tube (SST)","Yes","No","w-z"],["Xylose Urine","<a href='tests/869.html' target='_blank'>Xylose Urine</a>","","N/A","Yes","No","w-z"],["Y Chromosome deletion","<a href='tests/870.html' target='_blank'>Yq Microdeletion Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","w-z"],["Y Deletion","<a href='tests/870.html' target='_blank'>Yq Microdeletion Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","w-z"],["Y Microdeletion studies","<a href='tests/870.html' target='_blank'>Yq Microdeletion Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","w-z"],["Yellow Fever Virus PCR","<a href='tests/97.html' target='_blank'>Flavivirus PCR</a>","Blood","Serum Separator Tube (SST)","Yes","Yes","w-z"],["Yersinia Antibodes (IgG)","<a href='tests/407.html' target='_blank'>Yersinia Antibodes (IgG)</a>","Blood","Serum Separator Tube (SST)","Yes","No","w-z"],["Yersinia enterocolitica","<a href='tests/283.html' target='_blank'>Faeces, Microscopy and culture</a>","Faeces","Faeces container","No","No","w-z"],["Yo antibodies","<a href='tests/147.html' target='_blank'>Anti-Yo antibodies</a>","Blood","Serum Separator Tube (SST)","No","No","w-z"],["Yq Microdeletion Genetic Testing","<a href='tests/870.html' target='_blank'>Yq Microdeletion Genetic Testing</a>","Blood","EDTA Tube 4 ml","Yes","Yes","w-z"],["Zarontin","<a href='tests/465.html' target='_blank'>Ethosuximide</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","w-z"],["Zinc","<a href='tests/43.html' target='_blank'>Zinc</a>","Blood","Serum Separator Tube (SST)","No","No","w-z"],["Zinc, Red Cell","<a href='tests/854.html' target='_blank'>Red Cell Zinc</a>","Blood","Sodium Heparin Tube 7 mL","Yes","No","w-z"],["Zinc, Urine","<a href='tests/44.html' target='_blank'>Zinc, Urine</a>","Urine","Urine container Acid-Washed 24 hour","Yes","No","w-z"],["Zivirax","<a href='tests/540.html' target='_blank'>Acyclovir</a>","Blood","Serum Separator Tube (SST)","Yes","No","w-z"],["Zn","<a href='tests/43.html' target='_blank'>Zinc</a>","Blood","Serum Separator Tube (SST)","No","No","w-z"],["Zyprexa","<a href='tests/162.html' target='_blank'>Olanzapine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","w-z"],["Zyprezia","<a href='tests/162.html' target='_blank'>Olanzapine</a>","Blood","Lithium Heparin Tube WITHOUT GEL","Yes","No","w-z"],["a-1,4-glucosidase","<a href='tests/771.html' target='_blank'>Acid Maltase</a>","Blood & Urine","EDTA Tube 4 ml","Yes","Yes","a-c"]]}
@@ -0,0 +1,8 @@
1
+ class User::ParameterSanitizer < Devise::ParameterSanitizer
2
+ def initialize(resource_class, resource_name, params)
3
+ super(resource_class, resource_name, params)
4
+ permit(:sign_up, keys: Auth.configuration.auth_resources[resource_class.to_s][:login_params] + [:name])
5
+ permit(:account_update, keys: Auth.configuration.auth_resources[resource_class.to_s][:login_params] + [:name])
6
+ end
7
+ end
8
+
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ logfile: ./log/shoryuken.log
2
+ pidfile: ./tmp/pids/shoryuken.pid
3
+ concurrency: 10
4
+ queues:
5
+ - shoryuken
@@ -0,0 +1,9 @@
1
+ ---
2
+ :concurrency: 25
3
+ :pidfile: ./tmp/pids/sidekiq.pid
4
+ :logfile: ./log/sidekiq.log
5
+ :queues:
6
+ - default
7
+ - mailers
8
+ - [high_priority, 2]
9
+ :daemon: true
@@ -0,0 +1,6 @@
1
+ #!/bin/bash
2
+ rm -r /home/bhargav/Github/auth/spec/dummy/log/sidekiq.log
3
+ rm -r /home/bhargav/Github/auth/spec/dummy/log/development.log
4
+ while IFS='' read -r line || [[ -n "$line" ]]; do
5
+ kill -9 $line
6
+ done < "/home/bhargav/Github/auth/spec/dummy/tmp/pids/sidekiq.pid"
@@ -0,0 +1,5 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe ActivityController, type: :controller do
4
+
5
+ end
@@ -0,0 +1,141 @@
1
+ require 'rails_helper'
2
+
3
+ # This spec was generated by rspec-rails when you ran the scaffold generator.
4
+ # It demonstrates how one might use RSpec to specify the controller code that
5
+ # was generated by Rails when you ran the scaffold generator.
6
+ #
7
+ # It assumes that the implementation code is generated by the rails scaffold
8
+ # generator. If you are using any extension libraries to generate different
9
+ # controller code, this generated spec may or may not pass.
10
+ #
11
+ # It only uses APIs available in rails and/or rspec-rails. There are a number
12
+ # of tools you can use to make these specs even more expressive, but we're
13
+ # sticking to rails and rspec-rails APIs to keep things simple and stable.
14
+ #
15
+ # Compared to earlier versions of this generator, there is very limited use of
16
+ # stubs and message expectations in this spec. Stubs are only used when there
17
+ # is no simpler way to get a handle on the object needed for the example.
18
+ # Message expectations are only used when there is no simpler way to specify
19
+ # that an instance is receiving a specific message.
20
+ #
21
+ # Also compared to earlier versions of this generator, there are no longer any
22
+ # expectations of assigns and templates rendered. These features have been
23
+ # removed from Rails core in Rails 5, but can be added back in via the
24
+ # `rails-controller-testing` gem.
25
+
26
+ RSpec.describe TestsController, type: :controller do
27
+
28
+ # This should return the minimal set of attributes required to create a valid
29
+ # Test. As you add validations to Test, be sure to
30
+ # adjust the attributes here as well.
31
+ let(:valid_attributes) {
32
+ skip("Add a hash of attributes valid for your model")
33
+ }
34
+
35
+ let(:invalid_attributes) {
36
+ skip("Add a hash of attributes invalid for your model")
37
+ }
38
+
39
+ # This should return the minimal set of values that should be in the session
40
+ # in order to pass any filters (e.g. authentication) defined in
41
+ # TestsController. Be sure to keep this updated too.
42
+ let(:valid_session) { {} }
43
+
44
+ describe "GET #index" do
45
+ it "returns a success response" do
46
+ test = Test.create! valid_attributes
47
+ get :index, {}, valid_session
48
+ expect(response).to be_success
49
+ end
50
+ end
51
+
52
+ describe "GET #show" do
53
+ it "returns a success response" do
54
+ test = Test.create! valid_attributes
55
+ get :show, {:id => test.to_param}, valid_session
56
+ expect(response).to be_success
57
+ end
58
+ end
59
+
60
+ describe "GET #new" do
61
+ it "returns a success response" do
62
+ get :new, {}, valid_session
63
+ expect(response).to be_success
64
+ end
65
+ end
66
+
67
+ describe "GET #edit" do
68
+ it "returns a success response" do
69
+ test = Test.create! valid_attributes
70
+ get :edit, {:id => test.to_param}, valid_session
71
+ expect(response).to be_success
72
+ end
73
+ end
74
+
75
+ describe "POST #create" do
76
+ context "with valid params" do
77
+ it "creates a new Test" do
78
+ expect {
79
+ post :create, {:test => valid_attributes}, valid_session
80
+ }.to change(Test, :count).by(1)
81
+ end
82
+
83
+ it "redirects to the created test" do
84
+ post :create, {:test => valid_attributes}, valid_session
85
+ expect(response).to redirect_to(Test.last)
86
+ end
87
+ end
88
+
89
+ context "with invalid params" do
90
+ it "returns a success response (i.e. to display the 'new' template)" do
91
+ post :create, {:test => invalid_attributes}, valid_session
92
+ expect(response).to be_success
93
+ end
94
+ end
95
+ end
96
+
97
+ describe "PUT #update" do
98
+ context "with valid params" do
99
+ let(:new_attributes) {
100
+ skip("Add a hash of attributes valid for your model")
101
+ }
102
+
103
+ it "updates the requested test" do
104
+ test = Test.create! valid_attributes
105
+ put :update, {:id => test.to_param, :test => new_attributes}, valid_session
106
+ test.reload
107
+ skip("Add assertions for updated state")
108
+ end
109
+
110
+ it "redirects to the test" do
111
+ test = Test.create! valid_attributes
112
+ put :update, {:id => test.to_param, :test => valid_attributes}, valid_session
113
+ expect(response).to redirect_to(test)
114
+ end
115
+ end
116
+
117
+ context "with invalid params" do
118
+ it "returns a success response (i.e. to display the 'edit' template)" do
119
+ test = Test.create! valid_attributes
120
+ put :update, {:id => test.to_param, :test => invalid_attributes}, valid_session
121
+ expect(response).to be_success
122
+ end
123
+ end
124
+ end
125
+
126
+ describe "DELETE #destroy" do
127
+ it "destroys the requested test" do
128
+ test = Test.create! valid_attributes
129
+ expect {
130
+ delete :destroy, {:id => test.to_param}, valid_session
131
+ }.to change(Test, :count).by(-1)
132
+ end
133
+
134
+ it "redirects to the tests list" do
135
+ test = Test.create! valid_attributes
136
+ delete :destroy, {:id => test.to_param}, valid_session
137
+ expect(response).to redirect_to(tests_url)
138
+ end
139
+ end
140
+
141
+ end