Reading File
Running Command

python3 -c " import pdfplumber with pdfplumber.open('/tmp/workspace/attachments/935952ce-00c9-4992-b60f-2043f411a757/TRN990393_7329185_clinical_report_1637171702.pdf') as pdf: print(f'Pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages): text = page.extract_text() print(f'--- PAGE {i+1} ---') print(text) print() "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/tmp/workspace/attachments/935952ce-00c9-4992-b60f-2043f411a757/TRN990393_7329185_clinical_report_1637171702.pdf') print(f'Pages: {len(reader.pages)}') for i, page in enumerate(reader.pages): text = page.extract_text() print(f'--- PAGE {i+1} ---') print(repr(text[:500]) if text else 'EMPTY') # Check for images if '/XObject' in page.get('/Resources', {}): xobjects = page['/Resources']['/XObject'] print(f'XObjects: {list(xobjects.keys())}') print() "

Running Command

python3 -c " from pypdf import PdfReader import os reader = PdfReader('/tmp/workspace/attachments/935952ce-00c9-4992-b60f-2043f411a757/TRN990393_7329185_clinical_report_1637171702.pdf') os.makedirs('/tmp/workspace/clinical_report_pages', exist_ok=True) for i, page in enumerate(reader.pages): xobjects = page['/Resources']['/XObject'] for key in xobjects: xobj = xobjects[key] if xobj['/Subtype'] == '/Image': data = xobj._data filter_type = xobj.get('/Filter', '') print(f'Page {i+1}: Filter={filter_type}, Size={len(data)} bytes, ColorSpace={xobj.get(\"/ColorSpace\",\"?\")}, BPC={xobj.get(\"/BitsPerComponent\",\"?\")}') # Save as JPEG if DCTDecode, else try PNG if '/DCTDecode' in str(filter_type) or filter_type == '/DCTDecode': fname = f'/tmp/workspace/clinical_report_pages/page_{i+1}.jpg' with open(fname, 'wb') as f: f.write(data) print(f' Saved: {fname}') else: fname = f'/tmp/workspace/clinical_report_pages/page_{i+1}.bin' with open(fname, 'wb') as f: f.write(data) print(f' Saved as binary: {fname}') "

analyse_media
analyse_media
analyse_media
analyse_media
analyse_media
Running Command

python3 -c " # Try using pytesseract or easyocr for OCR import subprocess result = subprocess.run(['python3', '-c', 'import pytesseract; print(\"tesseract ok\")'], capture_output=True, text=True) print('pytesseract:', result.stdout, result.stderr) result2 = subprocess.run(['python3', '-c', 'import easyocr; print(\"easyocr ok\")'], capture_output=True, text=True) print('easyocr:', result2.stdout, result2.stderr) result3 = subprocess.run(['python3', '-c', 'from PIL import Image; print(\"PIL ok\")'], capture_output=True, text=True) print('PIL:', result3.stdout, result3.stderr) "

Running Command

pip install --user pytesseract 2>&1 | tail -5; python3 -c "import pytesseract; print('ok')" 2>&1

Running Command

python3 -c " import pytesseract from PIL import Image for i in range(1, 6): img = Image.open(f'/tmp/workspace/clinical_report_pages/page_{i}.jpg') text = pytesseract.image_to_string(img) print(f'=== PAGE {i} ===') print(text) print() " 2>&1

Loading Image
Running Command

# Try a base64 approach - encode pages and extract using a vision-capable method # Also try PIL to get basic image info and dimensions python3 -c " from PIL import Image for i in range(1, 6): img = Image.open(f'/tmp/workspace/clinical_report_pages/page_{i}.jpg') print(f'Page {i}: size={img.size}, mode={img.mode}') "

Reading File
Reading File
Reading File
Reading File
Reading File
I have now read all 5 pages of the report in full. Here is a complete summary and explanation of the clinical genetic report:

DNA Test Report - MedGenome Laboratories

Lab: MedGenome Labs Ltd., Narayana Health City, Bangalore (CAP Accredited)

Patient Details

FieldDetail
Patient NameYagay Pratap Singh
GenderMale
Age11 years
Referring ClinicianDr. Rohan Malik, AIIMS, New Delhi
Sample TypeBlood
Test PerformedClinical Exome Sequencing
Order ID / Sample ID338977 / 7329185
Date of Sample Collection18th October 2021
Date of Report17th November 2021

