Wilson disease - Nelson
python3 -c " import pdfplumber pdf_path = '/home/daytona/workspace/attachments/a38abb15-287c-4048-90bb-ede14783af09/Part 16 -The Digestive System - Nelson 2024 (1).pdf' with pdfplumber.open(pdf_path) as pdf: print(f'Total pages: {len(pdf.pages)}') # Search for Wilson disease pages wilson_pages = [] for i, page in enumerate(pdf.pages): text = page.extract_text() or '' if 'Wilson' in text: wilson_pages.append(i+1) print(f'Pages with Wilson: {wilson_pages}') "
python3 << 'EOF' from pypdf import PdfReader pdf_path = '/home/daytona/workspace/attachments/a38abb15-287c-4048-90bb-ede14783af09/Part 16 -The Digestive System - Nelson 2024 (1).pdf' reader = PdfReader(pdf_path) print(f'Total pages: {len(reader.pages)}') wilson_pages = [] for i, page in enumerate(reader.pages): text = page.extract_text() or '' if 'Wilson' in text: wilson_pages.append(i+1) print(f'Pages with Wilson: {wilson_pages}') EOF
python3 << 'EOF' from pypdf import PdfReader pdf_path = '/home/daytona/workspace/attachments/a38abb15-287c-4048-90bb-ede14783af09/Part 16 -The Digestive System - Nelson 2024 (1).pdf' reader = PdfReader(pdf_path) # Extract pages 223-225 to find the Wilson disease chapter start for pg in [222, 223, 224, 225, 226]: print(f"\n========= PAGE {pg+1} =========") text = reader.pages[pg].extract_text() or '' print(text[:3000]) EOF
python3 << 'EOF' from pypdf import PdfReader pdf_path = '/home/daytona/workspace/attachments/a38abb15-287c-4048-90bb-ede14783af09/Part 16 -The Digestive System - Nelson 2024 (1).pdf' reader = PdfReader(pdf_path) # Search for Wilson disease chapter heading for i in range(len(reader.pages)): text = reader.pages[i].extract_text() or '' if 'Wilson' in text and ('Chapter' in text or 'WILSON' in text or 'Wilson Disease' in text): print(f"\n=== PAGE {i+1} ===") print(text[:500]) print("---") EOF
python3 << 'EOF' from pypdf import PdfReader pdf_path = '/home/daytona/workspace/attachments/a38abb15-287c-4048-90bb-ede14783af09/Part 16 -The Digestive System - Nelson 2024 (1).pdf' reader = PdfReader(pdf_path) # Pages 240-243 should contain Wilson disease chapter (0-indexed: 239-242) for pg in range(239, 244): print(f"\n\n{'='*60}") print(f"PAGE {pg+1}") print('='*60) text = reader.pages[pg].extract_text() or '' print(text) EOF
"Wilson disease" children diagnosis treatment
| Presentation (Frequency) | Symptoms |
|---|---|
| Hepatic (40-60%) | Asymptomatic aminotransferase elevation; acute hepatitis (jaundice, abdominal pain); acute liver failure (coagulopathy, jaundice, encephalopathy); compensated/decompensated cirrhosis (fatigue, spider naevi, portal HTN, splenomegaly, bleeding) |
| Neurologic (40-50%) | Involuntary movements (tremor, dystonia, ataxia, ballism, chorea, parkinsonism); speech disturbances (dysarthria); dysphagia; autonomic dysfunction; gait/balance disturbances |
| Psychiatric (10-25%) | Personality disorders (antisocial behavior, irritability, disinhibition); mood disorders (bipolar, depression, suicidal); psychosis; cognitive impairment |
| Ophthalmologic | K-F rings (90-100% in neurologic patients; 40-50% in hepatic patients; 20-30% in presymptomatic); sunflower cataract (1.2-25%) |
| Other | Renal (tubular dysfunction, nephrolithiasis); bone (osteoporosis, chondrocalcinosis); cardiac (arrhythmia, cardiomyopathy); skin (hyperpigmentation, azure lunulae of nails); hematopoietic (thrombocytopenia, hemolytic anemia); gynecologic (menstrual irregularity, delayed puberty); endocrinologic (glucose intolerance, parathyroid insufficiency) |
| Test | Finding in Wilson Disease |
|---|---|
| Serum ceruloplasmin | <20 mg/dL (decreased in most patients) - interpret with caution: falsely elevated in acute inflammation, pregnancy, estrogen use; falsely low in autoimmune hepatitis, celiac disease, carriers |
| Serum free copper | Elevated in early disease (>1.6 μmol/L) |
| 24-hr urinary copper | >100 μg/day (often up to 1,000+ μg/day); normal <40 μg/day; typical untreated: >1.6 μmol/24hr (adults), >0.64 μmol/24hr (children) |
| Penicillamine challenge | Give 2 × 500 mg oral d-penicillamine 12 hr apart; affected patients excrete >1,600 μg/24hr |
| K-F rings | Requires slit-lamp examination by ophthalmologist; may be absent in younger children |
| Liver biopsy (hepatic copper) | >250 μg/g dry weight (>4 μmol/g dry weight) is best biochemical evidence; lowering threshold to 1.2 μmol/g improves sensitivity; only required if noninvasive tests are inconclusive |
| Drug | Dose | Notes |
|---|---|---|
| Trientine (triethylene tetramine dihydrochloride; TETA) - first-line preferred | Adults: 750-1500 mg/day in 2-3 divided doses; Children: 20 mg/kg/day (rounded to nearest 250 mg) in 2-3 divided doses; Maintenance: 750-1000 mg/day | Few known side effects. Preferred over penicillamine. |
| d-Penicillamine (β,β-dimethylcysteine) - alternative | Adults: max 1000-1500 mg/day in 2-4 divided doses before meals; Children: 20 mg/kg/day (rounded to nearest 250 mg) in 2-3 divided doses | 10-50% neurologic worsening initially; toxic effects in 10-20% (Goodpasture syndrome, SLE, polymyositis, aplastic anemia, nephrosis, zinc deficiency). Requires supplemental vitamin B6 (antimetabolite of pyridoxine). |
| Ammonium tetrathiomolybdate - investigational | 120 mg/day (20 mg between meals × 3 + 20 mg with meals × 3) | Fewer neurologic deteriorations than penicillamine; side effects include anemia, leukopenia, thrombocytopenia, elevated ALT/AST; also has antiangiogenic effects |
| Zinc acetate - adjuvant/maintenance/presymptomatic | Adults: 50 mg elemental zinc × 3/day; Children >5 yr: 25 mg × 3/day | Impairs GI absorption of copper; side effects: gastric irritation, reduced leukocyte chemotaxis, elevated lipase/amylase |
Source: Nelson Textbook of Pediatrics, 2024 Edition, Chapter 405.2 - Wilson Disease (pp. 2457-2459). Authors: Julie Bonn & William F. Balistreri.