ccls-ccls_engine 3.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (269) hide show
  1. data/README.rdoc +182 -0
  2. data/app/models/abstract.rb +181 -0
  3. data/app/models/abstract_search.rb +50 -0
  4. data/app/models/abstract_validations.rb +324 -0
  5. data/app/models/address.rb +70 -0
  6. data/app/models/address_type.rb +15 -0
  7. data/app/models/addressing.rb +147 -0
  8. data/app/models/aliquot.rb +44 -0
  9. data/app/models/aliquot_sample_format.rb +13 -0
  10. data/app/models/analysis.rb +14 -0
  11. data/app/models/bc_request.rb +20 -0
  12. data/app/models/candidate_control.rb +101 -0
  13. data/app/models/context.rb +23 -0
  14. data/app/models/context_data_source.rb +4 -0
  15. data/app/models/county.rb +16 -0
  16. data/app/models/data_source.rb +24 -0
  17. data/app/models/diagnosis.rb +23 -0
  18. data/app/models/document_type.rb +16 -0
  19. data/app/models/document_version.rb +27 -0
  20. data/app/models/enrollment.rb +78 -0
  21. data/app/models/enrollment_validations.rb +167 -0
  22. data/app/models/follow_up.rb +16 -0
  23. data/app/models/follow_up_type.rb +18 -0
  24. data/app/models/gift_card.rb +22 -0
  25. data/app/models/gift_card_search.rb +137 -0
  26. data/app/models/home_exposure_response.rb +24 -0
  27. data/app/models/homex_outcome.rb +75 -0
  28. data/app/models/hospital.rb +22 -0
  29. data/app/models/icf_master_id.rb +30 -0
  30. data/app/models/icf_master_tracker.rb +217 -0
  31. data/app/models/icf_master_tracker_change.rb +9 -0
  32. data/app/models/icf_master_tracker_update.rb +50 -0
  33. data/app/models/ineligible_reason.rb +26 -0
  34. data/app/models/instrument.rb +26 -0
  35. data/app/models/instrument_type.rb +17 -0
  36. data/app/models/instrument_version.rb +28 -0
  37. data/app/models/interview.rb +122 -0
  38. data/app/models/interview_method.rb +17 -0
  39. data/app/models/interview_outcome.rb +16 -0
  40. data/app/models/language.rb +28 -0
  41. data/app/models/live_birth_data_update.rb +142 -0
  42. data/app/models/operational_event.rb +99 -0
  43. data/app/models/operational_event_type.rb +31 -0
  44. data/app/models/organization.rb +28 -0
  45. data/app/models/patient.rb +63 -0
  46. data/app/models/patient_validations.rb +118 -0
  47. data/app/models/person.rb +28 -0
  48. data/app/models/phone_number.rb +105 -0
  49. data/app/models/phone_type.rb +15 -0
  50. data/app/models/project.rb +39 -0
  51. data/app/models/project_outcome.rb +19 -0
  52. data/app/models/race.rb +31 -0
  53. data/app/models/refusal_reason.rb +23 -0
  54. data/app/models/sample.rb +168 -0
  55. data/app/models/sample_kit.rb +14 -0
  56. data/app/models/sample_outcome.rb +16 -0
  57. data/app/models/sample_temperature.rb +14 -0
  58. data/app/models/sample_type.rb +37 -0
  59. data/app/models/search.rb +195 -0
  60. data/app/models/section.rb +18 -0
  61. data/app/models/state.rb +25 -0
  62. data/app/models/study_subject.rb +237 -0
  63. data/app/models/study_subject_abstracts.rb +47 -0
  64. data/app/models/study_subject_addresses.rb +34 -0
  65. data/app/models/study_subject_associations.rb +38 -0
  66. data/app/models/study_subject_duplicates.rb +111 -0
  67. data/app/models/study_subject_enrollments.rb +17 -0
  68. data/app/models/study_subject_homex_outcome.rb +22 -0
  69. data/app/models/study_subject_identifier.rb +153 -0
  70. data/app/models/study_subject_interviews.rb +25 -0
  71. data/app/models/study_subject_languages.rb +21 -0
  72. data/app/models/study_subject_operational_events.rb +66 -0
  73. data/app/models/study_subject_patient.rb +177 -0
  74. data/app/models/study_subject_pii.rb +74 -0
  75. data/app/models/study_subject_races.rb +25 -0
  76. data/app/models/study_subject_search.rb +260 -0
  77. data/app/models/study_subject_validations.rb +116 -0
  78. data/app/models/subject_language.rb +11 -0
  79. data/app/models/subject_race.rb +11 -0
  80. data/app/models/subject_relationship.rb +21 -0
  81. data/app/models/subject_type.rb +22 -0
  82. data/app/models/tracing_status.rb +20 -0
  83. data/app/models/transfer.rb +40 -0
  84. data/app/models/unit.rb +14 -0
  85. data/app/models/vital_status.rb +19 -0
  86. data/app/models/zip_code.rb +36 -0
  87. data/config/abstract_fields.yml +1038 -0
  88. data/config/abstract_sections.yml +77 -0
  89. data/config/home_exposure_response_fields.yml +583 -0
  90. data/config/icf_master_tracker_update.yml +56 -0
  91. data/config/live_birth_data_update.yml +56 -0
  92. data/config/shared_use_db.yml +4 -0
  93. data/generators/ccls_engine/USAGE +2 -0
  94. data/generators/ccls_engine/ccls_engine_generator.rb +123 -0
  95. data/generators/ccls_engine/templates/autotest_ccls_engine.rb +3 -0
  96. data/generators/ccls_engine/templates/ccls_engine.rake +12 -0
  97. data/generators/ccls_engine/templates/fixtures/address_types.yml +30 -0
  98. data/generators/ccls_engine/templates/fixtures/context_data_sources.yml +54 -0
  99. data/generators/ccls_engine/templates/fixtures/contexts.yml +19 -0
  100. data/generators/ccls_engine/templates/fixtures/data_sources.yml +40 -0
  101. data/generators/ccls_engine/templates/fixtures/diagnoses.yml +40 -0
  102. data/generators/ccls_engine/templates/fixtures/document_types.yml +65 -0
  103. data/generators/ccls_engine/templates/fixtures/document_versions.csv +155 -0
  104. data/generators/ccls_engine/templates/fixtures/follow_up_types.yml +16 -0
  105. data/generators/ccls_engine/templates/fixtures/hospitals.yml +114 -0
  106. data/generators/ccls_engine/templates/fixtures/ineligible_reasons.yml +35 -0
  107. data/generators/ccls_engine/templates/fixtures/instrument_types.yml +26 -0
  108. data/generators/ccls_engine/templates/fixtures/instrument_versions.yml +22 -0
  109. data/generators/ccls_engine/templates/fixtures/instruments.yml +22 -0
  110. data/generators/ccls_engine/templates/fixtures/interview_methods.yml +30 -0
  111. data/generators/ccls_engine/templates/fixtures/interview_outcomes.yml +31 -0
  112. data/generators/ccls_engine/templates/fixtures/languages.yml +34 -0
  113. data/generators/ccls_engine/templates/fixtures/operational_event_types.yml +141 -0
  114. data/generators/ccls_engine/templates/fixtures/organizations.yml +198 -0
  115. data/generators/ccls_engine/templates/fixtures/people.yml +130 -0
  116. data/generators/ccls_engine/templates/fixtures/phone_types.yml +30 -0
  117. data/generators/ccls_engine/templates/fixtures/project_outcomes.yml +25 -0
  118. data/generators/ccls_engine/templates/fixtures/projects.yml +59 -0
  119. data/generators/ccls_engine/templates/fixtures/races.yml +52 -0
  120. data/generators/ccls_engine/templates/fixtures/refusal_reasons.yml +55 -0
  121. data/generators/ccls_engine/templates/fixtures/sample_outcomes.yml +36 -0
  122. data/generators/ccls_engine/templates/fixtures/sample_temperatures.yml +16 -0
  123. data/generators/ccls_engine/templates/fixtures/sample_types.yml +147 -0
  124. data/generators/ccls_engine/templates/fixtures/sections.yml +31 -0
  125. data/generators/ccls_engine/templates/fixtures/states.yml +363 -0
  126. data/generators/ccls_engine/templates/fixtures/subject_relationships.yml +46 -0
  127. data/generators/ccls_engine/templates/fixtures/subject_types.yml +30 -0
  128. data/generators/ccls_engine/templates/fixtures/tracing_statuses.yml +30 -0
  129. data/generators/ccls_engine/templates/fixtures/units.yml +13 -0
  130. data/generators/ccls_engine/templates/fixtures/vital_statuses.yml +28 -0
  131. data/generators/ccls_engine/templates/functional/roles_controller_test.rb +142 -0
  132. data/generators/ccls_engine/templates/functional/sessions_controller_test.rb +19 -0
  133. data/generators/ccls_engine/templates/functional/users_controller_test.rb +94 -0
  134. data/generators/ccls_engine/templates/images/sort_down.png +0 -0
  135. data/generators/ccls_engine/templates/images/sort_up.png +0 -0
  136. data/generators/ccls_engine/templates/initializer.rb +28 -0
  137. data/generators/ccls_engine/templates/javascripts/ccls_engine.js +24 -0
  138. data/generators/ccls_engine/templates/javascripts/jquery-ui.js +763 -0
  139. data/generators/ccls_engine/templates/javascripts/jquery.js +154 -0
  140. data/generators/ccls_engine/templates/javascripts/jrails.js +1 -0
  141. data/generators/ccls_engine/templates/migrations/create_user_invitations.rb +18 -0
  142. data/generators/ccls_engine/templates/migrations/create_users.rb +33 -0
  143. data/generators/ccls_engine/templates/migrations/drop_user_invitations.rb +18 -0
  144. data/generators/ccls_engine/templates/stylesheets/ccls_engine.css +180 -0
  145. data/generators/ccls_engine/templates/stylesheets/user.css +35 -0
  146. data/generators/ccls_engine/templates/stylesheets/users.css +23 -0
  147. data/generators/ccls_engine/templates/unit/core_extension_test.rb +18 -0
  148. data/generators/ccls_engine/templates/unit/role_test.rb +30 -0
  149. data/generators/ccls_engine/templates/unit/user_test.rb +321 -0
  150. data/lib/ccls-ccls_engine.rb +1 -0
  151. data/lib/ccls_engine.rb +135 -0
  152. data/lib/ccls_engine/action_view_extension.rb +3 -0
  153. data/lib/ccls_engine/action_view_extension/base.rb +53 -0
  154. data/lib/ccls_engine/action_view_extension/form_builder.rb +39 -0
  155. data/lib/ccls_engine/active_record_extension.rb +2 -0
  156. data/lib/ccls_engine/active_record_extension/base.rb +70 -0
  157. data/lib/ccls_engine/active_record_shared.rb +8 -0
  158. data/lib/ccls_engine/assertions.rb +69 -0
  159. data/lib/ccls_engine/autotest.rb +54 -0
  160. data/lib/ccls_engine/ccls_user.rb +117 -0
  161. data/lib/ccls_engine/core_extension.rb +14 -0
  162. data/lib/ccls_engine/date_and_time_formats.rb +30 -0
  163. data/lib/ccls_engine/factories.rb +880 -0
  164. data/lib/ccls_engine/factory_test_helper.rb +276 -0
  165. data/lib/ccls_engine/helper.rb +112 -0
  166. data/lib/ccls_engine/icf_master_tracker_update_test_helper.rb +121 -0
  167. data/lib/ccls_engine/live_birth_data_update_test_helper.rb +110 -0
  168. data/lib/ccls_engine/package_test_helper.rb +49 -0
  169. data/lib/ccls_engine/shared_database.rb +20 -0
  170. data/lib/ccls_engine/tasks.rb +1 -0
  171. data/lib/ccls_engine/test_tasks.rb +52 -0
  172. data/lib/ccls_engine/translation_table.rb +86 -0
  173. data/lib/shared_migration.rb +5 -0
  174. data/lib/surveyor/survey_extensions.rb +125 -0
  175. data/lib/tasks/application.rake +286 -0
  176. data/lib/tasks/calnet_authenticated.rake +6 -0
  177. data/lib/tasks/common_lib.rake +7 -0
  178. data/lib/tasks/database.rake +288 -0
  179. data/lib/tasks/documentation.rake +71 -0
  180. data/lib/tasks/homex_import.rake +723 -0
  181. data/lib/tasks/odms_import.rake +1116 -0
  182. data/lib/tasks/simply_authorized.rake +6 -0
  183. data/lib/tasks/ucb_ccls_engine_tasks.rake +4 -0
  184. data/lib/tasks/use_db.rake +4 -0
  185. data/rails/init.rb +4 -0
  186. data/test/unit/ccls/abstract_search_test.rb +150 -0
  187. data/test/unit/ccls/abstract_test.rb +674 -0
  188. data/test/unit/ccls/address_test.rb +155 -0
  189. data/test/unit/ccls/address_type_test.rb +25 -0
  190. data/test/unit/ccls/addressing_test.rb +466 -0
  191. data/test/unit/ccls/aliquot_sample_format_test.rb +20 -0
  192. data/test/unit/ccls/aliquot_test.rb +156 -0
  193. data/test/unit/ccls/analysis_test.rb +31 -0
  194. data/test/unit/ccls/bc_request_test.rb +43 -0
  195. data/test/unit/ccls/candidate_control_test.rb +712 -0
  196. data/test/unit/ccls/context_data_source_test.rb +26 -0
  197. data/test/unit/ccls/context_test.rb +40 -0
  198. data/test/unit/ccls/core_extension_test.rb +17 -0
  199. data/test/unit/ccls/county_test.rb +34 -0
  200. data/test/unit/ccls/data_source_test.rb +41 -0
  201. data/test/unit/ccls/diagnosis_test.rb +51 -0
  202. data/test/unit/ccls/document_type_test.rb +35 -0
  203. data/test/unit/ccls/document_version_test.rb +68 -0
  204. data/test/unit/ccls/enrollment_test.rb +575 -0
  205. data/test/unit/ccls/follow_up_test.rb +23 -0
  206. data/test/unit/ccls/follow_up_type_test.rb +34 -0
  207. data/test/unit/ccls/gift_card_search_test.rb +153 -0
  208. data/test/unit/ccls/gift_card_test.rb +40 -0
  209. data/test/unit/ccls/home_exposure_response_test.rb +83 -0
  210. data/test/unit/ccls/homex_outcome_test.rb +199 -0
  211. data/test/unit/ccls/hospital_test.rb +102 -0
  212. data/test/unit/ccls/icf_master_id_test.rb +30 -0
  213. data/test/unit/ccls/icf_master_tracker_change_test.rb +14 -0
  214. data/test/unit/ccls/icf_master_tracker_test.rb +132 -0
  215. data/test/unit/ccls/icf_master_tracker_update_test.rb +176 -0
  216. data/test/unit/ccls/ineligible_reason_test.rb +48 -0
  217. data/test/unit/ccls/instrument_test.rb +62 -0
  218. data/test/unit/ccls/instrument_type_test.rb +39 -0
  219. data/test/unit/ccls/instrument_version_test.rb +71 -0
  220. data/test/unit/ccls/interview_method_test.rb +44 -0
  221. data/test/unit/ccls/interview_outcome_test.rb +34 -0
  222. data/test/unit/ccls/interview_test.rb +298 -0
  223. data/test/unit/ccls/language_test.rb +47 -0
  224. data/test/unit/ccls/live_birth_data_update_test.rb +358 -0
  225. data/test/unit/ccls/operational_event_test.rb +187 -0
  226. data/test/unit/ccls/operational_event_type_test.rb +51 -0
  227. data/test/unit/ccls/organization_test.rb +64 -0
  228. data/test/unit/ccls/patient_test.rb +538 -0
  229. data/test/unit/ccls/person_test.rb +55 -0
  230. data/test/unit/ccls/phone_number_test.rb +244 -0
  231. data/test/unit/ccls/phone_type_test.rb +32 -0
  232. data/test/unit/ccls/project_outcome_test.rb +34 -0
  233. data/test/unit/ccls/project_test.rb +60 -0
  234. data/test/unit/ccls/race_test.rb +37 -0
  235. data/test/unit/ccls/refusal_reason_test.rb +52 -0
  236. data/test/unit/ccls/role_test.rb +26 -0
  237. data/test/unit/ccls/sample_kit_test.rb +35 -0
  238. data/test/unit/ccls/sample_outcome_test.rb +34 -0
  239. data/test/unit/ccls/sample_temperature_test.rb +25 -0
  240. data/test/unit/ccls/sample_test.rb +363 -0
  241. data/test/unit/ccls/sample_type_test.rb +58 -0
  242. data/test/unit/ccls/section_test.rb +34 -0
  243. data/test/unit/ccls/state_test.rb +31 -0
  244. data/test/unit/ccls/study_subject_abstracts_test.rb +115 -0
  245. data/test/unit/ccls/study_subject_addresses_test.rb +93 -0
  246. data/test/unit/ccls/study_subject_duplicates_test.rb +407 -0
  247. data/test/unit/ccls/study_subject_enrollments_test.rb +65 -0
  248. data/test/unit/ccls/study_subject_homex_outcome_test.rb +64 -0
  249. data/test/unit/ccls/study_subject_identifier_test.rb +439 -0
  250. data/test/unit/ccls/study_subject_interviews_test.rb +26 -0
  251. data/test/unit/ccls/study_subject_languages_test.rb +142 -0
  252. data/test/unit/ccls/study_subject_operational_events_test.rb +53 -0
  253. data/test/unit/ccls/study_subject_patient_test.rb +249 -0
  254. data/test/unit/ccls/study_subject_pii_test.rb +278 -0
  255. data/test/unit/ccls/study_subject_races_test.rb +203 -0
  256. data/test/unit/ccls/study_subject_search_test.rb +704 -0
  257. data/test/unit/ccls/study_subject_test.rb +770 -0
  258. data/test/unit/ccls/subject_language_test.rb +43 -0
  259. data/test/unit/ccls/subject_race_test.rb +35 -0
  260. data/test/unit/ccls/subject_relationship_test.rb +43 -0
  261. data/test/unit/ccls/subject_type_test.rb +40 -0
  262. data/test/unit/ccls/tracing_status_test.rb +32 -0
  263. data/test/unit/ccls/transfer_test.rb +81 -0
  264. data/test/unit/ccls/translation_table_test.rb +40 -0
  265. data/test/unit/ccls/unit_test.rb +21 -0
  266. data/test/unit/ccls/user_test.rb +156 -0
  267. data/test/unit/ccls/vital_status_test.rb +36 -0
  268. data/test/unit/ccls/zip_code_test.rb +55 -0
  269. metadata +633 -0