Clinical Diagnosis / Symptoms / History

Master Yagay Pratap Singh, an 11-year-old male, presented with recurrent acute pancreatitis. Investigations revealed:
  • Gallbladder stone on USG abdomen
  • Low faecal elastase levels
He was suspected to have hereditary pancreatitis or mutations in the SPINK1, CFTR, and PRSS1/2 genes, and was referred for clinical exome sequencing to evaluate for pathogenic variants.

Key Finding

VARIANT OF UNCERTAIN SIGNIFICANCE RELATED TO THE GIVEN PHENOTYPE WAS DETECTED
Gene (Transcript)LocationVariantZygosityDisease (OMIM)InheritanceClassification
CTRC (+) (ENST00000375949.5)Exon 7c.703G>A (p.Val235Ile)HeterozygousSusceptibility to chronic pancreatitisAutosomal dominantVariant of Uncertain Significance (VUS)
Parental testing is strongly recommended, and classification of the variant may change based on segregation studies.

Variant Interpretation

  • A heterozygous missense variant was found in exon 7 of the CTRC gene (chr1:g.15445660G>A; Depth: 162x).
  • This results in an amino acid change: Isoleucine substituted for Valine at codon 235 (p.Val235Ile).
  • This variant has been previously reported in patients with pancreatitis, and functional studies show it causes slightly diminished enzyme activity (ref [17]: Rosendahl et al., 2008).
  • The variant has conflicting interpretations of pathogenicity in the ClinVar database.
  • Minor allele frequencies: 0.1% (1000 Genomes), 0.04% (gnomAD), 0.4% (internal Indian population database).
  • In silico predictions: Probably damaging (PolyPhen-2/HumDiv), Damaging (SIFT, LRT, MutationTaster2).
  • The reference codon is conserved across species.
