qa 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/LICENSE +15 -0
  2. data/README.md +174 -0
  3. data/Rakefile +10 -0
  4. data/app/assets/javascripts/qa/application.js +13 -0
  5. data/app/assets/stylesheets/qa/application.css +13 -0
  6. data/app/controllers/qa/application_controller.rb +4 -0
  7. data/app/controllers/qa/terms_controller.rb +76 -0
  8. data/app/helpers/qa/application_helper.rb +2 -0
  9. data/app/models/qa/mesh_tree.rb +37 -0
  10. data/app/models/qa/subject_mesh_term.rb +45 -0
  11. data/app/views/layouts/qa/application.html.erb +14 -0
  12. data/config/authorities.yml +1 -0
  13. data/config/authorities/states.yml +101 -0
  14. data/config/initializers/authorities.rb +1 -0
  15. data/config/oclcts-authorities.yml +24 -0
  16. data/config/routes.rb +7 -0
  17. data/db/migrate/20130917200611_create_qa_subject_mesh_terms.rb +11 -0
  18. data/db/migrate/20130917201026_create_qa_mesh_tree.rb +10 -0
  19. data/db/migrate/20130918141523_add_term_lower_to_qa_subject_mesh_terms.rb +7 -0
  20. data/lib/qa.rb +9 -0
  21. data/lib/qa/authorities.rb +12 -0
  22. data/lib/qa/authorities/base.rb +50 -0
  23. data/lib/qa/authorities/lcsh.rb +46 -0
  24. data/lib/qa/authorities/loc.rb +200 -0
  25. data/lib/qa/authorities/local.rb +69 -0
  26. data/lib/qa/authorities/mesh.rb +20 -0
  27. data/lib/qa/authorities/mesh_tools.rb +6 -0
  28. data/lib/qa/authorities/mesh_tools/mesh_data_parser.rb +65 -0
  29. data/lib/qa/authorities/mesh_tools/mesh_importer.rb +41 -0
  30. data/lib/qa/authorities/oclcts.rb +63 -0
  31. data/lib/qa/authorities/tgnlang.rb +40 -0
  32. data/lib/qa/data/TGN_LANGUAGES.xml +7435 -0
  33. data/lib/qa/engine.rb +5 -0
  34. data/lib/qa/version.rb +3 -0
  35. data/lib/tasks/qa_tasks.rake +4 -0
  36. data/spec/controllers/terms_controller_spec.rb +70 -0
  37. data/spec/fixtures/authorities/authority_A.yml +10 -0
  38. data/spec/fixtures/authorities/authority_B.yml +7 -0
  39. data/spec/fixtures/authorities/authority_C.yml +4 -0
  40. data/spec/fixtures/lcsh-response.txt +1 -0
  41. data/spec/fixtures/loc-response.txt +147 -0
  42. data/spec/fixtures/mesh.txt +334 -0
  43. data/spec/fixtures/oclcts-response-mesh-1.txt +28 -0
  44. data/spec/fixtures/oclcts-response-mesh-2.txt +253 -0
  45. data/spec/fixtures/oclcts-response-mesh-3.txt +28 -0
  46. data/spec/internal/Gemfile +48 -0
  47. data/spec/internal/Gemfile.lock +156 -0
  48. data/spec/internal/README.rdoc +28 -0
  49. data/spec/internal/Rakefile +6 -0
  50. data/spec/internal/app/assets/javascripts/application.js +16 -0
  51. data/spec/internal/app/assets/stylesheets/application.css +13 -0
  52. data/spec/internal/app/controllers/application_controller.rb +5 -0
  53. data/spec/internal/app/helpers/application_helper.rb +2 -0
  54. data/spec/internal/app/views/layouts/application.html.erb +14 -0
  55. data/spec/internal/bin/bundle +3 -0
  56. data/spec/internal/bin/rails +4 -0
  57. data/spec/internal/bin/rake +4 -0
  58. data/spec/internal/config.ru +4 -0
  59. data/spec/internal/config/application.rb +23 -0
  60. data/spec/internal/config/boot.rb +4 -0
  61. data/spec/internal/config/database.yml +25 -0
  62. data/spec/internal/config/environment.rb +5 -0
  63. data/spec/internal/config/environments/development.rb +29 -0
  64. data/spec/internal/config/environments/production.rb +80 -0
  65. data/spec/internal/config/environments/test.rb +36 -0
  66. data/spec/internal/config/initializers/backtrace_silencers.rb +7 -0
  67. data/spec/internal/config/initializers/filter_parameter_logging.rb +4 -0
  68. data/spec/internal/config/initializers/inflections.rb +16 -0
  69. data/spec/internal/config/initializers/mime_types.rb +5 -0
  70. data/spec/internal/config/initializers/secret_token.rb +12 -0
  71. data/spec/internal/config/initializers/session_store.rb +3 -0
  72. data/spec/internal/config/initializers/wrap_parameters.rb +14 -0
  73. data/spec/internal/config/locales/en.yml +23 -0
  74. data/spec/internal/config/oclcts-authorities.yml +24 -0
  75. data/spec/internal/config/routes.rb +60 -0
  76. data/spec/internal/db/development.sqlite3 +0 -0
  77. data/spec/internal/db/migrate/20130930151844_create_qa_subject_mesh_terms.qa.rb +12 -0
  78. data/spec/internal/db/migrate/20130930151845_create_qa_mesh_tree.qa.rb +11 -0
  79. data/spec/internal/db/migrate/20130930151846_add_term_lower_to_qa_subject_mesh_terms.qa.rb +8 -0
  80. data/spec/internal/db/schema.rb +34 -0
  81. data/spec/internal/db/seeds.rb +7 -0
  82. data/spec/internal/db/test.sqlite3 +0 -0
  83. data/spec/internal/lib/generators/test_app_generator.rb +20 -0
  84. data/spec/internal/log/development.log +193 -0
  85. data/spec/internal/public/404.html +58 -0
  86. data/spec/internal/public/422.html +58 -0
  87. data/spec/internal/public/500.html +57 -0
  88. data/spec/internal/public/favicon.ico +0 -0
  89. data/spec/internal/public/robots.txt +5 -0
  90. data/spec/internal/test/test_helper.rb +15 -0
  91. data/spec/lib/authorities_lcsh_spec.rb +61 -0
  92. data/spec/lib/authorities_loc_spec.rb +35 -0
  93. data/spec/lib/authorities_local_spec.rb +89 -0
  94. data/spec/lib/authorities_mesh_spec.rb +38 -0
  95. data/spec/lib/authorities_oclcts_spec.rb +49 -0
  96. data/spec/lib/authorities_tgnlang_spec.rb +22 -0
  97. data/spec/lib/mesh_data_parser_spec.rb +125 -0
  98. data/spec/models/subject_mesh_term_spec.rb +49 -0
  99. data/spec/spec_helper.rb +60 -0
  100. data/spec/support/lib/generators/test_app_generator.rb +20 -0
  101. metadata +396 -0
