ruletagger 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -18,6 +18,7 @@ ext/rule_tagger/lex.c
18
18
  ext/rule_tagger/lex.h
19
19
  ext/rule_tagger/memory.c
20
20
  ext/rule_tagger/memory.h
21
+ ext/rule_tagger/mkmf.log
21
22
  ext/rule_tagger/rbtagger.c
22
23
  ext/rule_tagger/registry.c
23
24
  ext/rule_tagger/registry.h
@@ -31,12 +32,12 @@ ext/rule_tagger/tagger.h
31
32
  ext/rule_tagger/useful.c
32
33
  ext/rule_tagger/useful.h
33
34
  ext/word_tagger/extconf.rb
35
+ ext/word_tagger/mkmf.log
34
36
  ext/word_tagger/porter_stemmer.c
35
37
  ext/word_tagger/porter_stemmer.h
36
38
  ext/word_tagger/rtagger.cc
37
39
  ext/word_tagger/tagger.cc
38
40
  ext/word_tagger/tagger.h
39
- ext/word_tagger/tagger.rb
40
41
  ext/word_tagger/test.rb
41
42
  ext/word_tagger/test/Makefile
42
43
  ext/word_tagger/test/doc.txt
@@ -44,6 +45,7 @@ ext/word_tagger/test/test.cc
44
45
  lib/brill/tagger.rb
45
46
  lib/rbtagger.rb
46
47
  lib/rbtagger/version.rb
48
+ lib/word/tagger.rb
47
49
  script/console
48
50
  script/destroy
49
51
  script/generate
@@ -51,6 +53,9 @@ script/txt2html
51
53
  setup.rb
52
54
  tasks/deployment.rake
53
55
  tasks/environment.rake
56
+ tasks/extconf.rake
57
+ tasks/extconf/rule_tagger.rake
58
+ tasks/extconf/word_tagger.rake
54
59
  tasks/website.rake
55
60
  test/CONTEXTUALRULEFILE
56
61
  test/LEXICALRULEFILE
@@ -65,8 +70,10 @@ test/docs/doc6.txt
65
70
  test/docs/doc7.txt
66
71
  test/docs/doc8.txt
67
72
  test/docs/doc9.txt
68
- test/tagger_test.rb
73
+ test/fixtures/tags.txt
69
74
  test/test_helper.rb
75
+ test/test_rule_tagger.rb
76
+ test/test_word_tagger.rb
70
77
  tools/rakehelp.rb
71
78
  website/index.html
72
79
  website/index.txt
data/Rakefile CHANGED
@@ -2,32 +2,3 @@ require 'config/requirements'
2
2
  require 'config/hoe' # setup Hoe + all gem configuration
3
3
 
4
4
  Dir['tasks/**/*.rake'].each { |rake| load rake }
5
-
6
- # redefine release
7
-
8
- desc 'Package and upload the release to rubyforge.'
9
- task :release_current => [:clean, :package] do |t|
10
- require 'config/hoe'
11
- version = ENV["VERSION"] or abort "Must supply VERSION=x.y.z"
12
- name = $hoe.name
13
- rubyforge_name = $hoe.rubyforge_name
14
- description = $hoe.description
15
- pkg = "pkg/#{name}-#{version}"
16
- abort "Package doesn't exist => #{pkg}" if !File.exist?(pkg)
17
-
18
- rf = RubyForge.new
19
- puts "Logging in"
20
- rf.login
21
-
22
- c = rf.userconfig
23
- c["release_notes"] = description if description
24
- c["release_changes"] = $hoe.changes if $hoe.changes
25
- c["preformatted"] = true
26
-
27
- files = [(@need_tar ? "#{pkg}.tgz" : nil),
28
- (@need_zip ? "#{pkg}.zip" : nil),
29
- "#{pkg}.gem"].compact
30
-
31
- puts "Releasing #{rubyforge_name} v. #{version}"
32
- rf.add_release 'ruletagger', 'ruletagger', version, *files
33
- end
data/config/hoe.rb CHANGED
@@ -3,7 +3,7 @@ require 'rbtagger/version'
3
3
  AUTHOR = 'Todd A. Fisher' # can also be an array of Authors
4
4
  EMAIL = 'todd.fisher@gmail.com'
5
5
  DESCRIPTION = "A Simple Ruby Rule-Based Part of Speech Tagger"
6
- GEM_NAME = 'rbtagger' # what ppl will type to install your gem
6
+ GEM_NAME = 'ruletagger' # what ppl will type to install your gem
7
7
  RUBYFORGE_PROJECT = 'ruletagger' # The unix name for your project
8
8
  HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
9
9
  DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
@@ -57,7 +57,6 @@ $hoe = Hoe.new(GEM_NAME, VERS) do |p|
57
57
  p.description = DESCRIPTION
58
58
  p.summary = DESCRIPTION