OMIM context: Susceptibility to chronic pancreatitis (OMIM#167800) is caused by mutations in the CTRC gene (OMIM*601405). The CTRC gene encodes Chymotrypsin C, which plays a protective role in the pancreas. Variants that diminish its activity are associated with chronic pancreatitis.
Due to conflicting interpretations of pathogenicity and its relatively high minor allele frequency, this CTRC variation is classified as a Variant of Uncertain Significance and must be carefully correlated with the clinical symptoms.

Recommendations

  1. Parental/family sequencing is recommended to assess variant segregation and confirm significance.
  2. Genetic counselling is advised.
  3. If results do not match clinical findings, additional testing should be considered as per the referring clinician.

Sequencing Quality Metrics

MetricValue
Average sequencing depth328x
Average on-target depth139.41x
Target base pairs covered ≥5x99.68%
Target base pairs covered ≥20x99.06%
Total data generated5.39 Gb
Total reads aligned99.98%
Reads passing alignment92.24%
Data ≥Q3096.59%
The sequencing quality is excellent, with high coverage and alignment metrics.

Summary

This is a Clinical Exome Sequencing report from MedGenome Laboratories for an 11-year-old boy with recurrent acute pancreatitis. A Variant of Uncertain Significance (VUS) was found in the CTRC gene (p.Val235Ile, heterozygous), which is associated with susceptibility to chronic pancreatitis. The variant has biological plausibility (diminished enzyme function, damaging in silico predictions, prior reports in pancreatitis patients) but currently lacks conclusive evidence of pathogenicity. The clinical team at AIIMS New Delhi (Dr. Rohan Malik) is advised to correlate the finding with the clinical picture and pursue parental genetic testing to reclassify the variant.

Search for recent research on CTRC variants and pancreatitis

Searching PubMed

CTRC variants pancreatitis

Searching PubMed

CTRC gene chronic pancreatitis pathogenic

Searching the Web

CTRC gene variant pancreatitis 2023 2024 research

Reading Article

PMID: 35594281

Reading Article

PMID: 37321941

Reading Article

PMID: 38876922

Reading Article

PMID: 42019862

Reading Web Page

https://pmc.ncbi.nlm.nih.gov/articles/PMC12929960

Here is a synthesis of the most recent and relevant research on CTRC variants and pancreatitis, directly relevant to Yagay's report:

Recent Research: CTRC Variants and Pancreatitis

1. Mechanism - How CTRC Protects the Pancreas

CTRC (Chymotrypsin C) acts as a second line of defense against pancreatitis. It degrades trypsinogen at two key peptide bonds (Leu81-Glu82 and Lys23-Ile24) to prevent premature intrapancreatic trypsin activation - the central pathogenic event in pancreatitis. Loss-of-function CTRC variants remove this brake, allowing trypsin overactivation and consequent autodigestion of the pancreas (Gene therapy review, PMC 2025).

2. The p.Val235Ile Variant - Directly Relevant to This Report

The variant found in Yagay - p.Val235Ile (c.703G>A) - is one of the four most well-characterized CTRC loss-of-function variants. Key current evidence:
  • It is classified as a moderate-to-low risk variant, retaining 36-55% of wild-type CTRC activity (compared to high-risk variants like p.Ala73Thr which have <10% residual activity).
  • The 2022 meta-analysis (Takáts et al., PLoS One) found p.Val235Ile (also written p.V235I) to have an odds ratio (OR) of 4.5 (95% CI 2.2-9.1) for chronic pancreatitis - meaning heterozygous carriers have approximately a 4.5-fold increased risk of CP compared to non-carriers. [PMID: 35594281]
  • Overall, heterozygous loss-of-function CTRC variants increase CP risk approximately 3-7-fold.

3. Meta-Analyses (Highest-Level Evidence)

Takáts et al., 2022 - PLoS One (Meta-Analysis) | [PMID: 35594281]
  • Analyzed 4 clinically common CTRC variants across published studies.
  • p.V235I OR = 4.5 (CI 2.2-9.1) for chronic pancreatitis.
  • Homozygosity or compound heterozygosity carries higher risk than simple heterozygosity.
  • Conclusion: confirms the clinical significance of CTRC variants and justifies routine genetic screening in CP patients.
Berke et al., 2023 - Pancreatology (Meta-Analysis) | [PMID: 37321941]
  • Focused on the common synonymous variant c.180C>T (p.Gly60=), which is present in ~30% of CP cases.
  • Found it increases CP risk ~2-fold (heterozygous) and ~5-fold (homozygous), potentially through reducing CTRC mRNA levels.
  • This variant can co-occur with p.Val235Ile (they are sometimes found on the same haplotype), compounding risk.

4. Pediatric CTRC - Directly Relevant for an 11-Year-Old

Stefanovics et al., 2024 - Pancreatology | [PMID: 38876922]
  • Real-world genetic testing of pediatric CP cases - the closest demographic match to Yagay.
  • Identified 5 novel heterozygous CTRC variants in 5 children with CP.
  • Key finding: 3 out of 5 novel variants proved benign on functional analysis, underlining that variant classification without functional data can be misleading.
  • Underscores why the VUS classification in Yagay's report is appropriate - functional analysis is "indispensable for reliable determination of pathogenicity."

5. CTRC and Cancer Risk

Antwi et al., 2026 - Clinical Gastroenterology and Hepatology | [PMID: 42019862]
  • Large study (4,528 PDAC cases, 52,659 controls) examined germline variants in all 11 CP-associated genes including CTRC.
  • CTRC was not significantly associated with pancreatic ductal adenocarcinoma (PDAC) risk in this study - the main cancer-risk signals were from PRSS1 and CFTR.
  • Reassuring that the CTRC p.Val235Ile finding in Yagay does not appear to carry a major cancer-predisposition signal.

6. Current Consensus on Variant Classification

Based on updated ACMG framework work (Masson et al., 2022 | [PMID: 35974416]), the classification of CTRC variants should integrate:
  • Functional data (enzyme activity assays)
  • Population frequency
  • Segregation in families
  • In silico predictions
This is exactly why Yagay's VUS classification is consistent with current standards - the combination of moderate functional deficit, conflicting ClinVar data, and relatively higher allele frequency in Indian populations prevents reclassification to "likely pathogenic" without parental segregation data.

Summary Table

StudyTypeKey Finding for p.Val235Ile / CTRC
Takáts et al. 2022 [PMID 35594281]Meta-AnalysisOR 4.5 for CP; confirms clinical significance
Berke et al. 2023 [PMID 37321941]Meta-Analysisc.180C>T co-haplotype adds ~2-5x additional risk
Stefanovics et al. 2024 [PMID 38876922]Pediatric cohortFunctional testing essential; 3/5 novel variants were benign
PMC 2025 Gene Therapy ReviewReviewp.Val235Ile = moderate-low risk (36-55% residual activity)
Antwi et al. 2026 [PMID 42019862]Case-controlCTRC not a major PDAC risk gene

Clinical Implications for Yagay's Case

  1. The p.Val235Ile finding is clinically meaningful - an OR of ~4.5 for CP is substantial, even at VUS classification.
  2. The parental testing recommendation in the MedGenome report aligns perfectly with current evidence - if one parent is an asymptomatic carrier, this shifts interpretation toward a susceptibility variant; if the variant arose de novo or both parents are symptomatic carriers, it strengthens the disease link.
  3. Given that Yagay already has recurrent acute pancreatitis at age 11, the genetic finding provides biological plausibility even without reclassification.
  4. No PRSS1 pathogenic variant was detected, which is notable since PRSS1 carries the strongest hereditary pancreatitis signal and the highest cancer risk - its absence is clinically reassuring.

Recent progession on this condition, like research treatment or upcoming treatment options

Searching PubMed

hereditary pancreatitis treatment pediatric 2023 2024

Searching PubMed

chronic pancreatitis gene therapy CTRC PRSS1 SPINK1

Searching the Web

hereditary pancreatitis new treatment 2024 2025 2026 clinical trial gene therapy trypsin inhibitor

Searching PubMed

recurrent acute pancreatitis children management endoscopic

Searching PubMed

pancreatitis trypsin inhibitor camostat mesylate serine protease therapy

Reading Web Page

https://pmc.ncbi.nlm.nih.gov/articles/PMC12929960

Reading Article

PMID: 38103842

Reading Article

PMID: 37523027

Reading Article

PMID: 40651900

Searching PubMed

total pancreatectomy islet autotransplantation hereditary pancreatitis child

I now have a comprehensive picture across all treatment fronts. Here is the full research and treatment landscape:

Advances in Hereditary/Genetic Pancreatitis: Research & Treatment Progress


Current State: Why Treatment Remains Difficult

Conventional treatment for hereditary/genetic pancreatitis remains largely palliative - managing pain, preventing attacks, and treating complications. No approved disease-modifying therapy directly targets the underlying genetic defect. This is rapidly changing, with multiple approaches now in development.

A. Current Standard Management (2025 Guidelines)

The International Association of Pancreatology (IAP) Revised Acute Pancreatitis Guidelines 2025 ([PMID: 40651900]) - the most current multinational guideline, endorsed by the American Pancreatic Association, European Pancreatic Club, and India Pancreas Club - covers 96 questions across 18 domains. Key management pillars remain:
  1. Pain control - analgesic ladder; avoid opioids where possible
  2. Fluid resuscitation - goal-directed, lactated Ringer's preferred
  3. Early enteral nutrition - oral/nasogastric feeding within 24-48 hours
  4. Enzyme replacement therapy (PERT) - for exocrine pancreatic insufficiency (low faecal elastase, as seen in Yagay's presentation)
  5. Avoidance of triggers - alcohol, high-fat diet, smoking
  6. Gallstone management - Yagay has a gallbladder stone; cholecystectomy is recommended to prevent further attacks
  7. Prevention of recurrence - the guidelines specifically call for future research into targeted therapies for systemic inflammation and organ dysfunction

B. Endoscopic Interventions in Children (Growing Field)

Norris & Troendle, 2023 - Current Opinion in Gastroenterology ([PMID: 37523027]):
  • ERCP (Endoscopic Retrograde Cholangiopancreatography) is increasingly used in children with recurrent pancreatitis to relieve pancreatic duct obstruction, manage strictures, and treat ductal stones.
  • Endoscopic ultrasound (EUS)-guided therapies and single-operator pancreatoscopy are expanding indications in pediatric centers.
  • Technical success and adverse event rates in children are now comparable to adults, though access to pediatric-trained endoscopists remains a challenge.
  • This is relevant for Yagay - if ductal dilation or stricture is found on further imaging, endoscopic decompression could reduce recurrence frequency.

C. The Camostat (Oral Trypsin Inhibitor) Trial - A Setback

Hart et al., 2024 - Gastroenterology (RCT - Phase 2, TACTIC Study) ([PMID: 38103842]):
  • Camostat is an oral serine protease inhibitor (used for decades in Japan) that theoretically inhibits trypsin-driven pancreatic autodigestion.
  • This was the highest-quality RCT to date: 264 adults with painful CP randomized to camostat 100/200/300 mg TDS vs placebo.
  • Result: Camostat did NOT outperform placebo on pain reduction at any dose.
  • Conclusion: Pain in chronic pancreatitis is multifactorial (neural, structural, inflammatory), so blocking trypsin alone is insufficient. The study called for better mechanistic understanding before future trials.
  • This rules out camostat as a standalone therapy for pain, though the trypsin-inhibition rationale is still being explored in other forms.

D. Gene Therapy - The Most Exciting Horizon

A landmark 2026 comprehensive review (PMC12929960) from Zheng et al. outlines the full gene therapy landscape. Four therapeutic strategies are being developed:

1. Gene Augmentation (for Loss-of-Function Variants like CTRC p.Val235Ile)

  • The goal is to restore missing protective gene function.
  • AAV8-hSPINK1: An adeno-associated virus vector delivering the SPINK1 gene (a trypsin inhibitor) into the pancreas has been validated in mouse models of pancreatitis by Wang et al. (2024). It significantly reduced pancreatitis severity, fibrosis, apoptosis, and autophagy.
  • Similar logic applies to CTRC: delivering functional CTRC to restore trypsinogen degradation. This is in pre-clinical development.
  • Key challenge: the pancreas is a difficult organ to transduce efficiently with AAV vectors - developing pancreatic-tropic delivery systems is an active research priority.

2. Gene Inhibition / RNA Silencing (for Gain-of-Function Variants like PRSS1)

  • For PRSS1 gain-of-function mutations, antisense oligonucleotides (ASOs) or siRNA to silence mutant trypsinogen expression are being studied.
  • Analogous to ASO therapies already FDA-approved for other conditions (e.g., spinal muscular atrophy, hereditary transthyretin amyloidosis).

3. Gene Editing (CRISPR-Cas9)

  • Precise correction of the causative variant at the DNA level.
  • Demonstrated in cell and animal models; not yet in pancreatic disease clinical trials.
  • The pancreas presents specific challenges: limited accessibility for direct delivery, risk of off-target editing in a secretory-enzyme-rich organ.

4. Lipid Metabolism Pathway Therapies (Already Approved)

  • For pancreatitis driven by hypertriglyceridemia (a separate pathway), several gene medicines are already approved:
    • Alipogene tiparvovec (gene therapy for LPL deficiency)
    • Volanesorsen and Olezarsen (antisense oligonucleotides targeting ApoC-III)
    • ARO-APOC3 (RNAi therapy)
  • These reduce triglyceride-driven acute pancreatitis risk. Not directly relevant to Yagay's CTRC case, but proof that gene-based pancreatitis therapies can reach the clinic.

E. Surgical Option - Total Pancreatectomy with Islet Auto-Transplantation (TP-IAT)

Radisic et al., 2026 - Med J Aust ([PMID: 41555675]):
  • For severe hereditary pancreatitis unresponsive to medical/endoscopic therapy, total pancreatectomy combined with islet auto-transplantation (TP-IAT) is the surgical option of last resort.
  • The patient's own islet cells are harvested from the removed pancreas and infused into the portal vein, reducing the risk of post-surgical diabetes.
  • 10-year Australian experience shows meaningful pain relief and preservation of insulin secretion in a subset of patients.
  • In children with hereditary pancreatitis this is well-established in specialist centers (particularly in the US and Europe), offering a potential long-term cure of symptoms.
  • Timing matters: earlier surgery (before extensive fibrosis) yields better islet yields and lower rates of post-operative diabetes.

F. Nutritional & Exocrine Management

Since Yagay already has low faecal elastase (exocrine insufficiency), this requires active management:
  • Pancreatic Enzyme Replacement Therapy (PERT): lipase + protease + amylase with every meal and snack.
  • Fat-soluble vitamin monitoring: vitamins A, D, E, K can become deficient.
  • Low-fat diet guidance to reduce pancreatic stimulation.
  • Nutritional surveillance is particularly important in a growing child.

Summary: Treatment Roadmap for Yagay's Condition

TimelineApproachStatus
NowCholecystectomy (gallstone removal)Standard of care - can prevent recurrent attacks
NowPERT for exocrine insufficiencyEstablished
NowERCP if ductal obstruction foundGrowing evidence in pediatric centers
Near futureParental CTRC testing → variant reclassificationRecommended in the report
EmergingAAV-mediated SPINK1/CTRC gene augmentationPre-clinical (animal models, 2024)
EmergingAntisense oligonucleotides (PRSS1 pathway)Early development
EmergingCRISPR gene editingProof-of-concept stage
Last resortTP-IAT (Total Pancreatectomy + Islet Autotransplant)Established surgical option, specialist centers
The most actionable near-term step for Yagay remains cholecystectomy (given the gallbladder stone), parental genetic testing, enzyme replacement, and careful surveillance. Gene therapy specifically targeting CTRC loss-of-function is conceptually sound and actively being developed, but is likely 5-10 years from clinical availability.

Tp Iat

Searching PubMed

total pancreatectomy islet autotransplantation chronic pancreatitis outcomes

Searching PubMed

total pancreatectomy islet autotransplantation pediatric children hereditary pancreatitis

Searching the Web

TP-IAT total pancreatectomy islet autotransplantation pediatric 2024 2025 outcomes pain diabetes

Reading Article

PMID: 40523532

Reading Article

PMID: 40831352

Reading Article

PMID: 34132023

Reading Article

PMID: 37840289

Reading Web Page

https://www.ncbi.nlm.nih.gov/books/NBK278966

Here is a thorough breakdown of everything currently known about TP-IAT:

Total Pancreatectomy with Islet Autotransplantation (TP-IAT)


What It Is

TP-IAT is a two-part operation performed in a single session:
  1. Total pancreatectomy - the entire pancreas is surgically removed, eliminating the source of recurrent inflammation and pain.
  2. Islet autotransplantation - within hours of removal, the patient's own insulin-producing islet cells are extracted from the excised pancreas, purified, and infused through a catheter into the portal vein, where they engraft in the liver and resume insulin secretion.
The key concept: removing the pancreas cures the pancreatitis, but would normally cause brittle surgical diabetes (type 3c). The islet auto-transplant step prevents or mitigates this. Because the cells are the patient's own, no immunosuppression is needed - a major advantage over allogeneic islet transplantation.

Who It Is For - Indications

TP-IAT is reserved for patients who have failed all less invasive options, specifically:
  • Intractable chronic or recurrent acute pancreatitis with debilitating pain
  • Failed adequate trials of medical therapy (analgesics, enzyme replacement, dietary changes)
  • Failed or unsuitable for endoscopic therapy (ERCP, ductal decompression)
  • Failed or unsuitable for lesser surgical procedures
  • No prior type 1 diabetes (islet cells must be functional before surgery)
  • No pancreatic malignancy
  • Fit for major abdominal surgery
  • Able to manage complex post-operative care
Critically relevant to Yagay: Most children who reach TP-IAT have identifiable genetic mutations - including CTRC, PRSS1, SPINK1, and CFTR - exactly the genes evaluated in his report. One policy review noted: "Most children had identifiable genetic risk factors for pancreatitis, such as PRSS1, SPINK1, CFTR, and chymotrypsin C [CTRC]."

The Best Current Evidence

Trikudanathan et al., 2025 - Gastroenterology ([PMID: 40523532]) - the largest and most rigorous study to date:
  • Prospective multicenter study across 12 US centers
  • 384 participants; mean age 30 years; 34% were pediatric (like Yagay)
  • 62% female; all had intractably painful CP or recurrent acute pancreatitis (RAP)
Pain outcomes at 1 year:
  • Daily abdominal pain dropped from 65% → 23% of patients
  • Mean pain score fell from 4.9 → 2.3 (out of 10)
  • Opioid use fell from 61% → 24%
  • Younger age was the strongest predictor of better outcome
  • Disease duration and etiology (genetic vs other) did NOT affect response
Quality of life:
  • Physical QoL improved by ≥10 points in 58% of patients
  • Mental QoL improved by ≥10 points in 35%
Metabolic outcome (diabetes):
  • Mean HbA1c = 7% at 1 year
  • 20% fully insulin independent at 1 year (adult-dominated cohort)
  • Pediatric-specific registries show much better rates - see below

Pediatric-Specific Outcomes

This is where the data gets particularly relevant for an 11-year-old patient:
3rd CITR Autograft Report (2025) - the largest global registry of islet autotransplantation, with 1,320 recipients including 187 pediatric cases:
MetricAdultsChildren (Better)
Insulin independence at 1 year~30-40%64-70%
Detectable C-peptide long term>80-90%>90%
HbA1c <7%60-90%Even higher
Insulin independence if >300,000 IEQ transplanted~70%Higher
Children consistently outperform adults because they have:
  • Greater insulin sensitivity per kg body weight
  • Higher relative islet yields from their less fibrotic pancreases
  • Better cellular recovery from major surgery
Real pediatric case data (Molina policy review, citing a pediatric TPIAT cohort):
  • All 17 children discontinued narcotic use within a median of 68 days post-surgery
  • 100% off opioids by 1 year
  • 82% had at least partial insulin independence
  • 64% were completely insulin independent at last follow-up
Youngest reported case: Marfil-Garza et al. 2021 ([PMID: 34132023]) reported a 2-year-old child with hereditary PRSS1 pancreatitis who successfully underwent TP-IAT, demonstrating that the procedure is technically feasible even in very young children with genetic pancreatitis.

The Islet Dose - Why It Matters

The amount of islet tissue recovered (measured in islet equivalents, IEQ) directly predicts diabetes outcomes:
Islet yieldExpected outcome
>5,000 IEQ/kg body weightHighest insulin independence rates
>2,000-3,000 IEQ/kgMeaningful insulin independence
<2,000 IEQ/kgLikely insulin-requiring, but C-peptide preserved
Timing is therefore critical: early surgery, before extensive pancreatic fibrosis destroys islet cells, maximizes the harvestable islet mass. A child with a moderately damaged pancreas will yield far more islets than an adult with end-stage fibrotic disease.

The Procedure Step by Step

1. Total pancreatectomy + splenectomy (often) + duodenectomy
2. Pancreas sent immediately to the islet processing laboratory (same hospital)
3. Enzymatic digestion dissolves the pancreatic tissue, freeing islet clusters
4. Islets purified by density gradient centrifugation
5. Quality control: islet count, viability, sterility checks
6. Islet suspension infused into portal vein via interventional radiology
7. Islets lodge in liver sinusoids → engraft → resume insulin secretion within days-weeks
The liver effectively becomes a surrogate endocrine pancreas.

Risks and What Patients/Families Must Know

Surgical risks (major surgery):
  • Reoperation rate: ~16% (most commonly for bleeding)
  • In-hospital mortality: ~1.2% at major centers
  • Post-operative leak, infection, ileus
Metabolic risks:
  • Even with perfect islet engraftment, some patients will eventually require insulin as islet mass slowly declines over years
  • HbA1c management is complex - neither the high-glucose risk of type 1 DM nor severe hypoglycemia, but requires monitoring
  • Portal vein thrombosis is a rare but serious complication of the islet infusion
Long-term:
  • Lifelong pancreatic enzyme replacement (PERT) is mandatory - no pancreas means no digestive enzymes
  • Fat-soluble vitamin monitoring (A, D, E, K)
  • Splenectomy (if performed) requires lifelong pneumococcal, meningococcal, and Hib vaccination

Where TP-IAT Is Available

This is a highly specialized procedure performed at a limited number of expert centers globally. Leading pediatric centers include:
  • University of Minnesota (largest program worldwide)
  • Cincinnati Children's Hospital Medical Center
  • University of Leicester (UK)
  • Children's Hospital at VCU (Virginia Commonwealth - reported a 10-year-old pain-free post-TP-IAT in April 2026)
  • South Australia - published 10-year pediatric experience (Radisic et al., 2026 [PMID: 41555675])
In India, TP-IAT availability is extremely limited and would likely require referral to an international center, or to a high-volume pancreatic surgery unit with islet processing capability.

Is TP-IAT Right for Yagay Now?

No - not yet, but it is a realistic future option if disease progresses.
At age 11 with recurrent acute pancreatitis and a CTRC VUS finding, Yagay has not yet exhausted the step-ladder of interventions:
StepStatus for Yagay
Medical management + PERTShould be optimized
Cholecystectomy (gallstone removal)Likely indicated now
Endoscopic therapy (ERCP) if ductal issuesTo be assessed
Parental genetic testing → reclassify variantRecommended in report
TP-IAT if all above failFuture option
The good news: if Yagay does eventually need TP-IAT, his young age is his greatest asset. Pediatric patients achieve the best outcomes - higher insulin independence, better pain relief, superior quality of life recovery - and early intervention before fibrosis destroys islet mass gives the best metabolic result.
This is a shared conversation. Sign in to Orris to start your own chat.