-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGARD_qdecomp.master.03.qtd.xml
7321 lines (7321 loc) · 466 KB
/
GARD_qdecomp.master.03.qtd.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<QuestionAnnotationFile>
<Request docID="GARD_Q_0201">
<Text>How can I cure my nail of anonychia congenita and get a fresh, good nail?</Text>
<Focus start="26" len="19" />
<Question id="T1" start="0" len="73">
<SubQuestion qt="Management" attrs="Error">How can I cure my nail of anonychia congenita and get a fresh, good nail?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0202">
<Text>How can I find a physician with expertise in ALPS to see my adult son?</Text>
<Focus start="45" len="4" />
<Question id="T1" start="0" len="70">
<SubQuestion qt="PersonOrg">How can I find a physician with expertise in ALPS to see my adult son?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0203">
<Text>How can I find information on treatment for polyarteritis nodosa? Are there any dietary supplements or other alternative therapies that have been used to treat polyarteritis nodosa?</Text>
<Focus start="44" len="20" />
<Question id="T1" start="0" len="65">
<SubQuestion qt="Management">How can I find information on treatment for polyarteritis nodosa?</SubQuestion>
</Question>
<Question id="T2" start="66" len="115">
<SubQuestion qt="Management">Are there any dietary supplements that have been used to treat polyarteritis nodosa?</SubQuestion>
<SubQuestion qt="Management">Are there any other alternative therapies that have been used to treat polyarteritis nodosa?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0204">
<Text>How can I find other families with children with Blount disease?</Text>
<Focus start="49" len="14" />
<Question id="T1" start="0" len="64">
<SubQuestion qt="PersonOrg">How can I find other families with children with Blount disease?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0205">
<Text>How can I find out more about the status of research on inflammatory myfibroblastic tumor?</Text>
<Focus start="56" len="33" />
<Question id="T1" start="0" len="90">
<SubQuestion qt="Information" attrs="Research">How can I find out more about the status of research on inflammatory myfibroblastic tumor?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0206">
<Text>How can I find research or treatment studies on trichotillomania? Our teenage daughter has suffered from the condition for many years and we have not found an effective treatment.</Text>
<Focus start="48" len="16" />
<Question id="T1" start="0" len="65">
<SubQuestion qt="Information" attrs="Research">How can I find research studies on trichotillomania?</SubQuestion>
<SubQuestion qt="Management" attrs="Research">How can I find treatment studies on trichotillomania?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0207">
<Text>How can I learn about research involving myotonia congenita? Is gene therapy available for myotonia congenita?</Text>
<Focus start="41" len="18" />
<Question id="T1" start="0" len="60">
<SubQuestion qt="Information" attrs="Research">How can I learn about research involving myotonia congenita?</SubQuestion>
</Question>
<Question id="T3" start="61" len="49">
<SubQuestion qt="Management">Is gene therapy available for myotonia congenita?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0208">
<Text>How can I learn about research involving primary ciliary dyskinesia and Kartagener syndrome?</Text>
<Focus start="41" len="26" />
<Focus start="72" len="19" />
<Question id="T1" start="0" len="92">
<SubQuestion qt="Information" attrs="Research">How can I learn about research involving primary ciliary dyskinesia?</SubQuestion>
<SubQuestion qt="Information" attrs="Research">How can I learn about research involving Kartagener syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0209">
<Text>How can I learn about research opportunities at the National Institutes of Health (NIH) that are enrolling children with Proteus syndrome?</Text>
<Focus start="121" len="16" />
<Question id="T1" start="0" len="138">
<SubQuestion qt="PersonOrg" attrs="Research">How can I learn about research opportunities at the National Institutes of Health (NIH) that are enrolling children with Proteus syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0210">
<Text>How can I learn more about learning disabilities in women and girls with Turner syndrome?</Text>
<Focus start="73" len="15" />
<Question id="T1" start="0" len="89">
<SubQuestion qt="Information">How can I learn more about learning disabilities in women with Turner syndrome?</SubQuestion>
<SubQuestion qt="Information">How can I learn more about learning disabilities in girls with Turner syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0211">
<Text>How can I learn more about the pull-through operation for Hirschsprung disease? I am considering this procedure for my son.</Text>
<Focus start="58" len="20" />
<Question id="T1" start="0" len="79">
<SubQuestion qt="Management">How can I learn more about the pull-through operation for Hirschsprung disease?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0212">
<Text>How can I meet other families with children with Russell-Silver syndrome? My granddaughter was recently diagnosed with this condition. I want to know how I can best support and help her as she grows.</Text>
<Focus start="49" len="23" />
<Question id="T1" start="0" len="73">
<SubQuestion qt="PersonOrg">How can I meet other families with children with Russell-Silver syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0213">
<Text>How can I obtain information about treatment options for familial idiopathic basal ganglia calcification (FIBGC)? Is there any research being done to find a treatment or cure for this condition?</Text>
<Focus start="57" len="55" />
<Question id="T1" start="0" len="113">
<SubQuestion qt="Management">How can I obtain information about treatment options for familial idiopathic basal ganglia calcification (FIBGC)?</SubQuestion>
</Question>
<Question id="T3" start="114" len="80">
<SubQuestion qt="Management" attrs="Research">Is there any research being done to find a treatment for this condition?</SubQuestion>
<SubQuestion qt="Management" attrs="Research">Is there any research being done to find a cure for this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0214">
<Text>How can I treat fibromyalgia? How can I reduce the pain associated with this condition?</Text>
<Focus start="16" len="12" />
<Question id="T1" start="0" len="29">
<SubQuestion qt="Management">How can I treat fibromyalgia?</SubQuestion>
</Question>
<Question id="T3" start="30" len="57">
<SubQuestion qt="Management">How can I reduce the pain associated with this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0215">
<Text>How can one anticipate the progression of their disorder, as in how bad their condition is? How does one know what type of retinitis pigmentosa they have if their condition is inherited, developed in childhood, and their parents don't have it?</Text>
<Focus start="123" len="20" />
<Question id="T1" start="0" len="91">
<SubQuestion qt="Prognosis">How can one anticipate the progression of their disorder, as in how bad their condition is?</SubQuestion>
</Question>
<Question id="T2" start="92" len="151">
<SubQuestion qt="Information">How does one know what type of retinitis pigmentosa they have if their condition is inherited, developed in childhood, and their parents don't have it?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0216">
<Text>How can you detect Freeman Sheldon syndrome?</Text>
<Focus start="19" len="24" />
<Question id="T1" start="0" len="44">
<SubQuestion qt="Diagnosis">How can you detect Freeman Sheldon syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0217">
<Text>How common is congenital anosmia? Is there a cure or any treatment?</Text>
<Focus start="14" len="18" />
<Question id="T1" start="0" len="33">
<SubQuestion qt="Susceptibility">How common is congenital anosmia?</SubQuestion>
</Question>
<Question id="T2" start="35" len="33">
<SubQuestion qt="Management">Is there a cure?</SubQuestion>
<SubQuestion qt="Management">Is there any treatment?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0218">
<Text>How common is corpus callosum agenesis? How many people in the United States have this diagnosis? What is the average lifespan for people with this diagnosis?</Text>
<Focus start="14" len="24" />
<Question id="T1" start="0" len="39">
<SubQuestion qt="Susceptibility">How common is corpus callosum agenesis?</SubQuestion>
</Question>
<Question id="T3" start="40" len="57">
<SubQuestion qt="Susceptibility">How many people in the United States have this diagnosis?</SubQuestion>
</Question>
<Question id="T4" start="98" len="60">
<SubQuestion qt="Prognosis">What is the average lifespan for people with this diagnosis?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0219">
<Text>How common is Kohler disease? I keep reading that it is rare but can't find stats on just how rare it is.</Text>
<Focus start="14" len="14" />
<Question id="T1" start="0" len="29">
<SubQuestion qt="Susceptibility">How common is Kohler disease?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0220">
<Text>How common is lactate dehydrogenase A deficiency and how might this condition be managed (for instance, should complex carbohydrates be avoided)?</Text>
<Focus start="14" len="34" />
<Question id="T1" start="0" len="48">
<SubQuestion qt="Susceptibility">How common is lactate dehydrogenase A deficiency?</SubQuestion>
</Question>
<Question id="T3" start="49" len="96">
<SubQuestion qt="Management">How might this condition be managed?</SubQuestion>
<SubQuestion qt="Management">How might this condition be managed (for instance, should complex carbohydrates be avoided)?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0221">
<Text>How common is Sertoli cell-only syndrome? Are there any studies regarding this condition? I was diagnosed recently and I can't find much information about it.</Text>
<Focus start="14" len="26" />
<Question id="T1" start="0" len="41">
<SubQuestion qt="Susceptibility">How common is Sertoli cell-only syndrome?</SubQuestion>
</Question>
<Question id="T2" start="42" len="47">
<SubQuestion qt="Information" attrs="Research">Are there any studies regarding this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0222">
<Text>How common is spitz nevi in children near 7 years-old?</Text>
<Focus start="14" len="10" />
<Question id="T1" start="0" len="54">
<SubQuestion qt="Susceptibility">How common is spitz nevi in children near 7 years-old?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0223">
<Text>How common or rare is this condition? Can it be linked to prematurity as a cause?</Text>
<Focus start="22" len="14" />
<Question id="T1" start="0" len="37">
<SubQuestion qt="Susceptibility">How common or rare is this condition?</SubQuestion>
</Question>
<Question id="T2" start="38" len="43">
<SubQuestion qt="OtherEffect">Can it be linked to prematurity as a cause?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0224">
<Text>How did Knobloch syndrome get its name? Is severe myopia one of the main symptoms?</Text>
<Focus start="8" len="17" />
<Question id="T1" start="0" len="39">
<SubQuestion qt="Other">How did Knobloch syndrome get its name?</SubQuestion>
</Question>
<Question id="T2" start="40" len="42">
<SubQuestion qt="Manifestation">Is severe myopia one of the main symptoms?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0225">
<Text>How do doctors test for erythromelalgia? I have flare ups on my hands, feet, and face.</Text>
<Focus start="24" len="15" />
<Question id="T1" start="0" len="40">
<SubQuestion qt="Diagnosis">How do doctors test for erythromelalgia?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0226">
<Text>How does androgen insensitivity syndrome affect gender identity?</Text>
<Focus start="9" len="31" />
<Question id="T1" start="0" len="64">
<SubQuestion qt="OtherEffect">How does androgen insensitivity syndrome affect gender identity?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0227">
<Text>How does a person contract FUMHD? How is a person tested for FUMHD? If it is genetic, can other children of the same parents be tested for it? How can doctors ensure they have not wrongly diagnosed someone that has FUMHD (in my loved one FUMHD was confused with chicken pox)? At what point does the disease stop being PLEVA and become FUMHD? What are the signs and symptoms that someone has FUMHD? How do doctors determine whether or not the treatments being administered for FUMD are working? At what point should Methotrexate be used to treat FUMHD? When should MRI's and X-rays be used to look for disease affecting the interior?</Text>
<Focus start="27" len="5" />
<Question id="T1" start="0" len="33">
<SubQuestion qt="Susceptibility">How does a person contract FUMHD?</SubQuestion>
</Question>
<Question id="T2" start="34" len="33">
<SubQuestion qt="Diagnosis">How is a person tested for FUMHD?</SubQuestion>
</Question>
<Question id="T3" start="68" len="74">
<SubQuestion qt="Diagnosis">If it is genetic, can other children of the same parents be tested for it?</SubQuestion>
</Question>
<Question id="T4" start="143" len="132">
<SubQuestion qt="Diagnosis">How can doctors ensure they have not wrongly diagnosed someone that has FUMHD (in my loved one FUMHD was confused with chicken pox)?</SubQuestion>
</Question>
<Question id="T5" start="276" len="65">
<SubQuestion qt="Other">At what point does the disease stop being PLEVA and become FUMHD?</SubQuestion>
</Question>
<Question id="T6" start="342" len="55">
<SubQuestion qt="Manifestation">What are the signs that someone has FUMHD?</SubQuestion>
<SubQuestion qt="Manifestation">What are the symptoms that someone has FUMHD?</SubQuestion>
</Question>
<Question id="T7" start="398" len="95">
<SubQuestion qt="Management">How do doctors determine whether or not the treatments being administered for FUMD are working?</SubQuestion>
</Question>
<Question id="T8" start="494" len="57">
<SubQuestion qt="Management">At what point should Methotrexate be used to treat FUMHD?</SubQuestion>
</Question>
<Question id="T9" start="552" len="80">
<SubQuestion qt="Diagnosis">When should MRI's be used to look for disease affecting the interior?</SubQuestion>
<SubQuestion qt="Diagnosis">When should X-rays be used to look for disease affecting the interior?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0228">
<Text>How does cardiofaciocutaneous syndrome affect an individual's livelihood?</Text>
<Focus start="9" len="29" />
<Question id="T1" start="0" len="73">
<SubQuestion qt="Prognosis">How does cardiofaciocutaneous syndrome affect an individual's livelihood?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0229">
<Text>How does diet affect lichen sclerosus? Are there certain foods that should be avoided?</Text>
<Focus start="21" len="16" />
<Question id="T1" start="0" len="38">
<SubQuestion qt="Management">How does diet affect lichen sclerosus?</SubQuestion>
</Question>
<Question id="T2" start="40" len="47">
<SubQuestion qt="Management">Are there certain foods that should be avoided?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0230">
<Text>How does Klippel Trenaunay syndrome (KTS) occur? How, if it is not inherited, does it come about? Which gene is associated with it?</Text>
<Focus start="9" len="32" />
<Question id="T1" start="0" len="48">
<SubQuestion qt="Susceptibility">How does Klippel Trenaunay syndrome (KTS) occur?</SubQuestion>
</Question>
<Question id="T2" start="49" len="48">
<SubQuestion qt="Susceptibility">How, if it is not inherited, does it come about?</SubQuestion>
</Question>
<Question id="T3" start="98" len="33">
<SubQuestion qt="Cause">Which gene is associated with it?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0231">
<Text>How does one get tested for pityriasis lichenoides chronica?</Text>
<Focus start="28" len="31" />
<Question id="T1" start="0" len="60">
<SubQuestion qt="Diagnosis">How does one get tested for pityriasis lichenoides chronica?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0232">
<Text>How does Sturge-Weber syndrome affect adults? I'm a 43-year-old person who has this disorder and had my birthmark removed at age 4.</Text>
<Focus start="9" len="21" />
<Question id="T1" start="0" len="45">
<SubQuestion qt="OtherEffect">How does Sturge-Weber syndrome affect adults?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0233">
<Text>How does this syndrome begin in a lineage? Is the TP53 gene mutation a sudden and spontaneous mutation at conception? Does it have environmental causes? Is it a gradual generational erosion of gene integrity finally resulting in the full mutation that causes this syndrome? Are some TP53 genes mutated worse than others? We are trying to trace this through our family tree.</Text>
<Focus start="50" len="18" />
<Question id="T1" start="0" len="42">
<SubQuestion qt="Susceptibility">How does this syndrome begin in a lineage?</SubQuestion>
</Question>
<Question id="T2" start="43" len="74">
<SubQuestion qt="Susceptibility">Is the TP53 gene mutation a sudden and spontaneous mutation at conception?</SubQuestion>
</Question>
<Question id="T3" start="118" len="34">
<SubQuestion qt="Cause">Does it have environmental causes?</SubQuestion>
</Question>
<Question id="T4" start="153" len="120">
<SubQuestion qt="Cause">Is it a gradual generational erosion of gene integrity finally resulting in the full mutation that causes this syndrome?</SubQuestion>
</Question>
<Question id="T5" start="274" len="46">
<SubQuestion qt="NotDisease">Are some TP53 genes mutated worse than others?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0234">
<Text>How do I get rid of MYH 9 related thrombocytopenia?</Text>
<Focus start="20" len="30" />
<Question id="T1" start="0" len="51">
<SubQuestion qt="Management">How do I get rid of MYH 9 related thrombocytopenia?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0235">
<Text>How do people inherit pseudoachondroplasia?</Text>
<Focus start="22" len="20" />
<Question id="T1" start="0" len="43">
<SubQuestion qt="Susceptibility">How do people inherit pseudoachondroplasia?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0236">
<Text>How is amyloidosis diagnosed in those with familial Mediterranean fever? How is the effectiveness of colchicine monitored?</Text>
<Focus start="7" len="11" />
<Focus start="43" len="28" />
<Question id="T1" start="0" len="72">
<SubQuestion qt="Diagnosis">How is amyloidosis diagnosed in those with familial Mediterranean fever?</SubQuestion>
</Question>
<Question id="T2" start="73" len="49">
<SubQuestion qt="Management">How is the effectiveness of colchicine monitored?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0237">
<Text>How is diabetic mastopathy diagnosed and treated?</Text>
<Focus start="7" len="19" />
<Question id="T1" start="0" len="49">
<SubQuestion qt="Diagnosis">How is diabetic mastopathy diagnosed?</SubQuestion>
<SubQuestion qt="Management">How is diabetic mastopathy treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0238">
<Text>How is fibrosing mediastinitis treated? How can I learn more about research?</Text>
<Focus start="7" len="23" />
<Question id="T1" start="0" len="39">
<SubQuestion qt="Management">How is fibrosing mediastinitis treated?</SubQuestion>
</Question>
<Question id="T2" start="40" len="36">
<SubQuestion qt="Information" attrs="Research">How can I learn more about research?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0239">
<Text>How is Fox-Fordyce disease treated? Are there over-the-counter drugs that will help? What can I do for maintanence?</Text>
<Focus start="7" len="19" />
<Question id="T2" start="0" len="35">
<SubQuestion qt="Management">How is Fox-Fordyce disease treated?</SubQuestion>
</Question>
<Question id="T4" start="36" len="48">
<SubQuestion qt="Management">Are there over-the-counter drugs that will help?</SubQuestion>
</Question>
<Question id="T1" start="85" len="30">
<SubQuestion qt="Management">What can I do for maintanence?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0240">
<Text>How is gene therapy being used to treat conditions like retinitis pigmentosa? Does gene therapy involve transplanting healthy human eye cells in the diseased retina? How can I learn more about clinical trials and research studies investigating new treatments for retinitis pigmentosa?</Text>
<Focus start="56" len="20" />
<Question id="T1" start="0" len="77">
<SubQuestion qt="Management">How is gene therapy being used to treat conditions like retinitis pigmentosa?</SubQuestion>
</Question>
<Question id="T3" start="78" len="87">
<SubQuestion qt="Management">Does gene therapy involve transplanting healthy human eye cells in the diseased retina?</SubQuestion>
</Question>
<Question id="T4" start="166" len="118">
<SubQuestion qt="Management" attrs="Research">How can I learn more about clinical trials investigating new treatments for retinitis pigmentosa?</SubQuestion>
<SubQuestion qt="Management" attrs="Research">How can I learn more about research studies investigating new treatments for retinitis pigmentosa?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0241">
<Text>How is immunodysregulation polyendocrinopathy enteropathy x-linked (IPEX) found in a woman's body? And also how rare is this disease?</Text>
<Focus start="7" len="66" />
<Question id="T1" start="0" len="98">
<SubQuestion qt="Diagnosis">How is immunodysregulation polyendocrinopathy enteropathy x-linked (IPEX) found in a woman's body?</SubQuestion>
</Question>
<Question id="T2" start="100" len="34">
<SubQuestion qt="Susceptibility">How rare is this disease?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0242">
<Text>How is N-acetylglutamate synthase deficiency inherited? Are there any new research studies enrolling people with N-acetylglutamate synthase deficiency? How can I get my loved one seen at the National Institutes of Health?</Text>
<Focus start="7" len="37" />
<Question id="T2" start="0" len="55">
<SubQuestion qt="Susceptibility">How is N-acetylglutamate synthase deficiency inherited?</SubQuestion>
</Question>
<Question id="T4" start="56" len="95">
<SubQuestion qt="PersonOrg" attrs="Research">Are there any new research studies enrolling people with N-acetylglutamate synthase deficiency?</SubQuestion>
</Question>
<Question id="T1" start="152" len="69">
<SubQuestion qt="PersonOrg" attrs="Research">How can I get my loved one seen at the National Institutes of Health?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0243">
<Text>How is neurofibromatosis inherited?</Text>
<Focus start="7" len="17" />
<Question id="T1" start="0" len="35">
<SubQuestion qt="Susceptibility">How is neurofibromatosis inherited?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0244">
<Text>How is optic neuritis diagnosed?</Text>
<Focus start="7" len="14" />
<Question id="T1" start="0" len="32">
<SubQuestion qt="Diagnosis">How is optic neuritis diagnosed?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0245">
<Text>How is orotic aciduria type I diagnosed? How is it treated?</Text>
<Focus start="7" len="22" />
<Question id="T1" start="0" len="40">
<SubQuestion qt="Diagnosis">How is orotic aciduria type I diagnosed?</SubQuestion>
</Question>
<Question id="T3" start="42" len="18">
<SubQuestion qt="Management">How is it treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0246">
<Text>How is pseudotumor cerebri treated? What is the prognosis for patients with this condition?</Text>
<Focus start="7" len="19" />
<Question id="T1" start="0" len="35">
<SubQuestion qt="Management">How is pseudotumor cerebri treated?</SubQuestion>
</Question>
<Question id="T2" start="36" len="55">
<SubQuestion qt="Prognosis">What is the prognosis for patients with this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0247">
<Text>How is Rotor syndrome diagnosed?</Text>
<Focus start="7" len="14" />
<Question id="T1" start="0" len="32">
<SubQuestion qt="Diagnosis">How is Rotor syndrome diagnosed?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0248">
<Text>How is the diagnosis of Shwachman-Diamond syndrome confirmed?</Text>
<Focus start="24" len="26" />
<Question id="T1" start="0" len="61">
<SubQuestion qt="Diagnosis">How is the diagnosis of Shwachman-Diamond syndrome confirmed?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0249">
<Text>How is trigeminal neuralgia treated? What is the long-term outlook for individuals with this condition?</Text>
<Focus start="7" len="20" />
<Question id="T1" start="0" len="36">
<SubQuestion qt="Management">How is trigeminal neuralgia treated?</SubQuestion>
</Question>
<Question id="T2" start="37" len="66">
<SubQuestion qt="Prognosis">What is the long-term outlook for individuals with this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0250">
<Text>How is yellow nail syndrome treated? Can it be treated or not?</Text>
<Focus start="7" len="20" />
<Question id="T1" start="0" len="36">
<SubQuestion qt="Management">How is yellow nail syndrome treated?</SubQuestion>
</Question>
<Question id="T3" start="37" len="25">
<SubQuestion qt="Management">Can it be treated or not?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0251">
<Text>How many cases of polyembryoma have been reported worldwide? What is the prognosis for polyembryoma? How might this condition be treated? What causes polyembryoma?</Text>
<Focus start="18" len="12" />
<Question id="T1" start="0" len="60">
<SubQuestion qt="Susceptibility">How many cases of polyembryoma have been reported worldwide?</SubQuestion>
</Question>
<Question id="T2" start="62" len="39">
<SubQuestion qt="Prognosis">What is the prognosis for polyembryoma?</SubQuestion>
</Question>
<Question id="T4" start="103" len="36">
<SubQuestion qt="Management">How might this condition be treated?</SubQuestion>
</Question>
<Question id="T5" start="141" len="25">
<SubQuestion qt="Cause">What causes polyembryoma?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0252">
<Text>How many cases of schizencephaly have been reported in Florida, and worldwide? Will my child always have develomental delay, and will this get worse with every seizure? What is the prognosis for this condition?</Text>
<Focus start="18" len="14" />
<Question id="T1" start="0" len="78">
<SubQuestion qt="Susceptibility">How many cases of schizencephaly have been reported in Florida?</SubQuestion>
<SubQuestion qt="Susceptibility">How many cases of schizencephaly have been reported in worldwide?</SubQuestion>
</Question>
<Question id="T2" start="79" len="45">
<SubQuestion qt="Prognosis">Will my child always have develomental delay?</SubQuestion>
</Question>
<Question id="T3" start="125" len="43">
<SubQuestion qt="Prognosis">Will this get worse with every seizure?</SubQuestion>
</Question>
<Question id="T4" start="169" len="41">
<SubQuestion qt="Prognosis">What is the prognosis for this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0253">
<Text>How many individuals in the United States have been diagnosed with hereditary mucoepithelial dysplasia (HMD)? Is there any research on HMD in progress? Are there any HMD support groups?</Text>
<Focus start="67" len="41" />
<Question id="T1" start="0" len="109">
<SubQuestion qt="Susceptibility">How many individuals in the United States have been diagnosed with hereditary mucoepithelial dysplasia (HMD)?</SubQuestion>
</Question>
<Question id="T3" start="110" len="41">
<SubQuestion qt="Information" attrs="Research">Is there any research on HMD in progress?</SubQuestion>
</Question>
<Question id="T4" start="152" len="33">
<SubQuestion qt="PersonOrg">Are there any HMD support groups?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0254">
<Text>How many people are affected by Alexander disease?</Text>
<Focus start="32" len="17" />
<Question id="T1" start="0" len="50">
<SubQuestion qt="Susceptibility">How many people are affected by Alexander disease?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0255">
<Text>How many people are affected by dysfibrinogenemia?</Text>
<Focus start="32" len="17" />
<Question id="T1" start="0" len="50">
<SubQuestion qt="Susceptibility">How many people are affected by dysfibrinogenemia?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0256">
<Text>How many people are diagnosed with myostatin-related muscle hypertrophy?</Text>
<Focus start="35" len="36" />
<Question id="T1" start="0" len="72">
<SubQuestion qt="Susceptibility">How many people are diagnosed with myostatin-related muscle hypertrophy?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0257">
<Text>How many people have acute promyelocytic leukemia?</Text>
<Focus start="21" len="28" />
<Question id="T1" start="0" len="50">
<SubQuestion qt="Susceptibility">How many people have acute promyelocytic leukemia?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0258">
<Text>How many people have been diagnosed with Christianson syndrome?</Text>
<Focus start="41" len="21" />
<Question id="T1" start="0" len="63">
<SubQuestion qt="Susceptibility">How many people have been diagnosed with Christianson syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0259">
<Text>How many people in the world have potassium aggravated myotonia?</Text>
<Focus start="34" len="29" />
<Question id="T1" start="0" len="64">
<SubQuestion qt="Susceptibility">How many people in the world have potassium aggravated myotonia?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0260">
<Text>How many types of pachyonychia congenita are there? How are they caused? Is the condition more likely to occur in certain groups of people? How many individuals have this condition and what is the mortality rate?</Text>
<Focus start="18" len="22" />
<Question id="T1" start="0" len="51">
<SubQuestion qt="Information">How many types of pachyonychia congenita are there?</SubQuestion>
</Question>
<Question id="T3" start="52" len="20">
<SubQuestion qt="Cause">How are they caused?</SubQuestion>
</Question>
<Question id="T4" start="73" len="66">
<SubQuestion qt="Susceptibility">Is the condition more likely to occur in certain groups of people?</SubQuestion>
</Question>
<Question id="T5" start="140" len="40">
<SubQuestion qt="Susceptibility">How many individuals have this condition?</SubQuestion>
</Question>
<Question id="T6" start="181" len="31">
<SubQuestion qt="Prognosis">What is the mortality rate?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0261">
<Text>How might ataxia telangiectasia affect a person's ability to move and speak?</Text>
<Focus start="10" len="21" />
<Question id="T1" start="0" len="76">
<SubQuestion qt="Prognosis">How might ataxia telangiectasia affect a person's ability to move?</SubQuestion>
<SubQuestion qt="Prognosis">How might ataxia telangiectasia affect a person's ability to speak?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0262">
<Text>How might Brown-Sequard syndrome be treated?</Text>
<Focus start="10" len="22" />
<Question id="T1" start="0" len="44">
<SubQuestion qt="Management">How might Brown-Sequard syndrome be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0263">
<Text>How might Brown syndrome be treated?</Text>
<Focus start="10" len="14" />
<Question id="T1" start="0" len="36">
<SubQuestion qt="Management">How might Brown syndrome be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0264">
<Text>How might Crohn's disease be treated?</Text>
<Focus start="10" len="15" />
<Question id="T1" start="0" len="37">
<SubQuestion qt="Management">How might Crohn's disease be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0265">
<Text>How might Eagle syndrome be treated?</Text>
<Focus start="10" len="14" />
<Question id="T1" start="0" len="36">
<SubQuestion qt="Management">How might Eagle syndrome be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0266">
<Text>How might Maffucci syndrome be treated?</Text>
<Focus start="10" len="17" />
<Question id="T1" start="0" len="39">
<SubQuestion qt="Management">How might Maffucci syndrome be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0267">
<Text>How might multicentric Castleman's disease be treated?</Text>
<Focus start="10" len="32" />
<Question id="T1" start="0" len="54">
<SubQuestion qt="Management">How might multicentric Castleman's disease be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0268">
<Text>How might neuronal intranuclear inclusion disease affect a person over time?</Text>
<Focus start="10" len="39" />
<Question id="T1" start="0" len="76">
<SubQuestion qt="Prognosis">How might neuronal intranuclear inclusion disease affect a person over time?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0269">
<Text>How might pain caused by transverse myelitis be treated?</Text>
<Focus start="25" len="19" />
<Question id="T1" start="0" len="56">
<SubQuestion qt="Management">How might pain caused by transverse myelitis be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0270">
<Text>How might scleroderma be treated?</Text>
<Focus start="10" len="11" />
<Question id="T1" start="0" len="33">
<SubQuestion qt="Management">How might scleroderma be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0271">
<Text>How might tyrosinemia type 2 be treated?</Text>
<Focus start="10" len="18" />
<Question id="T1" start="0" len="40">
<SubQuestion qt="Management">How might tyrosinemia type 2 be treated?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0272">
<Text>How quickly do desmoid tumors typically progress? Is five months a significant period of time with regard to the growth of such a tumor?</Text>
<Focus start="15" len="14" />
<Question id="T1" start="0" len="49">
<SubQuestion qt="Prognosis">How quickly do desmoid tumors typically progress?</SubQuestion>
</Question>
<Question id="T3" start="51" len="86">
<SubQuestion qt="Prognosis">Is five months a significant period of time with regard to the growth of such a tumor?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0273">
<Text>How rare is adult-onset vitelliform macular dystrophy?</Text>
<Focus start="12" len="41" />
<Question id="T1" start="0" len="54">
<SubQuestion qt="Susceptibility">How rare is adult-onset vitelliform macular dystrophy?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0274">
<Text>How rare is autoimmune polyglandular syndrome type 1?</Text>
<Focus start="12" len="40" />
<Question id="T1" start="0" len="53">
<SubQuestion qt="Susceptibility">How rare is autoimmune polyglandular syndrome type 1?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0275">
<Text>How rare is Bannayan-Riley-Ruvalcaba syndrome? Can affected individuals die from this condition?</Text>
<Focus start="12" len="33" />
<Question id="T1" start="0" len="46">
<SubQuestion qt="Susceptibility">How rare is Bannayan-Riley-Ruvalcaba syndrome?</SubQuestion>
</Question>
<Question id="T2" start="48" len="49">
<SubQuestion qt="Prognosis">Can affected individuals die from this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0276">
<Text>How rare is Barakat syndrome?</Text>
<Focus start="12" len="16" />
<Question id="T1" start="0" len="29">
<SubQuestion qt="Susceptibility">How rare is Barakat syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0277">
<Text>How rare is Eagle syndrome? Is surgery the best treatment? What kind of doctor would perform this surgery?</Text>
<Focus start="12" len="14" />
<Question id="T1" start="0" len="27">
<SubQuestion qt="Susceptibility">How rare is Eagle syndrome?</SubQuestion>
</Question>
<Question id="T2" start="29" len="30">
<SubQuestion qt="Management">Is surgery the best treatment?</SubQuestion>
</Question>
<Question id="T3" start="60" len="47">
<SubQuestion qt="PersonOrg">What kind of doctor would perform this surgery?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0278">
<Text>How rare is hypopituitarism?</Text>
<Focus start="12" len="15" />
<Question id="T1" start="0" len="28">
<SubQuestion qt="Susceptibility">How rare is hypopituitarism?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0279">
<Text>How rare is multiple endocrine neoplasia type 2A? How is this condition inherited?</Text>
<Focus start="12" len="36" />
<Question id="T1" start="0" len="49">
<SubQuestion qt="Susceptibility">How rare is multiple endocrine neoplasia type 2A?</SubQuestion>
</Question>
<Question id="T3" start="50" len="32">
<SubQuestion qt="Susceptibility">How is this condition inherited?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0280">
<Text>How rare is Pelizaeus-Merzbacher disease?</Text>
<Focus start="12" len="28" />
<Question id="T1" start="0" len="41">
<SubQuestion qt="Susceptibility">How rare is Pelizaeus-Merzbacher disease?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0281">
<Text>How rare is retinochoroidal coloboma? What percentage of people with ocular coloboma have retinochoroidal?</Text>
<Focus start="12" len="24" />
<Question id="T1" start="0" len="37">
<SubQuestion qt="Susceptibility">How rare is retinochoroidal coloboma?</SubQuestion>
</Question>
<Question id="T3" start="38" len="68">
<SubQuestion qt="Susceptibility">What percentage of people with ocular coloboma have retinochoroidal?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0282">
<Text>How rare is this disease? How many Americans are diagnosed with it?</Text>
<Focus start="12" len="12" />
<Question id="T1" start="0" len="25">
<SubQuestion qt="Susceptibility">How rare is this disease?</SubQuestion>
</Question>
<Question id="T2" start="26" len="41">
<SubQuestion qt="Susceptibility">How many Americans are diagnosed with it?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0283">
<Text>How should patients with Birt Hogg Dube syndrome be monitored (i.e. for kidney tumors)?</Text>
<Focus start="25" len="23" />
<Question id="T1" start="0" len="87">
<SubQuestion qt="Management">How should patients with Birt Hogg Dube syndrome be monitored (i.e. for kidney tumors)?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0284">
<Text>How soon after birth can this be diagnosed? When is it known how severely an individual is affected? Is it possible to live a normal life?</Text>
<Focus start="25" len="4" />
<Question id="T1" start="0" len="43">
<SubQuestion qt="Diagnosis">How soon after birth can this be diagnosed?</SubQuestion>
</Question>
<Question id="T2" start="44" len="56">
<SubQuestion qt="Prognosis">When is it known how severely an individual is affected?</SubQuestion>
</Question>
<Question id="T3" start="101" len="37">
<SubQuestion qt="Prognosis">Is it possible to live a normal life?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0285">
<Text>How was hepatic encephalopathy discovered, and who first described it? Is there a chance of passing this condition along to my children?</Text>
<Focus start="8" len="22" />
<Question id="T1" start="0" len="42">
<SubQuestion qt="Other">How was hepatic encephalopathy discovered?</SubQuestion>
</Question>
<Question id="T2" start="43" len="27">
<SubQuestion qt="Other">Who first described it?</SubQuestion>
</Question>
<Question id="T3" start="71" len="65">
<SubQuestion qt="Susceptibility">Is there a chance of passing this condition along to my children?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0286">
<Text>Hypolipoproteinemia runs in my family. I can't find much information on this topic. I'd like to know if the symptoms I am experiencing are due to this condition. Who can I talk to?</Text>
<Focus start="0" len="19" />
<Question id="T4" start="84" len="77">
<SubQuestion qt="Manifestation">I'd like to know if the symptoms I am experiencing are due to this condition.</SubQuestion>
</Question>
<Question id="T5" start="162" len="18">
<SubQuestion qt="PersonOrg">Who can I talk to?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0287">
<Text>I am 23 years old. For 3 years I have been suffering from this critical problem. Please suggest how I might get rid of it so I can enjoy my life.</Text>
<Focus start="58" len="21" />
<Question id="T3" start="81" len="64">
<SubQuestion qt="Management">Please suggest how I might get rid of it so I can enjoy my life.</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0288">
<Text>I am 26 years old and I have wandering spleen. I would like to know what is the best treatment option for my problem. Can I have a healthy pregnancy with my condition? What are the consequences of spleen removal surgery?</Text>
<Focus start="29" len="16" />
<Question id="T2" start="47" len="70">
<SubQuestion qt="Management">I would like to know what is the best treatment option for my problem.</SubQuestion>
</Question>
<Question id="T3" start="118" len="49">
<SubQuestion qt="OtherEffect">Can I have a healthy pregnancy with my condition?</SubQuestion>
</Question>
<Question id="T4" start="168" len="52">
<SubQuestion qt="NotDisease">What are the consequences of spleen removal surgery?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0289">
<Text>I am 31 years old and my husband and I are considering starting a family. I was born with a bifid nose which was repaired as a child. I am wondering if you can explain the role of genetics and the bifid nose.</Text>
<Focus start="92" len="10" />
<Question id="T4" start="134" len="74">
<SubQuestion qt="Susceptibility">I am wondering if you can explain the role of genetics and the bifid nose.</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0290">
<Text>I am 4 feet, 11 inches tall with many medical complications since childhood. How can I find out if I have dwarfism or any other condition?</Text>
<Focus start="106" len="8" />
<Question id="T2" start="77" len="61">
<SubQuestion qt="Diagnosis" attrs="Error">How can I find out if I have dwarfism or any other condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0291">
<Text>I am 52 years old. I have had this illness for almost ten years. I had anterior neck surgery in 2008 and posterior neck surgery in 2009, with four titanium screws. May I ask you to help me or to guide me so I can treat this illness? Because of this illness I lost everything. I am now totally disabled.</Text>
<Focus start="31" len="12" />
<Question id="T4" start="165" len="68">
<SubQuestion qt="Management" attrs="Error">May I ask you to help me or to guide me so I can treat this illness?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0292">
<Text>I am 58-years-old, and in the last year I have lost my fingerprints. When researching why this may have happened, I came across Naegeli syndrome and discovered that there were more symptoms that matched mine.Could you tell me how this condition is diagnosed? Is there a way to cure or halt the symptoms of the syndrome?</Text>
<Focus start="128" len="16" />
<Question id="T4" start="208" len="50">
<SubQuestion qt="Diagnosis">Could you tell me how this condition is diagnosed?</SubQuestion>
</Question>
<Question id="T5" start="259" len="60">
<SubQuestion qt="Management">Is there a way to cure the symptoms of the syndrome?</SubQuestion>
<SubQuestion qt="Management">Is there a way to halt the symptoms of the syndrome?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0293">
<Text>I am 6 months pregnant and was told that my baby has colpocephaly. I would like to learn more about this condition and what the prognosis is for a baby born with it.</Text>
<Focus start="53" len="12" />
<Question id="T3" start="67" len="98">
<SubQuestion qt="Information">I would like to learn more about this condition.</SubQuestion>
<SubQuestion qt="Prognosis">I would like to learn what the prognosis is for a baby born with it.</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0294">
<Text>I am a 46 year old female who was born with Polands Syndrome. I was missing the upper ribs and the chest wall on my right side. As a result I am now facing multiple spinal problems and am looking for the correct treatment by the correct specialists. How do I go about finding spine specialists who have worked with this condition?</Text>
<Focus start="44" len="16" />
<Question id="T5" start="250" len="80">
<SubQuestion qt="PersonOrg">How do I go about finding spine specialists who have worked with this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0295">
<Text>I am a black female and was recently diagnosed with pityriasis rotunda after a skin biopsy. There is not much information about this condition. The little information I found on the Internet is somewhat disturbing. I'm looking for more information and what should be the next step to follow.</Text>
<Focus start="52" len="18" />
<Question id="T5" start="215" len="76">
<SubQuestion qt="Information">I'm looking for more information.</SubQuestion>
<SubQuestion qt="Information">I'm looking for what should be the next step to follow.</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0296">
<Text>I am a carrier for recombinant chromosome 8 syndrome. Should my children have a blood test to see if they are also carriers?</Text>
<Focus start="19" len="33" />
<Question id="T2" start="54" len="70">
<SubQuestion qt="Diagnosis">Should my children have a blood test to see if they are also carriers?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0297">
<Text>I am a carrier of Duchenne muscular dystrophy. I am experiencing some symptoms which I believe go beyond the realm of aging. Upon reflection, other women in my family also experienced symptoms, including loss of feeling in the legs and heart failure. Can carrier females of Duchenne muscular dystrophy exhibit symptoms?</Text>
<Focus start="18" len="27" />
<Question id="T4" start="251" len="68">
<SubQuestion qt="Manifestation">Can carrier females of Duchenne muscular dystrophy exhibit symptoms?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0298">
<Text>I am a dermatologist and I have a patient requesting patient-friendly information on this condition. Can you provide this and direct me to some appropriate resources?</Text>
<Focus start="85" len="14" />
<Question id="T2" start="101" len="65">
<SubQuestion qt="Information" attrs="Error">Can you provide this and direct me to some appropriate resources?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0299">
<Text>I am affected by familial autosomal dominant periodic fever, as are two of my three children. Can you provide us with information about this condition?</Text>
<Focus start="17" len="42" />
<Question id="T3" start="94" len="57">
<SubQuestion qt="Information">Can you provide us with information about this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0300">
<Text>I am a genetic counselor. We recently made a diagnosis of Sjogren-Larsson in a young child, and I am on the search for patient information for her family. I have found very little information so far (besides medical journal articles). Would you be able to point me to any other source of information (besides FIRST) where I can find information to pass along to this family? The family will be coming back early next week to discuss the diagnosis.</Text>
<Focus start="59" len="15" />
<Question id="T4" start="238" len="139">
<SubQuestion qt="Information">Would you be able to point me to any other source of information (besides FIRST) where I can find information to pass along to this family?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0301">
<Text>I am a healthcare provider for a 4-year-old girl with cytochrome C oxidase deficiency. How does this condition manifest? What is the life expectancy for a child with this diagnosis? She continues to gain new skills, but will she at some point show a regression in skills? She is diagnosed as having cortical visual impairment, though she continues to rely on her vision to gain information about her environment. Will she eventually go completely blind?</Text>
<Focus start="54" len="31" />
<Question id="T2" start="87" len="33">
<SubQuestion qt="Manifestation">How does this condition manifest?</SubQuestion>
</Question>
<Question id="T4" start="121" len="60">
<SubQuestion qt="Prognosis">What is the life expectancy for a child with this diagnosis?</SubQuestion>
</Question>
<Question id="T5" start="182" len="89">
<SubQuestion qt="Prognosis">She continues to gain new skills, but will she at some point show a regression in skills?</SubQuestion>
</Question>
<Question id="T7" start="413" len="40">
<SubQuestion qt="Prognosis">Will she eventually go completely blind?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0302">
<Text>I am a layperson and many articles I have seen are geared toward those with medical backgrounds. Has it been determined that pentalogy of Cantrell is genetic? Is it X-linked? Does this mean that male children are at risk? And how does this impact future siblings?</Text>
<Focus start="126" len="21" />
<Question id="T2" start="98" len="61">
<SubQuestion qt="Susceptibility">Has it been determined that pentalogy of Cantrell is genetic?</SubQuestion>
</Question>
<Question id="T3" start="161" len="15">
<SubQuestion qt="Information">Is it X-linked?</SubQuestion>
</Question>
<Question id="T4" start="178" len="46">
<SubQuestion qt="Susceptibility">Does this mean that male children are at risk?</SubQuestion>
</Question>
<Question id="T5" start="226" len="41">
<SubQuestion qt="Susceptibility">How does this impact future siblings?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0303">
<Text>I am an adult woman who has been recently diagnosed with Ménétrier disease. My symptoms seem to be worsening. I am seeking information about the symptoms, cause(s), prognosis, genetic association, and treatment. I am eager to hear from you and appreciate your assistance.</Text>
<Focus start="57" len="17" />
<Question id="T3" start="112" len="101">
<SubQuestion qt="Manifestation">I am seeking information about the symptoms.</SubQuestion>
<SubQuestion qt="Cause">I am seeking information about the cause(s).</SubQuestion>
<SubQuestion qt="Prognosis">I am seeking information about the prognosis.</SubQuestion>
<SubQuestion qt="Susceptibility">I am seeking information about the genetic association.</SubQuestion>
<SubQuestion qt="Management">I am seeking information about the treatment.</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0304">
<Text>I am a nurse, and I have a patient that presents with some of the classic signs of Rett syndrome. I want to locate a specialist in Rett syndrome genetics. Could your agency send me a list of practicing physicians and clinics with expertise in this area?</Text>
<Focus start="83" len="13" />
<Question id="T3" start="98" len="56">
<SubQuestion qt="PersonOrg">I want to locate a specialist in Rett syndrome genetics.</SubQuestion>
</Question>
<Question id="T4" start="155" len="98">
<SubQuestion qt="PersonOrg">Could your agency send me a list of practicing physicians and clinics with expertise in this area?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0305">
<Text>I am a personal trainer working with a client who has HD. While I have seen progress with the exercises we are doing, I am looking for more information regarding the types of exercises that are found to be most effective or certain exercises that should be avoided.</Text>
<Focus start="54" len="2" />
<Question id="T2" start="59" len="207">
<SubQuestion qt="Management">While I have seen progress with the exercises we are doing, I am looking for more information regarding the types of exercises that are found to be most effective.</SubQuestion>
<SubQuestion qt="Management">While I have seen progress with the exercises we are doing, I am looking for more information regarding certain exercises that should be avoided.</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0306">
<Text>I am a physician who frequently sees patients with Becker muscular dystrophy. Can you provide me with patient-friendly information about this condition?</Text>
<Focus start="51" len="25" />
<Question id="T2" start="78" len="74">
<SubQuestion qt="Information">Can you provide me with patient-friendly information about this condition?</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0307">
<Text>I am a school nurse and have a new student attending our school with this diagnosis. I would like to learn more about the disease and what we can do to make this student as comfortable as possible.</Text>
<Focus start="69" len="14" />
<Question id="T2" start="85" len="112">
<SubQuestion qt="Information">I would like to learn more about the disease.</SubQuestion>
<SubQuestion qt="Management">I would like to learn what we can do to make this student as comfortable as possible.</SubQuestion>
</Question>
</Request>
<Request docID="GARD_Q_0308">
<Text>I am a special education teacher. My new student is 5-years-old and is very impacted by this condition. Is his intelligence presumed to be typical? Also are his fungal infections contagious to other students and staff?</Text>
<Focus start="88" len="14" />