59
59
  p.url = HOMEPATH
60
- p.name = RUBYFORGE_PROJECT
61
60
  p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
62
61
  p.test_globs = ["test/**/test_*.rb"]
63
62
  p.clean_globs |= ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store'] #An array of file patterns to delete on clean.
@@ -0,0 +1,46 @@
1
+ have_header: checking for stdlib.h... -------------------- yes
2
+
3
+ "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
4
+ checked program was:
5
+ /* begin */
6
+ 1: #include <stdlib.h>
7
+ /* end */
8
+
9
+ --------------------
10
+
11
+ have_header: checking for string.h... -------------------- yes
12
+
13
+ "gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -Os -pipe -fno-common conftest.c -o conftest.i"
14
+ checked program was:
15
+ /* begin */
16
+ 1: #include <string.h>
17
+ /* end */
18
+
19
+ --------------------
20
+
21
+ have_library: checking for main() in -lc... -------------------- yes
22
+
23
+ "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lc -lpthread -ldl -lm "
24
+ checked program was:
25
+ /* begin */
26
+ 1: /*top*/
27
+ 2: int main() { return 0; }
28
+ 3: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
29
+ /* end */
30
+
31
+ --------------------
32
+
33
+ have_func: checking for snprintf() in stdio.h... -------------------- yes
34
+
35
+ "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lc -lruby -lc -lpthread -ldl -lm "
36
+ checked program was:
37
+ /* begin */
38
+ 1: #include <stdio.h>
39
+ 2:
40
+ 3: /*top*/
41
+ 4: int main() { return 0; }
42
+ 5: int t() { void ((*volatile p)()); p = (void ((*)()))snprintf; return 0; }
43
+ /* end */
44
+
45
+ --------------------
46
+
@@ -0,0 +1,24 @@
1
+ have_library: checking for main() in -lc... -------------------- yes
2
+
3
+ "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lruby -lc -lpthread -ldl -lm "
4
+ checked program was:
5
+ /* begin */
6
+ 1: /*top*/
7
+ 2: int main() { return 0; }
8
+ 3: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
9
+ /* end */
10
+
11
+ --------------------
12
+
13
+ have_library: checking for main() in -lstdc++... -------------------- yes
14
+
15
+ "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin9.0 -I. -arch ppc -arch i386 -Os -pipe -fno-common conftest.c -L"." -L"/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib" -L. -arch ppc -arch i386 -lc -lruby -lstdc++ -lc -lpthread -ldl -lm "
16
+ checked program was:
17
+ /* begin */
18
+ 1: /*top*/
19
+ 2: int main() { return 0; }
20
+ 3: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
21
+ /* end */
22
+
23
+ --------------------
24
+
@@ -70,10 +70,10 @@ VALUE Tagger_alloc(VALUE klass)
70
70
  return object;
71
71
  }
72
72
 