@@ -0,0 +1,11 @@
1
+ class SubjectLanguage < ActiveRecordShared
2
+
3
+ belongs_to :study_subject
4
+ attr_protected :study_subject_id, :study_subject
5
+ belongs_to :language
6
+
7
+ delegate :is_other?, :to => :language, :allow_nil => true, :prefix => true
8
+
9
+ validates_presence_of :other, :if => :language_is_other?
10
+
11
+ end
@@ -0,0 +1,11 @@
1
+ class SubjectRace < ActiveRecordShared
2
+
3
+ belongs_to :study_subject
4
+ attr_protected :study_subject_id, :study_subject
5
+ belongs_to :race
6
+
7
+ delegate :is_other?, :to => :race, :allow_nil => true, :prefix => true
8
+
9
+ validates_presence_of :other, :if => :race_is_other?
10
+
11
+ end
@@ -0,0 +1,21 @@
1
+ class SubjectRelationship < ActiveRecordShared
2
+
3
+ acts_as_list
4
+ default_scope :order => :position
5
+
6
+ acts_like_a_hash
7
+
8
+ # has_many :study_subjects
9
+
10
+ # Returns description
11
+ def to_s
12
+ description
13
+ end
14
+
15
+ # Returns boolean of comparison
16
+ # true only if key == 'other'
17
+ def is_other?
18
+ key == 'other'
19
+ end
20
+
21
+ end
@@ -0,0 +1,22 @@
1
+ # == requires
2
+ # * description ( unique and > 3 chars )
3
+ class SubjectType < ActiveRecordShared
4
+
5
+ acts_as_list
6
+ default_scope :order => :position
7
+
8
+ acts_like_a_hash
9
+
10
+ has_many :study_subjects
11
+
12
+ # Returns description
13
+ def to_s
14
+ description
15
+ end
16
+
17
+ # Returns description
18
+ def name
19
+ description
20
+ end
21
+
22
+ end
@@ -0,0 +1,20 @@
1
+ class TracingStatus < ActiveRecordShared
2
+
3
+ acts_as_list
4
+ default_scope :order => :position
5
+
6
+ acts_like_a_hash
7
+
8
+ has_many :enrollments
9
+
10
+ # Returns description
11
+ def to_s
12
+ description
13
+ end
14
+
15
+ # # Returns description
16
+ # def name
17
+ # description
18
+ # end
19
+
20
+ end
@@ -0,0 +1,40 @@
1
+ # == requires
2
+ # * aliquot_id
3
+ # * from_organization_id
4
+ # * to_organization_id
5
+ class Transfer < ActiveRecordShared
6
+
7
+ belongs_to :aliquot
8
+ belongs_to :from_organization, :class_name => "Organization"
9
+ belongs_to :to_organization, :class_name => "Organization"
10
+
11
+ validates_presence_of :aliquot_id
12
+ validates_presence_of :aliquot, :if => :aliquot_id
13
+ validates_presence_of :to_organization_id
14
+ validates_presence_of :to_organization, :if => :to_organization_id
15
+ validates_presence_of :from_organization_id
16
+ validates_presence_of :from_organization, :if => :from_organization_id
17
+
18
+ validates_length_of :reason, :maximum => 250, :allow_blank => true
19
+
20
+ before_save :update_aliquot_owner
21
+
22
+ # Associate the given transfer "to" an #Organization
23
+ def to(organization)
24
+ self.to_organization = organization
25
+ self
26
+ end
27
+
28
+ protected
29
+
30
+ # Set associated aliquot's owner to the receiving #Organization.
31
+ def update_aliquot_owner
32
+ self.aliquot.update_attribute(:owner, self.to_organization)
33
+ end
34
+
35
+ end
36
+
37
+
38
+ # It would not surprise me if sent_on and received_on are added
39
+
40
+ # This could also have a tracking_number and be tracked via active_shipping
@@ -0,0 +1,14 @@
1
+ # == requires
2
+ # * description ( unique and > 3 chars )
3
+ class Unit < ActiveRecordShared
4
+
5
+ acts_as_list
6
+ default_scope :order => :position
7
+
8
+ acts_like_a_hash
9
+
10
+ belongs_to :context
11
+ has_many :aliquots
12
+ has_many :samples
13
+
14
+ end
@@ -0,0 +1,19 @@
1
+ # don't know exactly
2
+ class VitalStatus < ActiveRecordShared
3
+
4
+ acts_as_list
5
+ default_scope :order => :position
6
+
7
+ acts_like_a_hash
8
+
9
+ has_many :study_subjects
10
+
11
+ # validates_presence_of :code
12
+ # validates_uniqueness_of :code
13
+
14
+ # Returns description
15
+ def to_s
16
+ description
17
+ end
18
+
19
+ end
@@ -0,0 +1,36 @@
1
+ class ZipCode < ActiveRecordShared
2
+
3
+ default_scope :order => :zip_code, :limit => 10
4
+ belongs_to :county
5
+
6
+ # validates_presence_of :latitude
7
+ # validates_presence_of :longitude
8
+ # validates_presence_of :county
9
+
10
+ validates_presence_of :zip_code, :city, :state, :zip_class
11
+ validates_uniqueness_of :zip_code
12
+ validates_length_of :zip_code, :is => 5
13
+ validates_length_of :city, :state, :zip_class,
14
+ :maximum => 250, :allow_blank => true
15
+
16
+
17
+ # acts_like_a_hash(:key => :zip_code)
18
+ # Almost, but length validation would fail.
19
+ # And what would the value field be?
20
+
21
+
22
+ # Treats the class a bit like a Hash and
23
+ # searches for a record with a matching code.
24
+ def self.[](zip_code)
25
+ find_by_zip_code(zip_code.to_s) #|| raise(NotFound)
26
+ end
27
+
28
+ def to_s
29
+ "#{city}, #{state} #{zip_code}"
30
+ end
31
+
32
+ # def zip
33
+ # zip_code
34
+ # end
35
+
36
+ end
@@ -0,0 +1,1038 @@
1
+ -
2
+ :db: abstract_version_id
3
+ :human: Abstract Version
4
+ -
5
+ :db: abstracted_on
6
+ :human: Abstracted On
7
+ -
8
+ :db: abstractor_id
9
+ :human: Abstractor
10
+ -
11
+ :db: blasts_are_present
12
+ :human: Blasts Are Present
13
+ -
14
+ :db: cbc_hemoglobin_level
15
+ :human: CBC Hemoglobin Level
16
+ -
17
+ :db: cbc_number_blasts
18
+ :human: CBC Number Blasts
19
+ -
20
+ :db: cbc_percent_blasts
21
+ :human: CBC Percent Blasts
22
+ -
23
+ :db: cbc_percent_blasts_unknown
24
+ :human: CBC Percent Blasts Unknown
25
+ -
26
+ :db: cbc_platelet_count
27
+ :human: CBC Platelet Count
28
+ -
29
+ :db: cbc_report_found
30
+ :human: CBC Report Found
31
+ -
32
+ :db: cbc_report_on
33
+ :human: CBC Report On
34
+ -
35
+ :db: cbc_white_blood_count
36
+ :human: CBC White Blood Count
37
+ -
38
+ :db: cerebrospinal_fluid_report_found
39
+ :human: Cerebrospinal Fluid Report Found
40
+ -
41
+ :db: chemo_protocol_agent_description
42
+ :human: Chemo Protocol Agent Description
43
+ -
44
+ :db: chemo_protocol_name
45
+ :human: Chemo Protocol Name
46
+ -
47
+ :db: chemo_protocol_report_found
48
+ :human: Chemo Protocol Report Found
49
+ -
50
+ :db: chest_ct_medmass_present
51
+ :human: Chest CT Medmass Present
52
+ -
53
+ :db: chest_ct_taken_on
54
+ :human: Chest CT Taken On
55
+ -
56
+ :db: chest_imaging_comment
57
+ :human: Chest Imaging Comment
58
+ -
59
+ :db: chest_imaging_report_found
60
+ :human: Chest Imaging Report Found
61
+ -
62
+ :db: chest_imaging_report_on
63
+ :human: Chest Imaging Report On
64
+ -
65
+ :db: conventional_karyotype_results
66
+ :human: Conventional Karyotype Results
67
+ #-
68
+ # :db: created_at
69
+ # :human: Created at
70
+ -
71
+ :db: csf_comment
72
+ :human: CSF Comment
73
+ -
74
+ :db: csf_red_blood_count
75
+ :human: CSF Red Blood Count
76
+ -
77
+ :db: csf_red_blood_count_text
78
+ :human: CSF Red Blood Count Text
79
+ -
80
+ :db: csf_report_on
81
+ :human: CSF Report On
82
+ -
83
+ :db: csf_white_blood_count
84
+ :human: CSF White Blood Count
85
+ -
86
+ :db: csf_white_blood_count_text
87
+ :human: CSF White Blood Count Text
88
+ -
89
+ :db: cytogen_chromosome_number
90
+ :human: Cytogen Chromosome Number
91
+ -
92
+ :db: cytogen_comment
93
+ :human: Cytogen Comment
94
+ -
95
+ :db: cytogen_hospital_fish_done
96
+ :human: Cytogen Hospital Fish Done
97
+ -
98
+ :db: cytogen_inv16
99
+ :human: Cytogen inv16
100
+ -
101
+ :db: cytogen_is_hyperdiploidy
102
+ :human: Cytogen is Hyperdiploidy
103
+ -
104
+ :db: cytogen_karyotype_done
105
+ :human: Cytogen Karyotype Done
106
+ -
107
+ :db: cytogen_other_trans_1
108
+ :human: Cytogen Other Trans 1
109
+ -
110
+ :db: cytogen_other_trans_2
111
+ :human: Cytogen Other Trans 2
112
+ -
113
+ :db: cytogen_other_trans_3
114
+ :human: Cytogen Other Trans 3
115
+ -
116
+ :db: cytogen_other_trans_4
117
+ :human: Cytogen Other Trans 4
118
+ -
119
+ :db: cytogen_other_trans_5
120
+ :human: Cytogen Other Trans 5
121
+ -
122
+ :db: cytogen_other_trans_6
123
+ :human: Cytogen Other Trans 6
124
+ -
125
+ :db: cytogen_other_trans_7
126
+ :human: Cytogen Other Trans 7
127
+ -
128
+ :db: cytogen_other_trans_8
129
+ :human: Cytogen Other Trans 8
130
+ -
131
+ :db: cytogen_other_trans_9
132
+ :human: Cytogen Other Trans 9
133
+ -
134
+ :db: cytogen_other_trans_10
135
+ :human: Cytogen Other Trans 10
136
+ -
137
+ :db: cytogen_report_found
138
+ :human: Cytogen Report Found
139
+ -
140
+ :db: cytogen_report_on
141
+ :human: Cytogen Report On
142
+ -
143
+ :db: cytogen_t119
144
+ :human: Cytogen t119
145
+ -
146
+ :db: cytogen_t821
147
+ :human: Cytogen t821
148
+ -
149
+ :db: cytogen_t922
150
+ :human: Cytogen t922
151
+ -
152
+ :db: cytogen_t1221
153
+ :human: Cytogen t1221
154
+ -
155
+ :db: cytogen_t1517
156
+ :human: Cytogen t1517
157
+ -
158
+ :db: cytogen_trisomy4
159
+ :human: Cytogen Trisomy4
160
+ -
161
+ :db: cytogen_trisomy5
162
+ :human: Cytogen Trisomy5
163
+ -
164
+ :db: cytogen_trisomy10
165
+ :human: Cytogen Trisomy10
166
+ -
167
+ :db: cytogen_trisomy17
168
+ :human: Cytogen Trisomy17
169
+ -
170
+ :db: cytogen_trisomy21
171
+ :human: Cytogen Trisomy21
172
+ -
173
+ :db: cytogen_ucb_fish_done
174
+ :human: Cytogen UCB Fish Done
175
+ -
176
+ :db: data_entry_done_on
177
+ :human: Data Entry Done On
178
+ -
179
+ :db: diagnosed_on
180
+ :human: Diagnosed On
181
+ -
182
+ :db: diagnosis_all_type_id
183
+ :human: Diagnosis ALL Type
184
+ -
185
+ :db: diagnosis_aml_type_id
186
+ :human: Diagnosis AML Type
187
+ -
188
+ :db: diagnosis_icdo_description
189
+ :human: Diagnosis ICDO Description
190
+ -
191
+ :db: diagnosis_icdo_number
192
+ :human: Diagnosis ICDO Number
193
+ -
194
+ :db: diagnosis_is_all
195
+ :human: Diagnosis is ALL
196
+ -
197
+ :db: diagnosis_is_aml
198
+ :human: Diagnosis is AML
199
+ -
200
+ :db: diagnosis_is_b_all
201
+ :human: Diagnosis is B ALL
202
+ -
203
+ :db: diagnosis_is_cll
204
+ :human: Diagnosis is CLL
205
+ -
206
+ :db: diagnosis_is_cml
207
+ :human: Diagnosis is CML
208
+ -
209
+ :db: diagnosis_is_other
210
+ :human: Diagnosis is Other
211
+ -
212
+ :db: diagnosis_is_t_all
213
+ :human: Diagnosis is T ALL
214
+ -
215
+ :db: discharge_summary
216
+ :human: Discharge Summary
217
+ -
218
+ :db: discharge_summary_found
219
+ :human: Discharge Summary Found
220
+ -
221
+ :db: discharge_summary_found_on
222
+ :human: Discharge Summary Found On
223
+ -
224
+ :db: dna_index
225
+ :human: DNA Index
226
+ -
227
+ :db: dod
228
+ :human: Dod
229
+ #-
230
+ # :db: entry_1_by_uid
231
+ # :human: Entry 1 by uid
232
+ #-
233
+ # :db: entry_2_by_uid
234
+ # :human: Entry 2 by uid
235
+ -
236
+ :db: fab_classification
237
+ :human: Fab Classification
238
+ -
239
+ :db: flow_cyto_bm_kappa
240
+ :human: Flow Cyto Bm Kappa
241
+ -
242
+ :db: flow_cyto_bm_kappa_text
243
+ :human: Flow Cyto Bm Kappa Text
244
+ -
245
+ :db: flow_cyto_bm_lambda
246
+ :human: Flow Cyto Bm Lambda
247
+ -
248
+ :db: flow_cyto_bm_lambda_text
249
+ :human: Flow Cyto Bm Lambda Text
250
+ -
251
+ :db: flow_cyto_cd1a
252
+ :human: Flow Cyto CD1a
253
+ -
254
+ :db: flow_cyto_cd1a_text
255
+ :human: Flow Cyto CD1a Text
256
+ -
257
+ :db: flow_cyto_cd2
258
+ :human: Flow Cyto CD2
259
+ -
260
+ :db: flow_cyto_cd2_text
261
+ :human: Flow Cyto CD2 text
262
+ -
263
+ :db: flow_cyto_cd3
264
+ :human: Flow Cyto CD3
265
+ -
266
+ :db: flow_cyto_cd3_text
267
+ :human: Flow Cyto CD3 text
268
+ -
269
+ :db: flow_cyto_cd3_cd4
270
+ :human: Flow Cyto CD3 CD4
271
+ -
272
+ :db: flow_cyto_cd3_cd4_text
273
+ :human: Flow Cyto CD3 CD4 Text
274
+ -
275
+ :db: flow_cyto_cd3_cd8
276
+ :human: Flow Cyto CD3 CD8
277
+ -
278
+ :db: flow_cyto_cd3_cd8_text
279
+ :human: Flow Cyto CD3 CD8 Text
280
+ -
281
+ :db: flow_cyto_cd4
282
+ :human: Flow Cyto CD4
283
+ -
284
+ :db: flow_cyto_cd4_text
285
+ :human: Flow Cyto CD4 Text
286
+ -
287
+ :db: flow_cyto_cd5
288
+ :human: Flow Cyto CD5
289
+ -
290
+ :db: flow_cyto_cd5_text
291
+ :human: Flow Cyto CD5 Text
292
+ -
293
+ :db: flow_cyto_cd7
294
+ :human: Flow Cyto CD7
295
+ -
296
+ :db: flow_cyto_cd7_text
297
+ :human: Flow Cyto CD7 Text
298
+ -
299
+ :db: flow_cyto_cd8
300
+ :human: Flow Cyto CD8
301
+ -
302
+ :db: flow_cyto_cd8_text
303
+ :human: Flow Cyto CD8 Text
304
+ -
305
+ :db: flow_cyto_cd9
306
+ :human: Flow Cyto CD9
307
+ -
308
+ :db: flow_cyto_cd9_text
309
+ :human: Flow Cyto CD9 Text
310
+ -
311
+ :db: flow_cyto_cd10
312
+ :human: Flow Cyto CD10
313
+ -
314
+ :db: flow_cyto_cd10_text
315
+ :human: Flow Cyto CD10 Text
316
+ -
317
+ :db: flow_cyto_cd10_19
318
+ :human: Flow Cyto CD10 19
319
+ -
320
+ :db: flow_cyto_cd10_19_text
321
+ :human: Flow Cyto CD10 19 Text
322
+ -
323
+ :db: flow_cyto_cd11b
324
+ :human: Flow Cyto CD11b
325
+ -
326
+ :db: flow_cyto_cd11b_text
327
+ :human: Flow Cyto CD11b Text
328
+ -
329
+ :db: flow_cyto_cd11c
330
+ :human: Flow Cyto CD11c
331
+ -
332
+ :db: flow_cyto_cd11c_text
333
+ :human: Flow Cyto CD11c Text
334
+ -
335
+ :db: flow_cyto_cd13
336
+ :human: Flow Cyto CD13
337
+ -
338
+ :db: flow_cyto_cd13_text
339
+ :human: Flow Cyto CD13 Text
340
+ -
341
+ :db: flow_cyto_cd14
342
+ :human: Flow Cyto CD14
343
+ -
344
+ :db: flow_cyto_cd14_text
345
+ :human: Flow Cyto CD14 Text
346
+ -
347
+ :db: flow_cyto_cd15
348
+ :human: Flow Cyto CD15
349
+ -
350
+ :db: flow_cyto_cd15_text
351
+ :human: Flow Cyto CD15 Text
352
+ -
353
+ :db: flow_cyto_cd16
354
+ :human: Flow Cyto CD16
355
+ -
356
+ :db: flow_cyto_cd16_text
357
+ :human: Flow Cyto CD16 Text
358
+ -
359
+ :db: flow_cyto_cd19
360
+ :human: Flow Cyto CD19
361
+ -
362
+ :db: flow_cyto_cd19_text
363
+ :human: Flow Cyto CD19 Text
364
+ -
365
+ :db: flow_cyto_cd20
366
+ :human: Flow Cyto CD20
367
+ -
368
+ :db: flow_cyto_cd20_text
369
+ :human: Flow Cyto CD20 Text
370
+ -
371
+ :db: flow_cyto_cd21
372
+ :human: Flow Cyto CD21
373
+ -
374
+ :db: flow_cyto_cd21_text
375
+ :human: Flow Cyto CD21 Text
376
+ -
377
+ :db: flow_cyto_cd22
378
+ :human: Flow Cyto CD22
379
+ -
380
+ :db: flow_cyto_cd22_text
381
+ :human: Flow Cyto CD22 Text
382
+ -
383
+ :db: flow_cyto_cd23
384
+ :human: Flow Cyto CD23
385
+ -
386
+ :db: flow_cyto_cd23_text
387
+ :human: Flow Cyto CD23 Text
388
+ -
389
+ :db: flow_cyto_cd24
390
+ :human: Flow Cyto CD24
391
+ -
392
+ :db: flow_cyto_cd24_text
393
+ :human: Flow Cyto CD24 Text
394
+ -
395
+ :db: flow_cyto_cd25
396
+ :human: Flow Cyto CD25
397
+ -
398
+ :db: flow_cyto_cd25_text
399
+ :human: Flow Cyto CD25 Text
400
+ -
401
+ :db: flow_cyto_cd33
402
+ :human: Flow Cyto CD33
403
+ -
404
+ :db: flow_cyto_cd33_text
405
+ :human: Flow Cyto CD33 Text
406
+ -
407
+ :db: flow_cyto_cd34
408
+ :human: Flow Cyto CD34
409
+ -
410
+ :db: flow_cyto_cd34_text
411
+ :human: Flow Cyto CD34 Text
412
+ -
413
+ :db: flow_cyto_cd38
414
+ :human: Flow Cyto CD38
415
+ -
416
+ :db: flow_cyto_cd38_text
417
+ :human: Flow Cyto CD38 Text
418
+ -
419
+ :db: flow_cyto_cd40
420
+ :human: Flow Cyto CD40
421
+ -
422
+ :db: flow_cyto_cd40_text
423
+ :human: Flow Cyto CD40 Text
424
+ -
425
+ :db: flow_cyto_cd41
426
+ :human: Flow Cyto CD41
427
+ -
428
+ :db: flow_cyto_cd41_text
429
+ :human: Flow Cyto CD41 Text
430
+ -
431
+ :db: flow_cyto_cd45
432
+ :human: Flow Cyto CD45
433
+ -
434
+ :db: flow_cyto_cd45_text
435
+ :human: Flow Cyto CD45 Text
436
+ -
437
+ :db: flow_cyto_cd56
438
+ :human: Flow Cyto CD56
439
+ -
440
+ :db: flow_cyto_cd56_text
441
+ :human: Flow Cyto CD56 Text
442
+ -
443
+ :db: flow_cyto_cd57
444
+ :human: Flow Cyto CD57
445
+ -
446
+ :db: flow_cyto_cd57_text
447
+ :human: Flow Cyto CD57 Text
448
+ -
449
+ :db: flow_cyto_cd61
450
+ :human: Flow Cyto CD61
451
+ -
452
+ :db: flow_cyto_cd61_text
453
+ :human: Flow Cyto CD61 Text
454
+ -
455
+ :db: flow_cyto_cd71
456
+ :human: Flow Cyto CD71
457
+ -
458
+ :db: flow_cyto_cd71_text
459
+ :human: Flow Cyto CD71 Text
460
+ -
461
+ :db: flow_cyto_cdw65
462
+ :human: Flow Cyto CDw65
463
+ -
464
+ :db: flow_cyto_cdw65_text
465
+ :human: Flow Cyto CDw65 Text
466
+ -
467
+ :db: flow_cyto_glycoa
468
+ :human: Flow Cyto Glycoa
469
+ -
470
+ :db: flow_cyto_glycoa_text
471
+ :human: Flow Cyto Glycoa Text
472
+ -
473
+ :db: flow_cyto_hladr
474
+ :human: Flow Cyto Hladr
475
+ -
476
+ :db: flow_cyto_hladr_text
477
+ :human: Flow Cyto Hladr Text
478
+ -
479
+ :db: flow_cyto_igm
480
+ :human: Flow Cyto Igm
481
+ -
482
+ :db: flow_cyto_igm_text
483
+ :human: Flow Cyto Igm Text
484
+ -
485
+ :db: flow_cyto_num_results_available
486
+ :human: Flow Cyto Num Results Available
487
+ -
488
+ :db: flow_cyto_other_marker_1
489
+ :human: Flow Cyto Other Marker 1
490
+ -
491
+ :db: flow_cyto_other_marker_1_name
492
+ :human: Flow Cyto Other Marker 1 Name
493
+ -
494
+ :db: flow_cyto_other_marker_1_text
495
+ :human: Flow Cyto Other Marker 1 Text
496
+ -
497
+ :db: flow_cyto_other_marker_2
498
+ :human: Flow Cyto Other Marker 2
499
+ -
500
+ :db: flow_cyto_other_marker_2_name
501
+ :human: Flow Cyto Other Marker 2 Name
502
+ -
503
+ :db: flow_cyto_other_marker_2_text
504
+ :human: Flow Cyto Other Marker 2 Text
505
+ -
506
+ :db: flow_cyto_other_marker_3
507
+ :human: Flow Cyto Other Marker 3
508
+ -
509
+ :db: flow_cyto_other_marker_3_name
510
+ :human: Flow Cyto Other Marker 3 Name
511
+ -
512
+ :db: flow_cyto_other_marker_3_text
513
+ :human: Flow Cyto Other Marker 3 Text
514
+ -
515
+ :db: flow_cyto_other_marker_4
516
+ :human: Flow Cyto Other Marker 4
517
+ -
518
+ :db: flow_cyto_other_marker_4_name
519
+ :human: Flow Cyto Other Marker 4 Name
520
+ -
521
+ :db: flow_cyto_other_marker_4_text
522
+ :human: Flow Cyto Other Marker 4 Text
523
+ -
524
+ :db: flow_cyto_other_marker_5
525
+ :human: Flow Cyto Other Marker 5
526
+ -
527
+ :db: flow_cyto_other_marker_5_name
528
+ :human: Flow Cyto Other Marker 5 Name
529
+ -
530
+ :db: flow_cyto_other_marker_5_text
531
+ :human: Flow Cyto Other Marker 5 Text
532
+ -
533
+ :db: flow_cyto_remarks
534
+ :human: Flow Cyto Remarks
535
+ -
536
+ :db: flow_cyto_report_found
537
+ :human: Flow Cyto Report Found
538
+ -
539
+ :db: flow_cyto_report_on
540
+ :human: Flow Cyto Report On
541
+ -
542
+ :db: flow_cyto_surface_ig
543
+ :human: Flow Cyto Surface Ig
544
+ -
545
+ :db: flow_cyto_surface_ig_text
546
+ :human: Flow Cyto Surface Ig Text
547
+ -
548
+ :db: flow_cyto_tdt
549
+ :human: Flow Cyto TDT
550
+ -
551
+ :db: flow_cyto_tdt_text
552
+ :human: Flow Cyto TDT Text
553
+ -
554
+ :db: h_and_p_reports_found
555
+ :human: H and P Reports Found
556
+ -
557
+ :db: h_and_p_reports_on
558
+ :human: H and P Reports On
559
+ -
560
+ :db: height_at_diagnosis
561
+ :human: Height at Diagnosis (cm)
562
+ -
563
+ :db: hepatomegaly_present
564
+ :human: Hepatomegaly Present
565
+ -
566
+ :db: histo_report_found
567
+ :human: Histo Report Found
568
+ -
569
+ :db: histo_report_on
570
+ :human: Histo Report On
571
+ -
572
+ :db: histo_report_results
573
+ :human: Histo Report Results
574
+ -
575
+ :db: hospital_fish_results
576
+ :human: Hospital Fish Results
577
+ -
578
+ :db: hyperdiploidy_by
579
+ :human: Hyperdiploidy By
580
+ #-
581
+ # :db: id
582
+ # :human: Id
583
+ -
584
+ :db: is_cytogen_hosp_fish_t1221_done
585
+ :human: Is Cytogen Hosp Fish t1221 Done
586
+ -
587
+ :db: is_diploid
588
+ :human: Is Diploid
589
+ -
590
+ :db: is_down_syndrome_phenotype
591
+ :human: Is Down Syndrome Phenotype
592
+ -
593
+ :db: is_h_and_p_report_found
594
+ :human: Is H and P Report Found
595
+ -
596
+ :db: is_hyperdiploid
597
+ :human: Is Hyperdiploid
598
+ -
599
+ :db: is_hypodiploid
600
+ :human: Is Hypodiploid
601
+ -
602
+ :db: is_karyotype_normal
603
+ :human: Is Karyotype Normal
604
+ -
605
+ :db: is_verification_complete
606
+ :human: Is Verification Complete
607
+ -
608
+ :db: marrow_aspirate_diagnosis
609
+ :human: Marrow Aspirate Diagnosis
610
+ -
611
+ :db: marrow_aspirate_report_found
612
+ :human: Marrow Aspirate Report Found
613
+ -
614
+ :db: marrow_aspirate_taken_on
615
+ :human: Marrow Aspirate Taken On
616
+ -
617
+ :db: marrow_biopsy_diagnosis
618
+ :human: Marrow Biopsy Diagnosis
619
+ -
620
+ :db: marrow_biopsy_on
621
+ :human: Marrow Biopsy On
622
+ -
623
+ :db: marrow_biopsy_report_found
624
+ :human: Marrow Biopsy Report Found
625
+ -
626
+ :db: mediastinal_mass_present
627
+ :human: Mediastinal Mass Present
628
+ #-
629
+ # :db: merged_by_uid
630
+ # :human: Merged by uid
631
+ -
632
+ :db: normal_cytogen
633
+ :human: Normal Cytogen
634
+ -
635
+ :db: number_metaphase_tested_karyotype
636
+ :human: Number Metaphase Tested Karyotype
637
+ -
638
+ :db: number_normal_metaphase_karyotype
639
+ :human: Number Normal Metaphase Karyotype
640
+ -
641
+ :db: number_of_blasts
642
+ :human: Number of Blasts
643
+ -
644
+ :db: other_dna_measure
645
+ :human: Other DNA Measure
646
+ -
647
+ :db: patient_on_chemo_protocol
648
+ :human: Patient on Chemo Protocol
649
+ -
650
+ :db: peripheral_blood_in_csf
651
+ :human: Peripheral Blood in Csf
652
+ -
653
+ :db: physical_gingival
654
+ :human: Physical Gingival
655
+ -
656
+ :db: physical_leukemic_skin
657
+ :human: Physical Leukemic Skin
658
+ -
659
+ :db: physical_lymph
660
+ :human: Physical Lymph
661
+ -
662
+ :db: physical_neuro
663
+ :human: Physical Neuro
664
+ -
665
+ :db: physical_other_soft
666
+ :human: Physical Other Soft
667
+ -
668
+ :db: physical_other_soft_2
669
+ :human: Physical Other Soft 2
670
+ -
671
+ :db: physical_spleen
672
+ :human: Physical Spleen
673
+ -
674
+ :db: physical_testicle
675
+ :human: Physical Testicle
676
+ -
677
+ :db: ploidy_comment
678
+ :human: Ploidy Comment
679
+ -
680
+ :db: ploidy_report_found
681
+ :human: Ploidy Report Found
682
+ -
683
+ :db: ploidy_report_on
684
+ :human: Ploidy Report On
685
+ -
686
+ :db: received_bone_marrow_aspirate
687
+ :human: Received Bone Marrow Aspirate
688
+ -
689
+ :db: received_bone_marrow_biopsy
690
+ :human: Received Bone Marrow Biopsy
691
+ -
692
+ :db: received_cbc
693
+ :human: Received CBC
694
+ -
695
+ :db: received_chemo_protocol
696
+ :human: Received Chemo Protocol
697
+ -
698
+ :db: received_chest_ct
699
+ :human: Received Chest CT
700
+ -
701
+ :db: received_chest_xray
702
+ :human: Received Chest XRay
703
+ -
704
+ :db: received_csf
705
+ :human: Received CSF
706
+ -
707
+ :db: received_cytogenetics
708
+ :human: Received Cytogenetics
709
+ -
710
+ :db: received_discharge_summary
711
+ :human: Received Discharge Summary
712
+ -
713
+ :db: received_flow_cyto_day_7
714
+ :human: Received Flow Cyto Day 7
715
+ -
716
+ :db: received_flow_cyto_day_14
717
+ :human: Received Flow Cyto Day 14
718
+ -
719
+ :db: received_flow_cytometry
720
+ :human: Received Flow Cytometry
721
+ -
722
+ :db: received_h_and_p
723
+ :human: Received H and P
724
+ -
725
+ :db: received_hla_typing
726
+ :human: Received HLA Typing
727
+ -
728
+ :db: received_other_reports
729
+ :human: Received Other Reports
730
+ -
731
+ :db: received_ploidy
732
+ :human: Received Ploidy
733
+ -
734
+ :db: received_resp_to_therapy
735
+ :human: Received Resp to Therapy
736
+ -
737
+ :db: received_specify_other_reports
738
+ :human: Received Specify Other Reports
739
+ -
740
+ :db: response_blasts_day_7
741
+ :human: Response Blasts Day 7
742
+ -
743
+ :db: response_blasts_day_14
744
+ :human: Response Blasts Day 14
745
+ -
746
+ :db: response_blasts_day_28
747
+ :human: Response Blasts Day 28
748
+ -
749
+ :db: response_blasts_units_day_7
750
+ :human: Response Blasts Units Day 7
751
+ -
752
+ :db: response_blasts_units_day_14
753
+ :human: Response Blasts Units Day 14
754
+ -
755
+ :db: response_blasts_units_day_28
756
+ :human: Response Blasts Units Day 28
757
+ -
758
+ :db: response_cd1a_day_14
759
+ :human: Response CD1a Day 14
760
+ -
761
+ :db: response_cd2a_day_14
762
+ :human: Response CD2a Day 14
763
+ -
764
+ :db: response_cd3_day_7
765
+ :human: Response CD3 Day 7
766
+ -
767
+ :db: response_cd3a_day_14
768
+ :human: Response CD3a Day 14
769
+ -
770
+ :db: response_cd4a_day_14
771
+ :human: Response CD4a Day 14
772
+ -
773
+ :db: response_cd5a_day_14
774
+ :human: Response CD5a Day 14
775
+ -
776
+ :db: response_cd7a_day_14
777
+ :human: Response CD7a Day 14
778
+ -
779
+ :db: response_cd8a_day_14
780
+ :human: Response CD8a Day 14
781
+ -
782
+ :db: response_cd10_day_7
783
+ :human: Response CD10 Day 7
784
+ -
785
+ :db: response_cd10_day_14
786
+ :human: Response CD10 Day 14
787
+ -
788
+ :db: response_cd13_day_7
789
+ :human: Response CD13 Day 7
790
+ -
791
+ :db: response_cd13_day_14
792
+ :human: Response CD13 Day 14
793
+ -
794
+ :db: response_cd14_day_7
795
+ :human: Response CD14 Day 7
796
+ -
797
+ :db: response_cd14_day_14
798
+ :human: Response CD14 Day 14
799
+ -
800
+ :db: response_cd15_day_7
801
+ :human: Response CD15 Day 7
802
+ -
803
+ :db: response_cd15_day_14
804
+ :human: Response CD15 Day 14
805
+ -
806
+ :db: response_cd19_day_7
807
+ :human: Response CD19 Day 7
808
+ -
809
+ :db: response_cd19_day_14
810
+ :human: Response CD19 Day 14
811
+ -
812
+ :db: response_cd19cd10_day_7
813
+ :human: Response CD19CD10 Day 7
814
+ -
815
+ :db: response_cd19cd10_day_14
816
+ :human: Response CD19CD10 Day 14
817
+ -
818
+ :db: response_cd20_day_7
819
+ :human: Response CD20 Day 7
820
+ -
821
+ :db: response_cd20_day_14
822
+ :human: Response CD20 Day 14
823
+ -
824
+ :db: response_cd33_day_7
825
+ :human: Response CD33 Day 7
826
+ -
827
+ :db: response_cd33_day_14
828
+ :human: Response CD33 Day 14
829
+ -
830
+ :db: response_cd34_day_7
831
+ :human: Response CD34 Day 7
832
+ -
833
+ :db: response_cd34_day_14
834
+ :human: Response CD34 Day 14
835
+ -
836
+ :db: response_cd56_day_14
837
+ :human: Response CD56 Day 14
838
+ -
839
+ :db: response_cd61_day_14
840
+ :human: Response CD61 Day 14
841
+ -
842
+ :db: response_classification_day_7
843
+ :human: Response Classification Day 7
844
+ -
845
+ :db: response_classification_day_14
846
+ :human: Response Classification Day 14
847
+ -
848
+ :db: response_classification_day_28
849
+ :human: Response Classification Day 28
850
+ -
851
+ :db: response_comment
852
+ :human: Response Comment
853
+ -
854
+ :db: response_comment_day_7
855
+ :human: Response Comment Day 7
856
+ -
857
+ :db: response_comment_day_14
858
+ :human: Response Comment Day 14
859
+ -
860
+ :db: response_day14or28_flag
861
+ :human: Response Day14or28 Flag
862
+ -
863
+ :db: response_day30_is_in_remission
864
+ :human: Response Day30 is in Remission
865
+ #-
866
+ # :db: response_day_7_days_since_diagnosis
867
+ # :human: Response day 7 days since diagnosis
868
+ #-
869
+ # :db: response_day_7_days_since_treatment_began
870
+ # :human: Response day 7 days since treatment began
871
+ #-
872
+ # :db: response_day_14_days_since_diagnosis
873
+ # :human: Response day 14 days since diagnosis
874
+ #-
875
+ # :db: response_day_14_days_since_treatment_began
876
+ # :human: Response day 14 days since treatment began
877
+ #-
878
+ # :db: response_day_28_days_since_diagnosis
879
+ # :human: Response day 28 days since diagnosis
880
+ #-
881
+ # :db: response_day_28_days_since_treatment_began
882
+ # :human: Response day 28 days since treatment began
883
+ -
884
+ :db: response_fab_subtype
885
+ :human: Response FAB Subtype
886
+ -
887
+ :db: response_flow_cyto_day_7_on
888
+ :human: Response Flow Cyto Day 7 On
889
+ -
890
+ :db: response_flow_cyto_day_14_on
891
+ :human: Response Flow Cyto Day 14 On
892
+ -
893
+ :db: response_hladr_day_7
894
+ :human: Response HLADR Day 7
895
+ -
896
+ :db: response_hladr_day_14
897
+ :human: Response HLADR Day 14
898
+ -
899
+ :db: response_in_remission_day_14
900
+ :human: Response in Remission Day 14
901
+ -
902
+ :db: response_is_inconclusive_day_7
903
+ :human: Response is Inconclusive Day 7
904
+ -
905
+ :db: response_is_inconclusive_day_14
906
+ :human: Response is Inconclusive Day 14
907
+ -
908
+ :db: response_is_inconclusive_day_21
909
+ :human: Response is Inconclusive Day 21
910
+ -
911
+ :db: response_is_inconclusive_day_28
912
+ :human: Response is Inconclusive Day 28
913
+ -
914
+ :db: response_marrow_kappa_day_7
915
+ :human: Response Marrow Kappa Day 7
916
+ -
917
+ :db: response_marrow_kappa_day_14
918
+ :human: Response Marrow Kappa Day 14
919
+ -
920
+ :db: response_marrow_lambda_day_7
921
+ :human: Response Marrow Lambda Day 7
922
+ -
923
+ :db: response_marrow_lambda_day_14
924
+ :human: Response Marrow Lambda Day 14
925
+ -
926
+ :db: response_other1_name_day_7
927
+ :human: Response Other1 Name Day 7
928
+ -
929
+ :db: response_other1_name_day_14
930
+ :human: Response Other1 Name Day 14
931
+ -
932
+ :db: response_other1_value_day_7
933
+ :human: Response Other1 Value Day 7
934
+ -
935
+ :db: response_other1_value_day_14
936
+ :human: Response Other1 Value Day 14
937
+ -
938
+ :db: response_other2_name_day_7
939
+ :human: Response Other2 Name Day 7
940
+ -
941
+ :db: response_other2_name_day_14
942
+ :human: Response Other2 Name Day 14
943
+ -
944
+ :db: response_other2_value_day_7
945
+ :human: Response Other2 Value Day 7
946
+ -
947
+ :db: response_other2_value_day_14
948
+ :human: Response Other2 Value Day 14
949
+ -
950
+ :db: response_other3_value_day_14
951
+ :human: Response Other3 Value Day 14
952
+ -
953
+ :db: response_other3_name_day_14
954
+ :human: Response Other3 Name Day 14
955
+ -
956
+ :db: response_other4_name_day_14
957
+ :human: Response Other4 Name Day 14
958
+ -
959
+ :db: response_other4_value_day_14
960
+ :human: Response Other4 Value Day 14
961
+ -
962
+ :db: response_other5_name_day_14
963
+ :human: Response Other5 Name Day 14
964
+ -
965
+ :db: response_other5_value_day_14
966
+ :human: Response Other5 Value Day 14
967
+ -
968
+ :db: response_report_found_day_7
969
+ :human: Response Report Found Day 7
970
+ -
971
+ :db: response_report_found_day_14
972
+ :human: Response Report Found Day 14
973
+ -
974
+ :db: response_report_found_day_28
975
+ :human: Response Report Found Day 28
976
+ -
977
+ :db: response_report_on_day_7
978
+ :human: Response Report on Day 7
979
+ -
980
+ :db: response_report_on_day_14
981
+ :human: Response Report on Day 14
982
+ -
983
+ :db: response_report_on_day_28
984
+ :human: Response Report on Day 28
985
+ -
986
+ :db: response_tdt_day_7
987
+ :human: Response TDT Day 7
988
+ -
989
+ :db: response_tdt_day_14
990
+ :human: Response TDT Day 14
991
+ -
992
+ :db: reviewed_on
993
+ :human: Reviewed On
994
+ -
995
+ :db: reviewer_id
996
+ :human: Reviewer
997
+ -
998
+ :db: splenomegaly_present
999
+ :human: Splenomegaly Present
1000
+ #-
1001
+ # :db: subject_id
1002
+ # :human: Subject
1003
+ -
1004
+ :db: tdt_found_in_flow_cyto_chart
1005
+ :human: TDT Found in Flow Cyto Chart
1006
+ -
1007
+ :db: tdt_found_in_separate_report
1008
+ :human: TDT Found in Separate Report
1009
+ -
1010
+ :db: tdt_numerical_result
1011
+ :human: TDT Numerical Result
1012
+ -
1013
+ :db: tdt_often_found_flow_cytometry
1014
+ :human: TDT Often Found Flow Cytometry
1015
+ -
1016
+ :db: tdt_positive_or_negative
1017
+ :human: TDT Positive or Negative
1018
+ -
1019
+ :db: tdt_report_found
1020
+ :human: TDT Report Found
1021
+ -
1022
+ :db: tdt_report_on
1023
+ :human: TDT Report On
1024
+ -
1025
+ :db: treatment_began_on
1026
+ :human: Treatment Began On
1027
+ -
1028
+ :db: ucb_fish_results
1029
+ :human: UCB Fish Results
1030
+ #-
1031
+ # :db: updated_at
1032
+ # :human: Updated at
1033
+ -
1034
+ :db: vital_status_id
1035
+ :human: Vital Status
1036
+ -
1037
+ :db: weight_at_diagnosis
1038
+ :human: Weight at Diagnosis (kg)