data/lib/qa/engine.rb ADDED
@@ -0,0 +1,5 @@
1
+ module Qa
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Qa
4
+ end
5
+ end
data/lib/qa/version.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Qa
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :qa do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,70 @@
1
+ require 'spec_helper'
2
+
3
+ describe Qa::TermsController do
4
+
5
+ before :each do
6
+ @routes = Qa::Engine.routes
7
+ end
8
+
9
+ describe "#index" do
10
+
11
+ describe "error checking" do
12
+
13
+ it "should return 400 if no vocabulary is specified" do
14
+ get :index, { :vocab => nil}
15
+ response.code.should == "400"
16
+ end
17
+
18
+ it "should return 400 if no query is specified" do
19
+ get :index, { :q => nil}
20
+ response.code.should == "400"
21
+ end
22
+
23
+ it "should return 400 if vocabulary is not valid" do
24
+ get :index, { :q => "foo", :vocab => "bar" }
25
+ response.code.should == "400"
26
+ end
27
+
28
+ it "should return 400 if sub_authority is not valid" do
29
+ get :index, { :q => "foo", :vocab => "loc", :sub_authority => "foo" }
30
+ response.code.should == "400"
31
+ end
32
+
33
+ end
34
+
35
+ describe "successful queries" do
36
+
37
+ before :each do
38
+ stub_request(:get, "http://id.loc.gov/authorities/suggest/?q=Blues").
39
+ to_return(:body => webmock_fixture("lcsh-response.txt"), :status => 200)
40
+ stub_request(:get, "http://id.loc.gov/search/?format=json&q=").
41
+ with(:headers => {'Accept'=>'application/json'}).
42
+ to_return(:body => webmock_fixture("loc-response.txt"), :status => 200)
43
+ stub_request(:get, "http://id.loc.gov/search/?format=json&q=cs:http://id.loc.gov/vocabulary/relators").
44
+ with(:headers => {'Accept'=>'application/json'}).
45
+ to_return(:body => webmock_fixture("loc-response.txt"), :status => 200)
46
+ end
47
+
48
+ it "should return a set of terms for a lcsh query" do
49
+ get :index, { :q => "Blues", :vocab => "lcsh" }
50
+ response.should be_success
51
+ end
52
+ it "should return a set of terms for a tgnlang query" do
53
+ get :index, {:q => "Tibetan", :vocab => "tgnlang" }
54
+ response.should be_success
55
+ end
56
+
57
+ it "should not return 400 if vocabulary is valid" do
58
+ get :index, { :q => "foo", :vocab => "loc" }
59
+ response.code.should_not == "400"
60
+ end
61
+
62
+ it "should not return 400 if sub_authority is valid" do
63
+ get :index, { :q => "foo", :vocab => "loc", :sub_authority => "relators" }
64
+ response.code.should_not == "400"
65
+ end
66
+
67
+ end
68
+
69
+ end
70
+ end
@@ -0,0 +1,10 @@
1
+ :terms:
2
+ - :id: A1
3
+ :term: Abc Term A1
4
+ :active: true
5
+ - :id: A2
6
+ :term: Term A2
7
+ :active: false
8
+ - :id: A3
9
+ :term: Abc Term A3
10
+ :active: true
@@ -0,0 +1,7 @@
1
+ :terms:
2
+ - :id:
3
+ :term: Term B1
4
+ - :id:
5
+ :term: Term B2
6
+ - :id:
7
+ :term: Term B3
@@ -0,0 +1,4 @@
1
+ :terms:
2
+ - Term C1
3
+ - Term C2
4
+ - Term C3
@@ -0,0 +1 @@
1
+ ["ABBA",["ABBA (Musical group)","ABBA (Musical group). Gold","ABBA (Organization)","Abba (Nigeria)","Abba Books & Broadsides","Abba Consultants","Abba Hilkiah, active 1st century","Abba International, Inc.","Abba Mari ben Moses ben Joseph Astruc, of Lunel, active 13th century-14th century","Abba Rage (Musical group)"],["1 result","1 result","1 result","1 result","1 result","1 result","1 result","1 result","1 result","1 result"],["http://id.loc.gov/authorities/names/n78090836","http://id.loc.gov/authorities/names/n2003148504","http://id.loc.gov/authorities/names/no2012083395","http://id.loc.gov/authorities/names/n92117993","http://id.loc.gov/authorities/names/n98029154","http://id.loc.gov/authorities/names/n84080869","http://id.loc.gov/authorities/names/nr00008103","http://id.loc.gov/authorities/names/no2009072351","http://id.loc.gov/authorities/names/nr91016571","http://id.loc.gov/authorities/names/no2011031749"]]
@@ -0,0 +1,147 @@
1
+ [
2
+ "atom:feed",
3
+ {
4
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
5
+ }
6
+ ,
7
+ [
8
+ "atom:title",
9
+ {
10
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
11
+ }
12
+ ,
13
+ "Library of Congress Authorities and Vocabulary Service: Search Results"
14
+ ],
15
+ [
16
+ "atom:link",
17
+ {
18
+ "xmlns:atom" : "http://www.w3.org/2005/Atom",
19
+ "href" : "http://id.loc.gov/search/?q=haw* cs:http://id.loc.gov/vocabulary/geographicAreas&start=1&format=atom",
20
+ "rel" : "self"
21
+ }
22
+
23
+ ],
24
+ [
25
+ "atom:id",
26
+ {
27
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
28
+ }
29
+ ,
30
+ "info:lc/search/?q=haw*+cs:http://id.loc.gov/vocabulary/geographicAreas"
31
+ ],
32
+ [
33
+ "atom:updated",
34
+ {
35
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
36
+ }
37
+ ,
38
+ "2013-09-18T23:04:54.726545-04:00"
39
+ ],
40
+ [
41
+ "opensearch:totalResults",
42
+ {
43
+ "xmlns:opensearch" : "http://a9.com/-/spec/opensearch/1.1/"
44
+ }
45
+ ,
46
+ "1"
47
+ ],
48
+ [
49
+ "opensearch:startIndex",
50
+ {
51
+ "xmlns:opensearch" : "http://a9.com/-/spec/opensearch/1.1/"
52
+ }
53
+ ,
54
+ "1"
55
+ ],
56
+ [
57
+ "opensearch:itemsPerPage",
58
+ {
59
+ "xmlns:opensearch" : "http://a9.com/-/spec/opensearch/1.1/"
60
+ }
61
+ ,
62
+ "20"
63
+ ],
64
+ [
65
+ "atom:entry",
66
+ {
67
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
68
+ }
69
+ ,
70
+ [
71
+ "atom:title",
72
+ {
73
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
74
+ }
75
+ ,
76
+ "Hawaii"
77
+ ],
78
+ [
79
+ "atom:link",
80
+ {
81
+ "xmlns:atom" : "http://www.w3.org/2005/Atom",
82
+ "rel" : "alternate",
83
+ "href" : "http://id.loc.gov/vocabulary/geographicAreas/n-us-hi"
84
+ }
85
+
86
+ ],
87
+ [
88
+ "atom:link",
89
+ {
90
+ "xmlns:atom" : "http://www.w3.org/2005/Atom",
91
+ "rel" : "alternate",
92
+ "type" : "application/rdf+xml",
93
+ "href" : "http://id.loc.gov/vocabulary/geographicAreas/n-us-hi.rdf"
94
+ }
95
+
96
+ ],
97
+ [
98
+ "atom:link",
99
+ {
100
+ "xmlns:atom" : "http://www.w3.org/2005/Atom",
101
+ "rel" : "alternate",
102
+ "type" : "application/json",
103
+ "href" : "http://id.loc.gov/vocabulary/geographicAreas/n-us-hi.json"
104
+ }
105
+
106
+ ],
107
+ [
108
+ "atom:id",
109
+ {
110
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
111
+ }
112
+ ,
113
+ "info:lc/vocabulary/geographicAreas/n-us-hi"
114
+ ],
115
+ [
116
+ "atom:author",
117
+ {
118
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
119
+ }
120
+ ,
121
+ [
122
+ "atom:name",
123
+ {
124
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
125
+ }
126
+ ,
127
+ "Library of Congress"
128
+ ]
129
+ ],
130
+ [
131
+ "atom:updated",
132
+ {
133
+ "xmlns:atom" : "http://www.w3.org/2005/Atom"
134
+ }
135
+ ,
136
+ "1970-01-01T00:00:00-04:00"
137
+ ],
138
+ [
139
+ "dcterms:created",
140
+ {
141
+ "xmlns:dcterms" : "http://purl.org/dc/terms/"
142
+ }
143
+ ,
144
+ "1970-01-01T00:00:00-04:00"
145
+ ]
146
+ ]
147
+ ]
@@ -0,0 +1,334 @@
1
+ *NEWRECORD
2
+ RECTYPE = D
3
+ MH = Malaria
4
+ AQ = BL CF CI CL CN CO DH DI DT EC EH EM EN EP ET GE HI IM ME MI MO NU PA PC PP PS PX RA RH RI RT SU TH TM UR US VE VI
5
+ PRINT ENTRY = Marsh Fever|T047|NON|EQV|NLM (2006)|050114|abcdef
6
+ PRINT ENTRY = Plasmodium Infections|T047|NON|EQV|UNK (19XX)|740330|PLASMODIUM INFECT|abcdefv
7
+ PRINT ENTRY = Remittent Fever|T047|NON|EQV|NLM (2006)|050114|abcdef
8
+ ENTRY = Infections, Plasmodium|T047|NON|EQV|NLM (1992)|911126|INFECT PLASMODIUM|abcdefv
9
+ ENTRY = Paludism|T047|NON|EQV|NLM (2005)|040220|abcdef
10
+ ENTRY = Fever, Marsh
11
+ ENTRY = Fever, Remittent
12
+ ENTRY = Infection, Plasmodium
13
+ ENTRY = Plasmodium Infection
14
+ MN = C03.752.530
15
+ MN = C23.996.660
16
+ FX = Antimalarials
17
+ MH_TH = NLM (1986)
18
+ MH_TH = ORD (2010)
19
+ ST = T047
20
+ AN = GEN or unspecified; specify Plasmodium species IM if possible but note P. falciparum malaria = MALARIA, FALCIPARUM; P. vivax malaria = MALARIA, VIVAX; tertian malaria = MALARIA, VIVAX, quartan malaria: coord IM with PLASMODIUM MALARIAE (IM); malariotherapy = HYPERTHERMIA, INDUCED: do not confuse with MALARIA /ther; /drug ther: consider also ANTIMALARIALS
21
+ MS = A protozoan disease caused in humans by four species of the PLASMODIUM genus: PLASMODIUM FALCIPARUM; PLASMODIUM VIVAX; PLASMODIUM OVALE; and PLASMODIUM MALARIAE; and transmitted by the bite of an infected female mosquito of the genus ANOPHELES. Malaria is endemic in parts of Asia, Africa, Central and South America, Oceania, and certain Caribbean islands. It is characterized by extreme exhaustion associated with paroxysms of high FEVER; SWEATING; shaking CHILLS; and ANEMIA. Malaria in ANIMALS is caused by other species of plasmodia.
22
+ OL = use MALARIA to search MALARIA CONTROL 1966
23
+ PM = MALARIA CONTROL was heading 1963-66
24
+ HN = MALARIA CONTROL was heading 1963-66
25
+ MED = *1141
26
+ MED = 1541
27
+ M90 = *2010
28
+ M90 = 2428
29
+ M85 = *2929
30
+ M85 = 3509
31
+ M80 = *2008
32
+ M80 = 2567
33
+ M75 = *1414
34
+ M75 = 1928
35
+ M66 = *2561
36
+ M66 = 3568
37
+ M94 = *1272
38
+ M94 = 1646
39
+ CATSH = CAT LIST
40
+ MR = 20120703
41
+ DA = 19990101
42
+ DC = 1
43
+ UI = D008288
44
+
45
+ *NEWRECORD
46
+ RECTYPE = D
47
+ MH = Calcimycin
48
+ AQ = AA AD AE AG AI AN BI BL CF CH CL CS CT DU EC HI IM IP ME PD PK PO RE SD ST TO TU UR
49
+ ENTRY = A-23187|T109|T195|LAB|NRW|NLM (1991)|900308|abbcdef
50
+ ENTRY = A23187|T109|T195|LAB|NRW|UNK (19XX)|741111|abbcdef
51
+ ENTRY = Antibiotic A23187|T109|T195|NON|NRW|NLM (1991)|900308|abbcdef
52
+ ENTRY = A 23187
53
+ ENTRY = A23187, Antibiotic
54
+ MN = D03.438.221.173
55
+ PA = Anti-Bacterial Agents
56
+ PA = Calcium Ionophores
57
+ MH_TH = NLM (1975)
58
+ ST = T109
59
+ ST = T195
60
+ N1 = 4-Benzoxazolecarboxylic acid, 5-(methylamino)-2-((3,9,11-trimethyl-8-(1-methyl-2-oxo-2-(1H-pyrrol-2-yl)ethyl)-1,7-dioxaspiro(5.5)undec-2-yl)methyl)-, (6S-(6alpha(2S*,3S*),8beta(R*),9beta,11alpha))-
61
+ RN = 52665-69-7
62
+ PI = Antibiotics (1973-1974)
63
+ PI = Carboxylic Acids (1973-1974)
64
+ MS = An ionophorous, polyether antibiotic from Streptomyces chartreusensis. It binds and transports CALCIUM and other divalent cations across membranes and uncouples oxidative phosphorylation while inhibiting ATPase of rat liver mitochondria. The substance is used mostly as a biochemical tool to study the role of divalent cations in various biological systems.
65
+ OL = use CALCIMYCIN to search A 23187 1975-90
66
+ PM = 91; was A 23187 1975-90 (see under ANTIBIOTICS 1975-83)
67
+ HN = 91(75); was A 23187 1975-90 (see under ANTIBIOTICS 1975-83)
68
+ MED = *62
69
+ MED = 847
70
+ M90 = *299
71
+ M90 = 2405
72
+ M85 = *454
73
+ M85 = 2878
74
+ M80 = *316
75
+ M80 = 1601
76
+ M75 = *300
77
+ M75 = 823
78
+ M66 = *1
79
+ M66 = 3
80
+ M94 = *153
81
+ M94 = 1606
82
+ MR = 20110624
83
+ DA = 19741119
84
+ DC = 1
85
+ DX = 19840101
86
+ UI = D000001
87
+
88
+ *NEWRECORD
89
+ RECTYPE = D
90
+ MH = Female
91
+ ENTRY = Females|T032|NON|EQV|BIOETHICS (1974)|770317|abcdef
92
+ MH_TH = NLM (1966)
93
+ ST = T032
94
+ AN = check tag only for female organs, diseases, physiol processes, genetics, etc.; do not confuse with WOMEN as a social, cultural, political, economic force; Manual 18.9+, 34.12; 35.6.2 CATALOG: do not use: for indexers only
95
+ GM = clinical and experimental studies on females, human or animal
96
+ HN = 1966; for FEMALES use WOMEN 1978-2005
97
+ MED = 417263
98
+ M90 = 496463
99
+ M85 = 550034
100
+ M80 = 469226
101
+ M75 = 385644
102
+ M66 = 556089
103
+ M94 = 518935
104
+ MR = 20050630
105
+ DA = 19990101
106
+ DC = 3
107
+ UI = D005260
108
+
109
+ *NEWRECORD
110
+ RECTYPE = D
111
+ MH = Female Urogenital Diseases and Pregnancy Complications
112
+ DE = FEMALE UROGENITAL DIS PREGNANCY COMPL
113
+ MN = C13
114
+ RH = C13 - DISEASES-FEMALE UROGENITAL AND PREGNANCY COMPLICATIONS
115
+ MH_TH = NLM (2007)
116
+ ST = T047
117
+ AN = used for searching: indexers and catalogers apply specifics
118
+ MS = Pathological processes of the female URINARY TRACT, the reproductive system (GENITALIA, FEMALE), and disorders related to PREGNANCY.
119
+ PM = 2007; see FEMALE GENITAL DISEASES AND PREGNANCY COMPLICATIONS 1998-2006
120
+ HN = 2007 (1998)
121
+ CATSH = CAT LIST
122
+ MR = 20060705
123
+ DA = 19990101
124
+ DC = 1
125
+ DX = 19980101
126
+ UI = D005261
127
+
128
+ *NEWRECORD
129
+ RECTYPE = D
130
+ MH = Parasitic Diseases
131
+ DE = PARASITIC DIS
132
+ AQ = BL CF CI CL CN CO DH DI DT EC EH EM EN EP ET GE HI IM ME MI MO NU PA PC PP PS PX RA RH RI RT SU TH TM UR US VI
133
+ ENTRY = Disease, Parasitic
134
+ ENTRY = Diseases, Parasitic
135
+ ENTRY = Parasitic Disease
136
+ MN = C03
137
+ RH = C3 - DISEASES-PARASITIC
138
+ EC = veterinary:Parasitic Diseases, Animal
139
+ MH_TH = POPLINE (1978)
140
+ ST = T047
141
+ AN = GEN: prefer specifics; relation to parasites: Manual 22.12-.20; parasitic dis not in MeSH: Manual 22.17, 22.18; parasitic dis of heart = PARASITIC DISEASES or specific parasitic dis (IM) + CARDIOMYOPATHIES (IM), not HEART DISEASES; DF: PARASITIC DIS
142
+ MS = Infections or infestations with parasitic organisms. They are often contracted through contact with an intermediate vector, but may occur as the result of direct exposure.
143
+ OL = search PARASITICIDES under ANTIPROTOZOAL AGENTS 1966
144
+ PM = PARASITICIDES was heading 1963-66
145
+ HN = PARASITICIDES was heading 1963-66
146
+ MED = *176
147
+ MED = 280
148
+ M90 = *347
149
+ M90 = 491
150
+ M85 = *458
151
+ M85 = 671
152
+ M80 = *421
153
+ M80 = 696
154
+ M75 = *482
155
+ M75 = 719
156
+ M66 = *658
157
+ M66 = 1046
158
+ M94 = *326
159
+ M94 = 478
160
+ CATSH = CAT LIST
161
+ MR = 20040713
162
+ DA = 19990101
163
+ DC = 1
164
+ UI = D010272
165
+
166
+ *NEWRECORD
167
+ RECTYPE = D
168
+ MH = Protozoan Infections
169
+ DE = PROTOZOAN INFECT
170
+ AQ = BL CF CI CL CN CO DH DI DT EC EH EM EN EP ET GE HI IM ME MI MO NU PA PC PP PS PX RA RH RI RT SU TH TM UR US VI
171
+ PRINT ENTRY = Histomoniasis|T047|NON|NRW|UNK (19XX)|850322|abcdef
172
+ ENTRY = Infections, Protozoan|T047|NON|EQV|NLM (1992)|910301|INFECT PROTOZOAN|abcdefv
173
+ ENTRY = Histomoniases
174
+ ENTRY = Infection, Protozoan
175
+ ENTRY = Protozoan Infection
176
+ MN = C03.752
177
+ FX = Antiprotozoal Agents
178
+ EC = veterinary:Protozoan Infections, Animal
179
+ MH_TH = NLM (1966)
180
+ ST = T047
181
+ AN = GEN; prefer specifics; /drug ther: consider also ANTIPROTOZOAL AGENTS
182
+ MS = Infections with unicellular organisms formerly members of the subkingdom Protozoa.
183
+ OL = use PROTOZOAN INFECTIONS to search HISTOMONIASIS 1968-85
184
+ PM = HISTOMONIASIS was heading 1968-85
185
+ HN = HISTOMONIASIS was heading 1968-85
186
+ MED = *79
187
+ MED = 130
188
+ M90 = *311
189
+ M90 = 415
190
+ M85 = *384
191
+ M85 = 515
192
+ M80 = *246
193
+ M80 = 346
194
+ M75 = *304
195
+ M75 = 463
196
+ M66 = *643
197
+ M66 = 913
198
+ M94 = *171
199
+ M94 = 254
200
+ CATSH = CAT LIST
201
+ MR = 20090706
202
+ DA = 19990101
203
+ DC = 1
204
+ UI = D011528
205
+
206
+ *NEWRECORD
207
+ RECTYPE = D
208
+ MH = Tropical Diseases
209
+ AQ = BL CF CI CL CN CO DH DI DT EC EH EM EN EP ET GE HI IM ME MI MO NU PA PC PP PS PX RA RH RI RT SU TH TM UR US VE VI
210
+ ENTRY = Disease, Tropical
211
+ ENTRY = Diseases, Tropical
212
+ ENTRY = Tropical Disease
213
+ MN = C03.883
214
+ MN = C23.996
215
+ MH_TH = NLM (2013)
216
+ ST = T047
217
+ MS = Diseases which are normally prevalent in or frequently associated with tropical regions of the world.
218
+ PM = 2013
219
+ HN = 2013
220
+ MR = 20121129
221
+ DA = 20120703
222
+ DC = 1
223
+ DX = 20130101
224
+ UI = D062310
225
+
226
+ *NEWRECORD
227
+ RECTYPE = D
228
+ MH = Pathological Conditions, Signs and Symptoms
229
+ DE = PATHOL CONDITIONS SIGNS SYMPTOMS
230
+ PRINT ENTRY = Symptoms and General Pathology|T046|T184|NON|EQV|NLM (1966)|990101|SYMPTOMS GENERAL PATHOL|abbcdefv
231
+ MN = C23
232
+ RH = C23 - PATHOLOGICAL CONDITIONS, SIGNS AND SYMPTOMS
233
+ MH_TH = NLM (2000)
234
+ ST = T046
235
+ ST = T184
236
+ AN = used for searching: indexers and catalogers apply specifics
237
+ MS = Abnormal anatomical or physiological conditions and objective or subjective manifestations of disease, not classified as disease or syndrome.
238
+ PM = 2000; see SYMPTOMS AND GENERAL PATHOLOGY 1998-1999
239
+ HN = 2000(1998); use explode 1970-1997
240
+ CATSH = CAT LIST
241
+ MR = 20060705
242
+ DA = 19990101
243
+ DC = 1
244
+ DX = 19980101
245
+ UI = D013568
246
+
247
+ *NEWRECORD
248
+ RECTYPE = D
249
+ MH = Benzoxazoles
250
+ AQ = AD AE AG AI AN BL CF CH CL CS CT DU EC HI IM IP ME PD PK PO RE SD ST TO TU UR
251
+ MN = D03.438.221
252
+ MH_TH = NLM (1966)
253
+ ST = T109
254
+ RN = 0
255
+ AN = includes benzoxazolines, benzoxazolidines
256
+ PM = 66
257
+ HN = 66
258
+ MED = *36
259
+ MED = 53
260
+ M90 = *52
261
+ M90 = 64
262
+ M85 = *64
263
+ M85 = 70
264
+ M80 = *79
265
+ M80 = 94
266
+ M75 = *57
267
+ M75 = 65
268
+ M66 = *76
269
+ M66 = 115
270
+ M94 = *55
271
+ M94 = 87
272
+ MR = 19920508
273
+ DA = 19990101
274
+ DC = 1
275
+ DX = 19660101
276
+ UI = D001583
277
+
278
+ *NEWRECORD
279
+ RECTYPE = D
280
+ MH = Heterocyclic Compounds, 2-Ring
281
+ DE = HETEROCYCLIC CPDS 2 RING
282
+ DS = HETEROCYCLIC COMPOUNDS A 2 RING
283
+ AQ = AD AE AG AI AN BL CF CH CL CS CT DU EC HI IM IP ME PD PK PO RE SD ST TO TU UR
284
+ ENTRY = 2-Ring Heterocyclic Compounds
285
+ ENTRY = Compounds, 2-Ring Heterocyclic
286
+ ENTRY = Heterocyclic Compounds, 2 Ring
287
+ MN = D03.438
288
+ MH_TH = NLM (1966)
289
+ ST = T109
290
+ RN = 0
291
+ AN = GEN; prefer specifics; used for mapping supplementary chemicals
292
+ MS = A class of organic compounds containing two ring structures, one of which is made up of more than one kind of atom, usually carbon plus another atom. The heterocycle may be either aromatic or nonaromatic.
293
+ PM = 98
294
+ HN = 98; use explode 1967-97
295
+ MED = *15
296
+ MED = 18
297
+ MR = 19970620
298
+ DA = 19990101
299
+ DC = 1
300
+ DX = 19980101
301
+ UI = D006574
302
+
303
+ *NEWRECORD
304
+ RECTYPE = D
305
+ MH = Heterocyclic Compounds
306
+ DE = HETEROCYCLIC CPDS
307
+ AQ = AD AE AG AI AN BL CF CH CL CS CT DU EC HI IM IP ME PD PK PO RE SD ST TO TU UR
308
+ ENTRY = Compounds, Heterocyclic
309
+ MN = D03
310
+ RH = D3 - HETEROCYCLIC COMPOUNDS
311
+ MH_TH = NLM (1966)
312
+ ST = T109
313
+ RN = 0
314
+ AN = GEN or unspecified; prefer specific groups or specific cpd; DF: HETEROCYCLIC CPDS
315
+ MS = Ring compounds having atoms other than carbon in their nuclei. (Grant & Hackh's Chemical Dictionary, 5th ed)
316
+ MED = *243
317
+ MED = 366
318
+ M90 = *254
319
+ M90 = 349
320
+ M85 = *156
321
+ M85 = 210
322
+ M80 = *68
323
+ M80 = 113
324
+ M75 = *102
325
+ M75 = 172
326
+ M66 = *596
327
+ M66 = 924
328
+ M94 = *300
329
+ M94 = 429
330
+ MR = 20000622
331
+ DA = 19990101
332
+ DC = 1
333
+ UI = D006571
334
+