73
- extern "C" void Init_rtagger()
73
+ extern "C" void Init_word_tagger()
74
74
  {
75
75
  rb_Tagger = rb_define_module( "Tagger" );
76
- rb_NWordTagger = rb_define_class_under( rb_Tagger, "NWordTagger", rb_cObject );
76
+ rb_NWordTagger = rb_define_class_under( rb_Tagger, "WordTagger", rb_cObject );
77
77
 
78
78
  rb_define_alloc_func( rb_NWordTagger, Tagger_alloc );
79
79
 
data/lib/rbtagger.rb CHANGED
@@ -4,3 +4,6 @@ $:.unshift(File.dirname(__FILE__)) unless
4
4
  module RbTagger
5
5
 
6
6
  end
7
+
8
+ require 'word/tagger'
9
+ require 'brill/tagger'
@@ -1,8 +1,8 @@
1
1
  module RbTagger #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 0
5
- TINY = 1
4
+ MINOR = 1
5
+ TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1,6 +1,6 @@
1
- module Tagger
2
- require 'rtagger'
3
- class SimpleTagger < Tagger::NWordTagger
1
+ module Word
2
+ require 'word_tagger'
3
+ class Tagger < Tagger::WordTagger
4
4
  def execute( text )
5
5
  super( text.gsub(/[^\w]/,' ') )
6
6
  end
@@ -0,0 +1,18 @@
1
+ namespace :extconf do
2
+ desc "Compiles the Ruby extension"
3
+ task :compile
4
+ end
5
+
6
+ BIN = "*.{bundle,jar,so,obj,pdb,lib,def,exp}"
7
+
8
+ task :compile => "extconf:compile" do
9
+ Dir["ext/**/*.{bundle,so,dll}"].each do|lib|
10
+ sh "cp #{lib} lib/"
11
+ end
12
+ end
13
+
14
+ task :test => :compile
15
+
16
+ $hoe.clean_globs |= ["ext/**/#{BIN}", "lib/**/#{BIN}", 'ext/word_tagger/Makefile', 'ext/rule_tagger/Makefile']
17
+ $hoe.spec.require_paths = Dir['{lib,ext/*}']
18
+ $hoe.spec.extensions = FileList["ext/**/extconf.rb"].to_a
@@ -0,0 +1,43 @@
1
+ namespace :extconf do
2
+ extension = File.basename(__FILE__, '.rake')
3
+
4
+ ext = "ext/#{extension}"
5
+ ext_so = "#{ext}/#{extension}.#{Config::CONFIG['DLEXT']}"
6
+ ext_files = FileList[
7
+ "#{ext}/*.c",
8
+ "#{ext}/*.h",
9
+ "#{ext}/*.rl",
10
+ "#{ext}/extconf.rb",
11
+ "#{ext}/Makefile",
12
+ # "lib"
13
+ ]
14
+
15
+
16
+ task :compile => extension do
17
+ if Dir.glob("**/#{extension}.{o,so,dll,bundle}").length == 0
18
+ STDERR.puts "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
19
+ STDERR.puts "Gem actually failed to build. Your system is"
20
+ STDERR.puts "NOT configured properly to build #{GEM_NAME}."
21
+ STDERR.puts "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
22
+ exit(1)
23
+ end
24
+ end
25
+
26
+ desc "Builds just the #{extension} extension"
27
+ task extension.to_sym => ["#{ext}/Makefile", ext_so ]
28
+
29
+ file "#{ext}/Makefile" => ["#{ext}/extconf.rb"] do
30
+ Dir.chdir(ext) do ruby "extconf.rb" end
31
+ end
32
+
33
+ file ext_so => ext_files do
34
+ Dir.chdir(ext) do
35
+ sh(PLATFORM =~ /win32/ ? 'nmake' : 'make') do |ok, res|
36
+ if !ok
37
+ require "fileutils"
38
+ FileUtils.rm Dir.glob('*.{so,o,dll,bundle}')
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,43 @@
1
+ namespace :extconf do
2
+ extension = File.basename(__FILE__, '.rake')
3
+
4
+ ext = "ext/#{extension}"
5
+ ext_so = "#{ext}/#{extension}.#{Config::CONFIG['DLEXT']}"
6
+ ext_files = FileList[
7
+ "#{ext}/*.c",
8
+ "#{ext}/*.h",
9
+ "#{ext}/*.rl",
10
+ "#{ext}/extconf.rb",
11
+ "#{ext}/Makefile",
12
+ # "lib"
13
+ ]
14
+
15
+
16
+ task :compile => extension do
17
+ if Dir.glob("**/#{extension}.{o,so,dll,bundle}").length == 0
18
+ STDERR.puts "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
19
+ STDERR.puts "Gem actually failed to build. Your system is"
20
+ STDERR.puts "NOT configured properly to build #{GEM_NAME}."
21
+ STDERR.puts "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
22
+ exit(1)
23
+ end
24
+ end
25
+
26
+ desc "Builds just the #{extension} extension"
27
+ task extension.to_sym => ["#{ext}/Makefile", ext_so ]
28
+
29
+ file "#{ext}/Makefile" => ["#{ext}/extconf.rb"] do
30
+ Dir.chdir(ext) do ruby "extconf.rb" end
31
+ end
32
+
33
+ file ext_so => ext_files do
34
+ Dir.chdir(ext) do
35
+ sh(PLATFORM =~ /win32/ ? 'nmake' : 'make') do |ok, res|
36
+ if !ok
37
+ require "fileutils"
38
+ FileUtils.rm Dir.glob('*.{so,o,dll,bundle}')
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,976 @@
1
+ abdominal hernia
2
+ abdominal pain
3
+ abortion
4
+ abscess
5
+ abuse emotional
6
+ abuse physical
7
+ acanthosis nigricans
8
+ accident
9
+ acne
10
+ acoustic neuroma
11
+ acquired immune deficiency syndrome
12
+ actinic keratosis
13
+ active living
14
+ acupressure
15
+ acupuncture
16
+ acute lymphoblastic leukemia
17
+ acute myelogenous leukemia
18
+ addiction
19
+ adoption
20
+ adrenal cancer
21
+ adrenal gland
22
+ age
23
+ alcohol abuse
24
+ alexander technique
25
+ allergic rhinitis
26
+ allergist
27
+ allergy
28
+ alzheimer's disease
29
+ amnesia
30
+ amyotrophic lateral sclerosis
31
+ anal itching
32
+ anatomy
33
+ anemia
34
+ anesthesia
35
+ anesthesiologist
36
+ anesthesiology
37
+ angina
38
+ angina pectoris
39
+ angioplasty
40
+ anisocoria
41
+ ankle
42
+ anorexia nervosa
43
+ anti-aging
44
+ antibiotic induced diarrhea
45
+ anticoagulation
46
+ antimicrobial agent
47
+ antineoplastic agent
48
+ anus
49
+ anxiety
50
+ anxiety disorder
51
+ aortic aneurysm
52
+ aortic stenosis
53
+ aortic valve calcification
54
+ aortic valve regurgitation
55
+ aortic valve stenosis
56
+ aphthous stomatitis
57
+ appearance
58
+ appendectomy
59
+ appendix
60
+ aromatherapy
61
+ arrhythmia
62
+ art therapy
63
+ arteriovenous fistula
64
+ arteriovenous malformation
65
+ arthritis
66
+ arthroscopy
67
+ asbestosis
68
+ ascending cholangitis
69
+ aspergers syndrome
70
+ aspergillosis
71
+ asthma
72
+ astrocytoma
73
+ ataxia
74
+ atelectasis
75
+ atherosclerosis
76
+ atopic dermatitis
77
+ atrial fibrillation
78
+ atrial septal defect
79
+ attention deficit disorder
80
+ attention deficit hyperactivity disorder
81
+ autism
82
+ autoimmune disease
83
+ autonomic nervous system
84
+ avian flu
85
+ ayurveda
86
+ baby
87
+ back
88
+ back injury
89
+ back pain
90
+ back surgery
91
+ bacterial infection
92
+ bacterial vaginosis
93
+ bariatric surgery
94
+ basal cell carcinoma
95
+ beauty
96
+ behavior
97
+ benign prostatic hypertrophy
98
+ bereavement
99
+ berger's disease
100
+ beverage
101
+ binge eating
102
+ biofeedback
103
+ biologically based medicine
104
+ biotech
105
+ bipolar disorder
106
+ birth defect
107
+ bladder
108
+ bladder cancer
109
+ bleeding disorder
110
+ blister
111
+ bloating
112
+ blood disorder
113
+ blood transfusion
114
+ blood/lymphatic system
115
+ body work
116
+ bone
117
+ bone marrow
118
+ bone marrow transplant
119
+ borderline personality disorder
120
+ botanically based medicine
121
+ botulinum toxin
122
+ botulism
123
+ bradycardia
124
+ brain
125
+ brain cancer
126
+ brain tumor
127
+ breast
128
+ breast cancer
129
+ breast lump
130
+ breast mass
131
+ breast reduction surgery
132
+ bronchitis
133
+ bulimia
134
+ bulimia nervosa
135
+ bundle branch block
136
+ bunion
137
+ burn
138
+ burning mouth
139
+ bursitis
140
+ callus
141
+ campylobacter jejuni
142
+ cancer
143
+ cancer pain
144
+ candidiasis
145
+ cardiac arrest
146
+ cardiac catheterization
147
+ cardiac stent
148
+ cardiac stress test
149
+ cardiac surgeon
150
+ cardiac valvuloplasty
151
+ cardiologist
152
+ cardiomyopathy
153
+ cardiovascular system
154
+ caregiver
155
+ caregiving
156
+ carotid endarterectomy
157
+ carpal tunnel release
158
+ carpal tunnel syndrome
159
+ cataract
160
+ cellulitis
161
+ central nervous system
162
+ cerebral palsy
163
+ cerebritis
164
+ cervical cancer
165
+ cervix
166
+ cesarean section
167
+ cheilitis
168
+ chemotherapy
169
+ chest pain
170
+ chicken pox
171
+ child development
172
+ childbirth
173
+ chiropractor
174
+ chlamydia
175
+ cholecystectomy
176
+ cholecystitis
177
+ choledocolithiasis
178
+ cholelithiasis
179
+ cholesteatoma
180
+ cholesterol
181
+ chronic adrenocortical insufficiency
182
+ chronic bronchitis
183
+ chronic lymphocytic leukemia
184
+ chronic myelogenous leukemia
185
+ chronic obstructive pulmonary disease
186
+ chronic pain
187
+ circulation
188
+ cirrhosis
189
+ claudication
190
+ clinical trial
191
+ cluster headache
192
+ coarctation of the aorta
193
+ colectomy
194
+ colitis
195
+ colon
196
+ colon cancer
197
+ colon polyps
198
+ colorectal cancer
199
+ colorectal surgeon
200
+ colorectal surgery
201
+ combined therapy
202
+ common cold
203
+ common wart
204
+ community health service
205
+ complementary therapy
206
+ complication
207
+ condom
208
+ congenital heart disease
209
+ congestive heart failure
210
+ conjunctivitis
211
+ connective tissue disease
212
+ constipation
213
+ contraceptive device
214
+ contraceptive sponge
215
+ cooking
216
+ corn
217
+ cornea
218
+ corneal ulceration
219
+ coronary artery bypass graft
220
+ coronary artery disease
221
+ cough
222
+ counseling
223
+ counselor
224
+ couple
225
+ craniosacral massage
226
+ cranium
227
+ crohns disease
228
+ cyanosis
229
+ cyclothymia
230
+ cyst
231
+ cystic fibrosis
232
+ dandruff
233
+ dating
234
+ deafness
235
+ death
236
+ debridement
237
+ deep venous thrombosis
238
+ degenerative disk disease
239
+ delivery
240
+ dementia
241
+ dental care
242
+ dentist
243
+ depressed mood
244
+ depression
245
+ dermatographia
246
+ dermatologist
247
+ dermatology
248
+ dermatomyositis
249
+ detoxification
250
+ developmental disability
251
+ developmental psychiatry
252
+ diabetes gestational
253
+ diabetes pre-diabetes
254
+ diabetes type 1
255
+ diabetes type 2
256
+ diabetic foot ulcer
257
+ diabetic nephropathy
258
+ diabetic retinopathy
259
+ diagnostic imaging
260
+ diagnostic procedure
261
+ diaphragm
262
+ diarrhea
263
+ diet
264
+ digestive disorder
265
+ dilatation and curettage
266
+ disability
267
+ disabled
268
+ diskectomy
269
+ dislocation
270
+ dissociative disorder
271
+ diverticulitis
272
+ diverticulosis
273
+ doctor
274
+ double vision
275
+ down syndrome
276
+ dreamwork
277
+ drowning
278
+ drug
279
+ drug abuse
280
+ dry skin
281
+ dysdiadochokinesia
282
+ dysesthesia
283
+ dysfunctional uterine bleeding
284
+ dyslexia
285
+ dysmetria
286
+ dyspareunia
287
+ dysphagia
288
+ dysphasia
289
+ dyspnea
290
+ dysuria
291
+ ear
292
+ eating disorder
293
+ economic
294
+ eczema
295
+ edema
296
+ elbow
297
+ electrocardiogram
298
+ embryology
299
+ emergency medicine
300
+ emergency medicine physician
301
+ emphysema
302
+ end stage renal disease
303
+ endocarditis
304
+ endocrine system
305
+ endocrinologist
306
+ endometrial cancer
307
+ endometriosis
308
+ energy medicine
309
+ environment
310
+ epidemiology
311
+ erectile dysfunction
312
+ escherichia coli
313
+ esophageal cancer
314
+ esophageal varices
315
+ esophagus
316
+ ethnicity
317
+ exercise
318
+ eye
319
+ eyelid
320
+ face
321
+ fall
322
+ fallopian tube
323
+ family
324
+ family medicine
325
+ family physician
326
+ family practitioner
327
+ fatigue
328
+ fecal incontinence
329
+ feldenkrais method
330
+ fertility
331
+ fever
332
+ fibrocystic breast tissue
333
+ fibroid uterus
334
+ fibromyalgia
335
+ first aid
336
+ first trimester
337
+ fitness
338
+ folliculitis
339
+ food
340
+ food poisoning
341
+ foot
342
+ fracture
343
+ fragile x
344
+ friend
345
+ functional food
346
+ fungal infection
347
+ gait dysfunction
348
+ gallbladder
349
+ gambling
350
+ gammopathies
351
+ gastrectomy
352
+ gastric cancer
353
+ gastritis
354
+ gastroenterologist
355
+ gastroesophogeal reflux disease
356
+ gastrointestinal system
357
+ gender
358
+ general surgeon
359
+ generalized anxiety disorder
360
+ geneticist
361
+ genetics
362
+ genital wart
363
+ genitourinary system
364
+ geriatrician
365
+ giardia
366
+ giardia lamblia
367
+ glaucoma
368
+ glioblastoma
369
+ glomerulonephritis
370
+ gonorrhea
371
+ goodpasture's syndrome
372
+ gout
373
+ government
374
+ grief
375
+ guided imagery
376
+ gums
377
+ gynecologic oncologist
378
+ gynecologist
379
+ gynecology
380
+ hair
381
+ hair loss
382
+ hand
383
+ hashimoto's thyroiditis
384
+ hay fever
385
+ head injury
386
+ headache
387
+ heal
388
+ healing touch
389
+ health alert
390
+ healthcare delivery system
391
+ healthcare facility
392
+ healthy living
393
+ hearing impairment
394
+ heart
395
+ heart disease
396
+ heart failure
397
+ heart health
398
+ heart murmur
399
+ heart transplant
400
+ heart valve disease
401
+ hematemesis
402
+ hematochezia
403
+ hematologist
404
+ hematoma
405
+ hematuria
406
+ hemochromatosis
407
+ hemodialysis
408
+ hemophilia
409
+ hemorrhoids
410
+ hepatitis
411
+ hepatitis a
412
+ hepatitis b
413
+ hepatitis c
414
+ hepatologist
415
+ herb
416
+ hernia
417
+ herniorrhaphy
418
+ herpes
419
+ herpes simplex ulcers
420
+ herpes zoster
421
+ hiatal hernia
422
+ high risk pregnancy
423
+ hip
424
+ hoarseness
425
+ hodgkins lymphoma
426
+ holistic health
427
+ holistic nutrition
428
+ holter monitor
429
+ home
430
+ home care
431
+ homeopathy
432
+ hospitalist
433
+ housing
434
+ human immunodeficiency virus
435
+ human papillomavirus
436
+ hydrocele
437
+ hydrocephalus
438
+ hydronephrosis
439
+ hypercalcemia
440
+ hypercholesterolemia
441
+ hyperhydrosis
442
+ hyperkalemia
443
+ hypernatremia
444
+ hyperparathyroidism
445
+ hypertension
446
+ hyperthyroidism
447
+ hypertriglyceridemia
448
+ hypnotherapy
449
+ hypocalcemia
450
+ hypoglycemia
451
+ hypokalemia
452
+ hyponatremia
453
+ hypoparathyroidism
454
+ hypoplastic left heart syndrome
455
+ hypotension
456
+ hypothermia
457
+ hypothyroidism
458
+ hypovolemia
459
+ ichthyosis
460
+ ileus
461
+ immune system
462
+ immunization
463
+ immunologist
464
+ immunology
465
+ impetigo
466
+ implant
467
+ implantable cardioverter defibrillator
468
+ impulsive disorder
469
+ infant
470
+ infection
471
+ infection control
472
+ infectious disease
473
+ infectious disease specialist
474
+ infertility
475
+ influenza
476
+ influenza avian influenza
477
+ ingrown toenail
478
+ inguinal hernia
479
+ insomnia
480
+ insurance
481
+ internal medicine
482
+ internist
483
+ interstitial cystitis
484
+ interstitial nephritis
485
+ intestine
486
+ iron deficiency anemia
487
+ irritable bowel syndrome
488
+ japanese medicine
489
+ jaundice
490
+ jaw
491
+ jin shin jyutsu
492
+ jin shin-do
493
+ joint
494
+ juvenile rheumatoid arthritis
495
+ kid
496
+ kidney
497
+ kidney cancer
498
+ kidney disease
499
+ kidney failure
500
+ kidney transplant
501
+ kids
502
+ knee
503
+ knee injury
504
+ labor
505
+ lactose intolerance
506
+ laminectomy
507
+ laparoscopic procedure
508
+ laryngeal cancer
509
+ larynx
510
+ left ventricular assist device
511
+ leg
512
+ lens
513
+ leukemia
514
+ libido
515
+ lice
516
+ lichen nitidus
517
+ lichen sclerosis
518
+ lichen simplex
519
+ lifestyle
520
+ lipoma
521
+ liposuction
522
+ liver
523
+ liver cancer
524
+ liver disease
525
+ liver transplant
526
+ living well
527
+ long qt syndrome
528
+ lumpectomy
529
+ lung
530
+ lung cancer
531
+ lung disease environmental
532
+ lung disease occupational
533
+ lung transplant
534
+ lyme disease
535
+ lymphadenopathy
536
+ lymphedema
537
+ lymphoma
538
+ macrobiotics
539
+ macular degeneration
540
+ major depression
541
+ major multiple trauma
542
+ malaria
543
+ male breast cancer
544
+ malnutrition
545
+ manipulative & body based medicine
546
+ marriage
547
+ marriage & family therapist
548
+ massage
549
+ mastectomy
550
+ measles
551
+ medicaid
552
+ medical malpractice
553
+ medical oncologist
554
+ medicare
555
+ medication
556
+ medigap
557
+ meditation
558
+ medullablastoma
559
+ melanoma
560
+ memory impairment
561
+ mens health
562
+ meningioma
563
+ meningitis
564
+ menopause
565
+ menorrhagia
566
+ menses
567
+ mental health
568
+ mental retardation
569
+ metabolic disorders
570
+ metastatic brain cancer
571
+ metrorrhagia
572
+ migraine headache
573
+ mind-body medicine
574
+ mineral
575
+ mitral valve prolapse
576
+ mitral valve regurgitation
577
+ mitral valve stenosis
578
+ mole
579
+ molluscum contagiosum
580
+ mononucleosis
581
+ mood disorder
582
+ morphea
583
+ movement disorder
584
+ multiple myeloma
585
+ multiple sclerosis
586
+ muscle
587
+ musculoskeletal pain
588
+ music therapy
589
+ myasthenia gravis
590
+ myocardial infarction
591
+ myringotomy
592
+ nail
593
+ nail fungus
594
+ native american healing
595
+ natural health
596
+ naturopathy
597
+ nausea
598
+ neck
599
+ neck injury
600
+ neck pain
601
+ neonatal intensive care
602
+ neonatologist
603
+ nephritis
604
+ nephrolithiasis
605
+ nephrologist
606
+ nerve
607
+ nervous system
608
+ neurodermatitis
609
+ neurologist
610
+ neuropathic pain
611
+ neuropathy
612
+ neuropsychologist
613
+ neurosurgeon
614
+ neurosurgery
615
+ neutropenia
616
+ newborn care
617
+ non-hodgkins lymphoma
618
+ normal vaginal delivery
619
+ nose
620
+ nose bleeds
621
+ nuclear medicine specialist
622
+ nutrition
623
+ obesity
624
+ obsessive compulsive disorder
625
+ obstetrician
626
+ obstetrician gynecologist
627
+ occupational therapist
628
+ occupational therapy
629
+ oligodendroglioma
630
+ oncologist
631
+ ophthalmologist
632
+ oppositional defiant disorder
633
+ optic neuritis
634
+ oral & maxillofacial surgeon
635
+ oral contraceptive pills
636
+ oral health
637
+ oral hygiene
638
+ organ donation
639
+ organ transplantation
640
+ orthopedic surgeon
641
+ orthopnea
642
+ osteoarthritis
643
+ osteopathic medicine
644
+ osteoporosis
645
+ otitis externa
646
+ otitis media
647
+ otolaryngologist
648
+ otolaryngology
649
+ ovarian cancer
650
+ ovarian cysts
651
+ ovary
652
+ overactive bladder
653
+ overdose
654
+ pain
655
+ pain medicine specialist
656
+ palpitations
657
+ pancreas
658
+ pancreatic cancer
659
+ pancreatic transplant
660
+ pancreatitis
661
+ panic attack
662
+ papanicolaou smear
663
+ paralysis
664
+ parasite
665
+ parathyroid gland
666
+ parenting
667
+ paresthesia
668
+ parkinsons disease
669
+ patent ductus arteriosus
670
+ pathologist
671
+ pathology
672
+ patient rights
673
+ pediatrician
674
+ pediatrics
675
+ pelvic inflammatory disease
676
+ pelvic pain
677
+ pemphigoid
678
+ pemphigus
679
+ penile discharge
680
+ penile implant
681
+ penile lesions
682
+ penis
683
+ peptic ulcers
684
+ pericarditis
685
+ periorbital cellulitis
686
+ peripheral vascular disease
687
+ permanent pace maker
688
+ pernicious anemia
689
+ personality
690
+ personality disorder
691
+ perspiration
692
+ pharyngeal cancer
693
+ phlebitis
694
+ phobia
695
+ physiatrist
696
+ physical medicine and rehabilitation
697
+ physical medicine and rehabilitation specialist
698
+ physical therapist
699
+ physical therapy
700
+ physiology
701
+ pilonidal cyst
702
+ pituitary adenoma
703
+ pituitary gland
704
+ pityriasis rosea
705
+ plantar wart
706
+ plastic surgeon
707
+ plastic surgery
708
+ pleural effusion
709
+ pleurisy
710
+ pleuritis
711
+ pneumonia
712
+ pneumothorax
713
+ podiatrist
714
+ podiatry
715
+ poison ivy rash
716
+ polarity therapy
717
+ polio
718
+ polycystic kidney disease
719
+ polydipsia
720
+ polyphagia
721
+ polyuria
722
+ porphyria
723
+ postnatal care
724
+ postpartum depression
725
+ post-traumatic stress disorder
726
+ pre menstrual syndrome
727
+ pregnancy
728
+ pregnancy complication
729
+ pregnancy planning
730
+ pregnancy stages
731
+ prenatal care
732
+ pressure point therapy
733
+ pressure ulcer
734
+ prevention
735
+ preventive medicine
736
+ preventive medicine specialist
737
+ primary care physician
738
+ prostate cancer
739
+ prostate gland
740
+ prostatitis
741
+ prosthetic
742
+ protozoan
743
+ psoriasis
744
+ psychiatrist
745
+ psychoanalysis
746
+ psychologist
747
+ psychology
748
+ psychosexual disorder
749
+ psychosis
750
+ psychotherapy
751
+ psychotic disorders
752
+ public health
753
+ pulmonary edema
754
+ pulmonary embolus
755
+ pulmonary stenosis
756
+ pulmonary valve stenosis
757
+ pulmonary vascular disease
758
+ pyoderma
759
+ pyoderma gangrenosum
760
+ qi gong
761
+ radiation oncologist
762
+ radiation therapy
763
+ radiculopathy
764
+ radiologist
765
+ radiology
766
+ rash
767
+ recipe
768
+ recover
769
+ rectal bleeding
770
+ rectum
771
+ reflexology
772
+ reiki
773
+ reiter's syndrome
774
+ relationship
775
+ relaxation therapy
776
+ renal artery stenosis
777
+ renal cell carcinoma
778
+ research
779
+ resident
780
+ respiratory failure
781
+ respiratory system
782
+ retina
783
+ retirement
784
+ rett syndrome
785
+ rheumatoid arthritis
786
+ rheumatologist
787
+ rheumatology
788
+ rhinovirus
789
+ rib
790
+ rickettsia
791
+ rosacea
792
+ rotator cuff tear
793
+ sacral dimple
794
+ safety
795
+ salivary gland
796
+ sarcoma
797
+ scabies
798
+ schizophrenia
799
+ scleroderma
800
+ scoliosis
801
+ scrotum
802
+ seasonal affective disorder
803
+ second trimester
804
+ seizure disorder
805
+ sense
806
+ sepsis
807
+ severe acute respiratory syndrome
808
+ sexual addiction
809
+ sexuality
810
+ sexually transmitted disease
811
+ shamanism
812
+ shigella
813
+ shin
814
+ shock
815
+ shoulder
816
+ shoulder injury
817
+ sickle cell anemia
818
+ side effect
819
+ single
820
+ sinusitis
821
+ sjogren's syndrome
822
+ skin
823
+ skin cancer
824
+ sleep
825
+ sleep apnea
826
+ sleep disorder
827
+ small bowel obstruction
828
+ small intestine
829
+ smell
830
+ smoking
831
+ smoking cessation
832
+ social anxiety
833
+ social worker
834
+ speech
835
+ speech and language pathologist
836
+ spermacide
837
+ spermatocele
838
+ spinal cord
839
+ spinal cord abscess
840
+ spinal cord injury
841
+ spinal stenosis
842
+ spirituality
843
+ spleen
844
+ splenectomy
845
+ spontaneous abortion
846
+ sports
847
+ sports medicine
848
+ sprain
849
+ squamous cell carcinoma
850
+ sterilization
851
+ stomach
852
+ strain
853
+ strep throat
854
+ stress
855
+ stroke
856
+ substance abuse
857
+ sun burn
858
+ sun damage
859
+ supplement
860
+ supraventricular tachycardia
861
+ surgery
862
+ sweets syndrome
863
+ symptom
864
+ syncope
865
+ syphilis
866
+ systemic lupus erythematosis
867
+ tai chi
868
+ taste
869
+ tear duct
870
+ teen
871
+ temperature sensitivity
872
+ temporal arteritis
873
+ tendon rupture
874
+ tendonitis
875
+ tension headache
876
+ testicular cancer
877
+ testicular mass
878
+ testicular pain
879
+ testicular torsion
880
+ testis
881
+ tetralogy of fallot
882
+ thalassemia
883
+ therapeutic touch
884
+ therapy
885
+ third trimester
886
+ thoracic surgeon
887
+ thoracic surgery
888
+ throat
889
+ thrombocytopenia
890
+ thyroid
891
+ thyroid cancer
892
+ tibetan medicine
893
+ tilt table test
894
+ tinea corpora
895
+ tinea pedis
896
+ tinea versicolor
897
+ tinnitus
898
+ tobacco
899
+ toe
900
+ tongue
901
+ tonsillectomy
902
+ tonsillitis
903
+ total hip arthroplasty
904
+ total knee arthroplasty
905
+ tourettes syndrome
906
+ toxic chemical
907
+ toxic megacolon
908
+ toxicology
909
+ tracheostomy
910
+ traditional chinese medicine
911
+ trager approach
912
+ trans urethral radical prostatectomy
913
+ transplant surgeon
914
+ transportation
915
+ transposition of the great arteries
916
+ trauma
917
+ traumatic brain injury
918
+ traumatic injury
919
+ travel
920
+ trichomoniasis
921
+ trigeminal neuralgia
922
+ truncus arteriosus
923
+ tuberculosis
924
+ tubular and cystic kidney disorders
925
+ ulcer
926
+ ulcerative colitis
927
+ upper respiratory tract infection
928
+ ureters
929
+ urethra
930
+ urethral cancer
931
+ urinary incontinence
932
+ urinary tract infection
933
+ urination
934
+ urologist
935
+ urology
936
+ urticaria
937
+ uterine cancer
938
+ uterus
939
+ vaccines
940
+ vagina
941
+ vaginal discharge
942
+ vaginal itching
943
+ vaginal yeast infection
944
+ varicella zoster
945
+ varicocele
946
+ varicose vein
947
+ vascular surgeon
948
+ vascular surgery
949
+ ventricular fibrillation
950
+ ventricular septal defect
951
+ ventricular tachycardia
952
+ vertigo
953
+ viral gastroenteritis
954
+ viral infection
955
+ virus
956
+ vision
957
+ visual impairment
958
+ visualization
959
+ vitamin
960
+ vitiligo
961
+ vomiting
962
+ vulva
963
+ weakness
964
+ weight management
965
+ west nile virus
966
+ wheezing
967
+ whole medical systems
968
+ wilms tumor
969
+ womens health
970
+ work
971
+ work relationships
972
+ wound
973
+ wrist
974
+ xerosis
975
+ x-ray
976
+ yoga