Make a ppt on intestinal obstruction
intestinal obstruction X-ray bowel
bowel obstruction CT scan abdominal
volvulus intussusception hernia adhesion bowel obstruction causes diagram
mkdir -p /home/daytona/workspace/intestinal-obstruction-ppt && ls /home/daytona/workspace/intestinal-obstruction-ppt/
~/intestinal-obstruction-ppt/build.js
const pptxgen = require("pptxgenjs");
const { execSync } = require("child_process");
// ── Fetch images ──────────────────────────────────────────────────────────────
const imageUrls = [
"https://cdn.orris.care/cdss_images/pmc_clinical_VQA_2974d44d6e805c334d68b0c1cba89de3cd732d6378e9c88ac1c332cd4e27da01.jpg", // X-ray stepladder
"https://cdn.orris.care/cdss_images/pmc_clinical_VQA_cc1a7e8b4ed590d52791b592840924fd66be992bd5f78a0ff204873d879c5d2a.jpg", // CT SBO transition
"https://cdn.orris.care/cdss_images/pmc_clinical_VQA_480158feb50ba3110721179a064fc83ef422bc3d020579cb20a993a13b1bc9cb.jpg", // CT large bowel volvulus
"https://cdn.orris.care/cdss_images/158bc9cc39e323c81d9f0cccaa784bfbb067bab526f2241ccac5c8435bc1e400.png", // Robbins diagram 4 causes
];
console.log("Fetching images...");
const fetched = JSON.parse(
execSync(
`node /home/daytona/skills/shared/scripts/fetch_images.js ${imageUrls.map(u => `"${u}"`).join(" ")}`,
{ maxBuffer: 100 * 1024 * 1024 }
).toString()
);
console.log("Images fetched:", fetched.map(f => (f.error ? "ERROR: " + f.error : "OK")));
const [imgXray, imgCT_SBO, imgCT_LBO, imgDiagram] = fetched;
// ── Presentation setup ────────────────────────────────────────────────────────
let pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
pres.title = "Intestinal Obstruction";
pres.author = "Orris Medical";
// ── Color Palette ─────────────────────────────────────────────────────────────
const C = {
navy: "0D1B2A", // dominant dark background
teal: "1B6CA8", // supporting mid
accent: "E63946", // sharp red accent
light: "F1FAEE", // near-white text
muted: "A8DADC", // soft teal for subtext
card: "152232", // slightly lighter than navy for cards
white: "FFFFFF",
yellow: "FFD166", // highlight accent
};
// ── Helper: slide background ──────────────────────────────────────────────────
function darkBG(slide) {
slide.background = { color: C.navy };
}
// ── Helper: accent bar top ────────────────────────────────────────────────────
function topBar(slide, color) {
slide.addShape(pres.shapes.RECTANGLE, { x: 0, y: 0, w: 10, h: 0.08, fill: { color: color || C.accent }, line: { color: color || C.accent } });
}
// ── Helper: section heading ───────────────────────────────────────────────────
function slideHeading(slide, text, sub) {
slide.addText(text, {
x: 0.5, y: 0.15, w: 9, h: 0.55,
fontSize: 24, bold: true, color: C.white, fontFace: "Calibri",
margin: 0,
});
if (sub) {
slide.addText(sub, {
x: 0.5, y: 0.72, w: 9, h: 0.28,
fontSize: 11, color: C.muted, fontFace: "Calibri", italic: true, margin: 0,
});
}
// divider line
slide.addShape(pres.shapes.RECTANGLE, { x: 0.5, y: 1.06, w: 8.8, h: 0.03, fill: { color: C.teal }, line: { color: C.teal } });
}
// ── Helper: bullet card ───────────────────────────────────────────────────────
function bulletCard(slide, x, y, w, h, title, bullets, opts = {}) {
// card background
slide.addShape(pres.shapes.ROUNDED_RECTANGLE, {
x, y, w, h,
fill: { color: opts.cardColor || C.card },
line: { color: opts.borderColor || C.teal, pt: 1 },
rectRadius: 0.1,
shadow: { type: "outer", color: "000000", blur: 6, offset: 2, angle: 135, opacity: 0.2 },
});
// title
slide.addShape(pres.shapes.RECTANGLE, {
x, y, w, h: 0.3,
fill: { color: opts.titleBg || C.teal },
line: { color: opts.titleBg || C.teal },
});
slide.addText(title, {
x: x + 0.1, y: y + 0.02, w: w - 0.2, h: 0.28,
fontSize: 11, bold: true, color: C.white, fontFace: "Calibri",
valign: "middle", margin: 0,
});
// bullets
const items = bullets.map((b, i) => ({
text: b,
options: { bullet: { type: "bullet" }, breakLine: i < bullets.length - 1, color: C.light, fontSize: 9.5, fontFace: "Calibri" },
}));
slide.addText(items, {
x: x + 0.12, y: y + 0.33, w: w - 0.22, h: h - 0.38,
valign: "top", margin: 2,
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 1 — TITLE
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
// large accent shape
slide.addShape(pres.shapes.RECTANGLE, {
x: 0, y: 1.6, w: 10, h: 2.4,
fill: { color: C.teal },
line: { color: C.teal },
});
// top bar
slide.addShape(pres.shapes.RECTANGLE, { x: 0, y: 0, w: 10, h: 0.12, fill: { color: C.accent }, line: { color: C.accent } });
// bottom bar
slide.addShape(pres.shapes.RECTANGLE, { x: 0, y: 5.4, w: 10, h: 0.225, fill: { color: C.accent }, line: { color: C.accent } });
slide.addText("INTESTINAL", {
x: 0.6, y: 1.68, w: 8.8, h: 0.8,
fontSize: 54, bold: true, color: C.white, fontFace: "Calibri",
charSpacing: 8, margin: 0,
});
slide.addText("OBSTRUCTION", {
x: 0.6, y: 2.42, w: 8.8, h: 0.8,
fontSize: 54, bold: true, color: C.yellow, fontFace: "Calibri",
charSpacing: 8, margin: 0,
});
slide.addText("A Comprehensive Clinical Overview", {
x: 0.6, y: 3.35, w: 8.8, h: 0.4,
fontSize: 15, color: C.light, fontFace: "Calibri", italic: true, margin: 0,
});
// tags
const tags = ["Pathophysiology", "Diagnosis", "Management", "Complications"];
tags.forEach((t, i) => {
slide.addShape(pres.shapes.ROUNDED_RECTANGLE, {
x: 0.6 + i * 2.2, y: 4.1, w: 2.0, h: 0.3,
fill: { color: C.accent }, line: { color: C.accent }, rectRadius: 0.15,
});
slide.addText(t, {
x: 0.6 + i * 2.2, y: 4.1, w: 2.0, h: 0.3,
fontSize: 9, bold: true, color: C.white, align: "center", valign: "middle",
fontFace: "Calibri", margin: 0,
});
});
slide.addText("Sources: Robbins Pathology · Harrison's Principles · Tintinalli's Emergency Medicine · Sleisenger & Fordtran's GI Disease", {
x: 0.5, y: 5.3, w: 9, h: 0.22,
fontSize: 7, color: C.light, fontFace: "Calibri", align: "center", margin: 0,
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 2 — DEFINITION & OVERVIEW
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide);
slideHeading(slide, "Definition & Overview", "Robbins & Kumar Basic Pathology");
slide.addText(
"Intestinal obstruction is the partial or complete blockage of the intestinal lumen, preventing normal passage of contents. The small bowel is most often involved due to its relatively narrow lumen.",
{
x: 0.5, y: 1.12, w: 9, h: 0.65,
fontSize: 11.5, color: C.light, fontFace: "Calibri", valign: "top",
margin: 4,
}
);
// Two stat boxes
const stats = [
{ label: "80%", sub: "of mechanical obstructions\ncaused by hernias, adhesions,\nintussusception & volvulus" },
{ label: "~20%", sub: "caused by tumours,\ninfarction & other\npathology" },
];
stats.forEach((s, i) => {
slide.addShape(pres.shapes.RECTANGLE, {
x: 0.5 + i * 4.8, y: 1.85, w: 4.3, h: 1.1,
fill: { color: C.teal }, line: { color: C.teal },
});
slide.addText(s.label, {
x: 0.5 + i * 4.8, y: 1.88, w: 4.3, h: 0.55,
fontSize: 32, bold: true, color: C.yellow, align: "center", fontFace: "Calibri", margin: 0,
});
slide.addText(s.sub, {
x: 0.5 + i * 4.8, y: 2.42, w: 4.3, h: 0.5,
fontSize: 9.5, color: C.white, align: "center", fontFace: "Calibri", margin: 0,
});
});
// Types
const types = [
{ title: "Mechanical", color: C.accent, items: ["Physical barrier blocks lumen", "Requires surgical intervention", "Examples: adhesions, hernia, volvulus, tumour"] },
{ title: "Functional (Ileus)", color: "2A7B9B", items: ["Failure of peristalsis — no physical block", "Common post-operatively", "Responds to conservative management"] },
{ title: "Strangulation", color: "8B1A1A", items: ["Compromised blood supply to bowel", "Surgical emergency", "Risk of gangrene & perforation"] },
];
types.forEach((t, i) => {
bulletCard(slide, 0.32 + i * 3.12, 3.1, 3.0, 2.3, t.title, t.items, { titleBg: t.color, borderColor: t.color });
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 3 — AETIOLOGY / CAUSES
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.teal);
slideHeading(slide, "Aetiology — Causes of Intestinal Obstruction", "Robbins Pathology · Harrison's Principles of Internal Medicine 22E");
// Left: diagram image
if (!imgDiagram.error) {
slide.addImage({ data: imgDiagram.base64, x: 0.3, y: 1.18, w: 4.0, h: 3.2, altText: "Four mechanical causes of intestinal obstruction" });
slide.addText("FIG: Four major mechanical causes — hernia, adhesion, volvulus, intussusception\n(Robbins & Kumar Basic Pathology)", {
x: 0.3, y: 4.4, w: 4.0, h: 0.4,
fontSize: 7, color: C.muted, italic: true, fontFace: "Calibri", margin: 0,
});
}
// Right: cause cards
const causes = [
{ label: "Adhesions", detail: "Most common cause (post-op fibrous bands)" },
{ label: "Hernias", detail: "Inguinal, umbilical, femoral, incisional" },
{ label: "Volvulus", detail: "Twisting of bowel loop on its mesentery" },
{ label: "Intussusception", detail: "#1 cause in children <2 yrs; may be idiopathic or have lead point (tumour, polyp)" },
{ label: "Tumours", detail: "Colorectal, pancreatic, ovarian, gastric" },
{ label: "Strictures / IBD", detail: "Crohn's, radiation, ischaemia" },
{ label: "Hirschsprung Disease", detail: "Congenital aganglionic megacolon; presents as neonatal obstruction" },
{ label: "Ileus (functional)", detail: "Post-op, peritonitis, electrolyte imbalance, drugs (opioids, vinca alkaloids)" },
];
causes.forEach((c, i) => {
const col = i < 4 ? 0 : 1;
const row = i % 4;
const x = 4.65 + col * 2.6;
const y = 1.15 + row * 1.07;
slide.addShape(pres.shapes.RECTANGLE, {
x, y, w: 2.45, h: 0.95,
fill: { color: C.card }, line: { color: C.teal, pt: 1 },
});
// accent left stripe
slide.addShape(pres.shapes.RECTANGLE, {
x, y, w: 0.06, h: 0.95,
fill: { color: C.accent }, line: { color: C.accent },
});
slide.addText(c.label, {
x: x + 0.1, y: y + 0.04, w: 2.3, h: 0.28,
fontSize: 9.5, bold: true, color: C.yellow, fontFace: "Calibri", margin: 0,
});
slide.addText(c.detail, {
x: x + 0.1, y: y + 0.33, w: 2.3, h: 0.58,
fontSize: 8.5, color: C.light, fontFace: "Calibri", valign: "top", margin: 0,
});
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 4 — PATHOPHYSIOLOGY
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.accent);
slideHeading(slide, "Pathophysiology", "Robbins & Kumar Basic Pathology · Tintinalli's Emergency Medicine");
const steps = [
{ num: "1", title: "Luminal Block", text: "Mechanical or functional obstruction halts normal bowel transit" },
{ num: "2", title: "Bowel Distension", text: "Gas & fluid accumulate proximal to obstruction; intraluminal pressure rises" },
{ num: "3", title: "Increased Peristalsis", text: "Initial hypermotility causes colicky pain, then hypo/peristalsis (exhaustion)" },
{ num: "4", title: "Vascular Compromise", text: "Rising intraluminal pressure compresses mural vessels → ischaemia → strangulation" },
{ num: "5", title: "Bacterial Overgrowth", text: "Stasis allows proliferation; mucosal barrier fails → translocation & sepsis" },
{ num: "6", title: "Perforation / Peritonitis", text: "Gangrenous bowel perforates → faecal peritonitis → systemic sepsis & death" },
];
// Arrow flow diagram
steps.forEach((s, i) => {
const col = i % 3;
const row = Math.floor(i / 3);
const x = 0.35 + col * 3.2;
const y = 1.18 + row * 2.05;
// box
slide.addShape(pres.shapes.ROUNDED_RECTANGLE, {
x, y, w: 3.0, h: 1.75,
fill: { color: C.card }, line: { color: C.teal, pt: 1.2 },
rectRadius: 0.1,
});
// number circle
slide.addShape(pres.shapes.ELLIPSE, {
x: x + 0.08, y: y + 0.08, w: 0.48, h: 0.48,
fill: { color: C.accent }, line: { color: C.accent },
});
slide.addText(s.num, {
x: x + 0.08, y: y + 0.08, w: 0.48, h: 0.48,
fontSize: 14, bold: true, color: C.white, align: "center", valign: "middle", fontFace: "Calibri", margin: 0,
});
slide.addText(s.title, {
x: x + 0.62, y: y + 0.1, w: 2.28, h: 0.38,
fontSize: 11, bold: true, color: C.yellow, fontFace: "Calibri", margin: 0,
});
slide.addText(s.text, {
x: x + 0.1, y: y + 0.56, w: 2.78, h: 1.1,
fontSize: 9.5, color: C.light, fontFace: "Calibri", valign: "top", margin: 2,
});
// arrow between boxes in same row
if (col < 2) {
slide.addShape(pres.shapes.RECTANGLE, {
x: x + 3.02, y: y + 0.78, w: 0.16, h: 0.18,
fill: { color: C.accent }, line: { color: C.accent },
});
}
});
slide.addText("⚠ Cecal dilation >12–14 cm = surgical emergency (high rupture risk)", {
x: 0.5, y: 5.25, w: 9, h: 0.28,
fontSize: 10, bold: true, color: C.yellow, align: "center", fontFace: "Calibri", margin: 0,
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 5 — CLINICAL FEATURES
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.teal);
slideHeading(slide, "Clinical Features", "Harrison's Principles of Internal Medicine 22E · Sleisenger & Fordtran's");
const sections = [
{
title: "Symptoms", color: C.teal, items: [
"Colicky abdominal pain (most common)",
"Nausea & vomiting (bilious → faeculent)",
"Abdominal distension",
"Constipation / obstipation",
"Diarrhoea in partial obstruction",
]
},
{
title: "Signs on Examination", color: "2A7B9B", items: [
"Abdominal distension & tympany",
"Visible peristalsis",
"High-pitched tinkling bowel sounds",
"Absent bowel sounds (late / strangulation)",
"Tenderness, guarding, rigidity (strangulation / peritonitis)",
"Tumour masses or ascites may be palpable",
]
},
{
title: "SBO vs LBO Features", color: "4A5568", items: [
"SBO: central distension, early vomiting",
"LBO: peripheral distension, late vomiting",
"Sigmoid / caecal volvulus: marked distension",
"Intussusception (child): 'redcurrant jelly' stool",
"Hirschsprung: failure to pass meconium at birth",
]
},
];
sections.forEach((s, i) => {
bulletCard(slide, 0.3 + i * 3.22, 1.12, 3.05, 4.3, s.title, s.items, { titleBg: s.color, borderColor: s.color });
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 6 — INVESTIGATIONS (with X-ray image)
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.accent);
slideHeading(slide, "Investigations", "Harrison's Principles of Internal Medicine 22E · Tintinalli's");
// Left column: text
const investigations = [
{ heading: "Abdominal X-Ray (Erect & Supine)", bullets: ["Dilated bowel loops", "Multiple air-fluid levels (stepladder / string of pearls sign)", "Absent distal gas in complete obstruction"] },
{ heading: "CT Abdomen (Gold Standard)", bullets: ["Identifies site, cause, and extent", "Distinguishes benign vs malignant cause", "Detects strangulation, perforation, ischaemia", "CT enteroclysis for low-grade SBO"] },
{ heading: "Ultrasound", bullets: ["Sensitivity ~85%, no radiation", "Useful in children & pregnancy", "Identifies transition point and free fluid"] },
{ heading: "Laboratory Tests", bullets: ["FBC, CRP: leukocytosis in strangulation", "Electrolytes: Na⁺, K⁺, Cl⁻ (derangement from vomiting)", "Lactate: elevated in ischaemia", "ABG, LFTs, amylase (if pancreatitis suspected)"] },
];
investigations.forEach((inv, i) => {
const y = 1.12 + i * 1.08;
slide.addShape(pres.shapes.RECTANGLE, {
x: 0.3, y, w: 0.06, h: 0.95,
fill: { color: C.accent }, line: { color: C.accent },
});
slide.addText(inv.heading, {
x: 0.44, y: y + 0.02, w: 4.6, h: 0.28,
fontSize: 10, bold: true, color: C.yellow, fontFace: "Calibri", margin: 0,
});
const items = inv.bullets.map((b, bi) => ({
text: b,
options: { bullet: true, breakLine: bi < inv.bullets.length - 1, color: C.light, fontSize: 8.5, fontFace: "Calibri" },
}));
slide.addText(items, {
x: 0.44, y: y + 0.3, w: 4.6, h: 0.68,
valign: "top", margin: 2,
});
});
// Right column: X-ray image
if (!imgXray.error) {
slide.addShape(pres.shapes.RECTANGLE, {
x: 5.2, y: 1.12, w: 4.55, h: 3.85,
fill: { color: "0A1520" }, line: { color: C.teal, pt: 1.5 },
});
slide.addImage({ data: imgXray.base64, x: 5.22, y: 1.14, w: 4.51, h: 3.6, altText: "Erect abdominal X-ray showing air-fluid levels in intestinal obstruction" });
slide.addText("Erect AXR: stepladder air-fluid levels & dilated bowel loops — hallmark of mechanical obstruction", {
x: 5.22, y: 4.76, w: 4.51, h: 0.38,
fontSize: 7.5, color: C.muted, italic: true, align: "center", fontFace: "Calibri", margin: 0,
});
}
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 7 — CT IMAGING (with CT images)
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.teal);
slideHeading(slide, "CT Imaging — Key Findings", "Harrison's Principles · Tintinalli's Emergency Medicine");
// Two CT images side by side
const imgs = [
{ data: imgCT_SBO, label: "Small Bowel Obstruction", caption: "Axial CT: dilated fluid-filled loops with abrupt transition point — typical of adhesion SBO" },
{ data: imgCT_LBO, label: "Large Bowel Obstruction (Volvulus)", caption: "Axial/coronal CT: massive cecal dilation with 'whirl sign' — surgical emergency" },
];
imgs.forEach((img, i) => {
const x = 0.3 + i * 4.9;
slide.addShape(pres.shapes.RECTANGLE, {
x, y: 1.12, w: 4.55, h: 3.0,
fill: { color: "0A1520" }, line: { color: C.teal, pt: 1.5 },
});
if (!img.data.error) {
slide.addImage({ data: img.data.base64, x: x + 0.02, y: 1.14, w: 4.51, h: 2.8, altText: img.label });
}
slide.addText(img.label, {
x, y: 4.14, w: 4.55, h: 0.3,
fontSize: 10, bold: true, color: C.yellow, align: "center", fontFace: "Calibri", margin: 0,
});
slide.addText(img.caption, {
x, y: 4.46, w: 4.55, h: 0.5,
fontSize: 8, color: C.muted, italic: true, align: "center", fontFace: "Calibri", margin: 0,
});
});
// CT features legend
slide.addText("CT Features Distinguishing Malignant vs Benign Obstruction", {
x: 0.3, y: 4.98, w: 9.4, h: 0.25,
fontSize: 9.5, bold: true, color: C.white, fontFace: "Calibri", margin: 0,
});
slide.addText([
{ text: "Malignant: ", options: { bold: true, color: C.accent } },
{ text: "mass at obstruction site, adenopathy, abrupt transition, irregular bowel thickening ", options: { color: C.light } },
{ text: "Benign: ", options: { bold: true, color: C.muted } },
{ text: "mesenteric vascular changes, large ascites, smooth transition zone", options: { color: C.light } },
], {
x: 0.3, y: 5.23, w: 9.4, h: 0.3,
fontSize: 8.5, fontFace: "Calibri", margin: 0,
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 8 — MANAGEMENT
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.accent);
slideHeading(slide, "Management", "Harrison's Principles 22E · Sleisenger & Fordtran's");
const mgmt = [
{
title: "Initial Resuscitation", color: C.teal, items: [
"IV access & fluid resuscitation",
"NGT decompression (suction)",
"Urinary catheter — monitor UO",
"Electrolyte correction (Na⁺, K⁺, Cl⁻)",
"Analgesia & antiemetics",
"Nil by mouth",
]
},
{
title: "Conservative Management", color: "2A7B9B", items: [
"Prolonged NGT decompression",
"IV fluids & electrolyte monitoring",
"Bowel rest",
"First-line for functional ileus",
"May resolve adhesion SBO (~70%)",
"Metoclopramide — incomplete/functional obstruction only",
]
},
{
title: "Pharmacological (Malignant)", color: "4A5568", items: [
"Opioids: abdominal pain",
"Dopamine antagonists: nausea (haloperidol, phenothiazines)",
"Antisecretory: octreotide, anticholinergics",
"Corticosteroids: anti-inflammatory, aid resolution",
"Avoid prokinetics in complete obstruction",
]
},
{
title: "Surgical Management", color: "8B1A1A", items: [
"Adhesiolysis (adhesion SBO)",
"Bowel resection ± primary anastomosis",
"Decompressing stoma (colostomy/ileostomy)",
"Hernia repair",
"Laparoscopy — diagnose & treat in selected cases",
"Mortality 10–20% in advanced malignancy",
]
},
{
title: "Endoscopic / Minimally Invasive", color: "285E61", items: [
"Self-expanding metal stents (SEMS)",
"Gastric outlet, duodenal, colonic stents",
"Venting gastrostomy (palliative NGT alternative)",
"Contrast enema — therapeutic in intussusception in children",
]
},
{
title: "Special Scenarios", color: "6B46C1", items: [
"Sigmoid volvulus: flexible sigmoidoscopy + rectal tube",
"Caecal volvulus: right hemicolectomy",
"Hirschsprung: resect aganglionic segment",
"Caecum >12–14 cm: emergency surgery",
"Peritoneal carcinomatosis: palliative priority",
]
},
];
mgmt.forEach((m, i) => {
const col = i % 3;
const row = Math.floor(i / 3);
bulletCard(slide, 0.25 + col * 3.2, 1.12 + row * 2.2, 3.05, 2.05, m.title, m.items, { titleBg: m.color, borderColor: m.color });
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 9 — COMPLICATIONS
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.teal);
slideHeading(slide, "Complications", "Robbins Pathology · Harrison's Principles of Internal Medicine 22E");
const complications = [
{ icon: "💧", title: "Dehydration & Electrolyte Imbalance", desc: "Fluid sequestration into distended bowel ('third spacing')\nVomiting leads to hypovolaemia, hyponatraemia, hypokalaemia, metabolic alkalosis" },
{ icon: "🔴", title: "Bowel Ischaemia & Strangulation", desc: "Rising intraluminal pressure occludes mural vessels\nLeads to full-thickness infarction and gangrene" },
{ icon: "💥", title: "Perforation", desc: "Gangrenous bowel wall ruptures\nFaecal peritonitis → life-threatening" },
{ icon: "🦠", title: "Sepsis & Septic Shock", desc: "Bacterial translocation across ischaemic mucosa\nSystemic inflammatory response, multi-organ failure" },
{ icon: "⚡", title: "Aspiration Pneumonia", desc: "From profuse vomiting, particularly in obtunded patients\nRisk increases with delayed NGT placement" },
{ icon: "📉", title: "Short Bowel Syndrome", desc: "Following extensive bowel resection\nMalabsorption, TPN dependence, high morbidity" },
];
complications.forEach((c, i) => {
const col = i % 3;
const row = Math.floor(i / 3);
const x = 0.28 + col * 3.22;
const y = 1.12 + row * 2.1;
slide.addShape(pres.shapes.ROUNDED_RECTANGLE, {
x, y, w: 3.06, h: 1.95,
fill: { color: C.card }, line: { color: C.teal, pt: 1 }, rectRadius: 0.1,
shadow: { type: "outer", color: "000000", blur: 6, offset: 2, angle: 135, opacity: 0.2 },
});
slide.addText(c.icon + " " + c.title, {
x: x + 0.1, y: y + 0.08, w: 2.88, h: 0.48,
fontSize: 9.5, bold: true, color: C.yellow, fontFace: "Calibri", margin: 0, valign: "middle",
});
slide.addShape(pres.shapes.RECTANGLE, { x: x + 0.1, y: y + 0.58, w: 2.86, h: 0.02, fill: { color: C.teal }, line: { color: C.teal } });
slide.addText(c.desc, {
x: x + 0.1, y: y + 0.64, w: 2.86, h: 1.22,
fontSize: 8.8, color: C.light, fontFace: "Calibri", valign: "top", margin: 2,
});
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 10 — SPECIFIC ENTITIES: INTUSSUSCEPTION & VOLVULUS
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.accent);
slideHeading(slide, "Special Entities — Intussusception & Volvulus", "Robbins & Kumar Basic Pathology · Harrison's Principles 22E");
// Intussusception
slide.addShape(pres.shapes.RECTANGLE, {
x: 0.3, y: 1.12, w: 4.5, h: 0.35,
fill: { color: C.teal }, line: { color: C.teal },
});
slide.addText("INTUSSUSCEPTION", {
x: 0.3, y: 1.12, w: 4.5, h: 0.35,
fontSize: 12, bold: true, color: C.white, align: "center", valign: "middle", fontFace: "Calibri", margin: 0,
});
const intussItems = [
"Telescoping of a proximal bowel segment into a distal segment",
"Most common cause of intestinal obstruction in children <2 years",
"Usually idiopathic; may be triggered by Peyer patch hyperplasia (post-viral / rotavirus vaccine)",
"In adults: lead point is almost always a tumour or polyp",
"Clinical triad: colicky pain + abdominal mass + 'redcurrant jelly' stools",
"Diagnosis: ultrasound (target sign) or contrast enema",
"Treatment: contrast/air-pressure enema (children) — curative in 80%",
"Surgical resection required if lead-point tumour, peritonitis, or failed enema reduction",
"Left untreated → mesenteric vessel compression → infarction",
];
intussItems.forEach((item, i) => {
slide.addText([{ text: "▸ " + item, options: { color: C.light, fontSize: 9, fontFace: "Calibri" } }], {
x: 0.35, y: 1.52 + i * 0.35, w: 4.4, h: 0.32, margin: 0,
});
});
// Volvulus
slide.addShape(pres.shapes.RECTANGLE, {
x: 5.2, y: 1.12, w: 4.5, h: 0.35,
fill: { color: C.accent }, line: { color: C.accent },
});
slide.addText("VOLVULUS", {
x: 5.2, y: 1.12, w: 4.5, h: 0.35,
fontSize: 12, bold: true, color: C.white, align: "center", valign: "middle", fontFace: "Calibri", margin: 0,
});
const volvulusItems = [
"Axial rotation of bowel loop → closed-loop obstruction",
"Sigmoid volvulus: most common (elderly, chronic constipation, neuropsychiatric comorbidity)",
"Caecal volvulus: less common; congenital incomplete fixation of right colon",
"Midgut volvulus: neonates with malrotation → surgical emergency",
"Classic X-ray: 'coffee bean sign' (sigmoid) or 'bent inner tube' (caecum)",
"Sigmoid: first-line treatment is flexible sigmoidoscopy + rectal tube decompression",
"Caecal volvulus: requires right hemicolectomy",
"Recurrence rate after endoscopic decompression alone: 40–60% → elective sigmoidectomy advised",
"Untreated volvulus → strangulation → gangrene within hours",
];
volvulusItems.forEach((item, i) => {
slide.addText([{ text: "▸ " + item, options: { color: C.light, fontSize: 9, fontFace: "Calibri" } }], {
x: 5.25, y: 1.52 + i * 0.35, w: 4.4, h: 0.32, margin: 0,
});
});
// divider
slide.addShape(pres.shapes.RECTANGLE, { x: 4.95, y: 1.12, w: 0.04, h: 4.2, fill: { color: C.teal }, line: { color: C.teal } });
}
// ═══════════════════════════════════════════════════════════════════════════════
// SLIDE 11 — PROGNOSIS & KEY POINTS
// ═══════════════════════════════════════════════════════════════════════════════
{
let slide = pres.addSlide();
darkBG(slide);
topBar(slide, C.teal);
slideHeading(slide, "Prognosis & Key Clinical Pearls", "Harrison's Principles 22E · Sleisenger & Fordtran's · Robbins Pathology");
// Prognosis boxes
const prognosis = [
{ stat: "3–4 mo", label: "Median survival\ncancer-related obstruction", color: C.accent },
{ stat: "25–30%", label: "Cancer obstructions due\nto non-malignant cause", color: C.teal },
{ stat: "10–20%", label: "Surgical mortality\n(advanced malignancy)", color: "8B4513" },
{ stat: "~70%", label: "Adhesion SBO resolves\nwith conservative Rx", color: "2A7B9B" },
];
prognosis.forEach((p, i) => {
slide.addShape(pres.shapes.RECTANGLE, {
x: 0.25 + i * 2.4, y: 1.15, w: 2.2, h: 1.15,
fill: { color: p.color }, line: { color: p.color },
});
slide.addText(p.stat, {
x: 0.25 + i * 2.4, y: 1.18, w: 2.2, h: 0.58,
fontSize: 28, bold: true, color: C.white, align: "center", fontFace: "Calibri", margin: 0,
});
slide.addText(p.label, {
x: 0.25 + i * 2.4, y: 1.76, w: 2.2, h: 0.5,
fontSize: 8.5, color: C.white, align: "center", fontFace: "Calibri", margin: 0,
});
});
// Key pearls
slide.addText("Key Clinical Pearls", {
x: 0.3, y: 2.45, w: 9.4, h: 0.35,
fontSize: 13, bold: true, color: C.yellow, fontFace: "Calibri", margin: 0,
});
const pearls = [
"Hernias, adhesions, intussusception, and volvulus account for 80% of all mechanical obstructions.",
"Caecal dilation >12–14 cm on plain X-ray is a surgical emergency.",
"High-pitched tinkling bowel sounds are early; absent bowel sounds suggest strangulation.",
"CT abdomen is the gold standard — differentiates benign from malignant and detects strangulation.",
"Never use prokinetics in complete mechanical obstruction — use with caution in partial/functional ileus only.",
"Octreotide reduces intestinal secretions and effectively palliates inoperable malignant obstruction.",
"Volvulus: sigmoid first-line = endoscopic decompression; caecal = surgery; both need elective resection.",
"Intussusception in adults almost always has a pathological lead point — thorough investigation mandatory.",
];
pearls.forEach((p, i) => {
slide.addShape(pres.shapes.RECTANGLE, {
x: 0.3, y: 2.86 + i * 0.34, w: 0.06, h: 0.28,
fill: { color: C.accent }, line: { color: C.accent },
});
slide.addText(p, {
x: 0.45, y: 2.86 + i * 0.34, w: 9.2, h: 0.3,
fontSize: 9, color: C.light, fontFace: "Calibri", valign: "middle", margin: 0,
});
});
}
// ═══════════════════════════════════════════════════════════════════════════════
// Write file
// ═══════════════════════════════════════════════════════════════════════════════
pres.writeFile({ fileName: "/home/daytona/workspace/intestinal-obstruction-ppt/Intestinal_Obstruction.pptx" })
.then(() => console.log("✅ Presentation saved!"))
.catch(err => { console.error("Error:", err); process.exit(1); });
cd /home/daytona/workspace/intestinal-obstruction-ppt && node build.js 2>&1
pres.shapes.ELLIPSE. Let me check what shapes are available and fix:node -e "const p = require('pptxgenjs'); const pr = new p(); console.log(Object.keys(pr.shapes).filter(k => k.toLowerCase().includes('elli') || k.toLowerCase().includes('circ') || k.toLowerCase().includes('oval')));"
~/intestinal-obstruction-ppt/build.js
Successfully replaced 1 instance(s) of the string in '/home/daytona/workspace/intestinal-obstruction-ppt/build.js'
cd /home/daytona/workspace/intestinal-obstruction-ppt && node build.js 2>&1
Intestinal Obstruction
Presentation · PPTX
| # | Slide |
|---|---|
| 1 | Title Slide — bold typographic design with topic tags |
| 2 | Definition & Overview — types (mechanical, functional, strangulation), key stats |
| 3 | Aetiology — 8 cause cards + Robbins diagram of 4 mechanical causes |
| 4 | Pathophysiology — 6-step cascade: lumen block → distension → ischaemia → perforation |
| 5 | Clinical Features — symptoms, signs, SBO vs LBO comparison |
| 6 | Investigations — AXR, CT, USS, labs + actual X-ray showing stepladder air-fluid levels |
| 7 | CT Imaging — side-by-side SBO vs LBO volvulus CT images with malignant vs benign CT criteria |
| 8 | Management — 6 panels: resuscitation, conservative, pharmacological, surgical, endoscopic, special scenarios |
| 9 | Complications — dehydration, ischaemia, perforation, sepsis, aspiration, short bowel |
| 10 | Special Entities — intussusception vs volvulus deep-dive, side by side |
| 11 | Prognosis & Key Pearls — 4 stats boxes + 8 clinical pearls |
Detailed answer according to weightage
cd /home/daytona/workspace/attachments/5f186272-d6bd-4944-8269-f338298695d1/ && python3 -c " import pdfplumber with pdfplumber.open('January 2025.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages): print(f'--- PAGE {i+1} ---') print(page.extract_text()) print() " 2>&1
cd /home/daytona/workspace/attachments/5f186272-d6bd-4944-8269-f338298695d1/ && python3 -c " import subprocess, sys # Convert PDF pages to images then OCR result = subprocess.run(['pdftoppm', '-r', '200', 'January 2025.pdf', '/tmp/jan2025_page'], capture_output=True, text=True) print('pdftoppm:', result.returncode, result.stderr) import os files = sorted([f for f in os.listdir('/tmp') if f.startswith('jan2025_page')]) print('Generated files:', files) " 2>&1
python3 -c " import pytesseract from PIL import Image import os pages = sorted([f for f in os.listdir('/tmp') if f.startswith('jan2025_page')]) for pg in pages: img = Image.open(f'/tmp/{pg}') text = pytesseract.image_to_string(img) print(f'=== {pg} ===') print(text) print() " 2>&1
Enumerate all named signs in love and bailey 28th edition
python3 -c " import re, os blocks = [f'/textbooks/9780367548117/9780367548117_block{i}.md' for i in range(1,14)] # Pattern: named sign = word(s) ending in 's or a proper name followed by 'sign' # e.g. 'Murphy's sign', 'Rovsing sign', 'Battle's sign' pattern = re.compile(r\"([A-Z][a-zA-Z''\u2019\-]+(?:\s+[A-Z][a-zA-Z''\u2019\-]+)*(?:'s|'s)?\\s+sign)\", re.IGNORECASE) # Also capture: 'sign of X' constructs and named tests pattern2 = re.compile(r\"([A-Z][a-zA-Z''\u2019\-]+(?:'s|'s)?\\s+(?:sign|test|manoeuvre|maneuver))\", re.I) all_signs = {} for blk in blocks: try: with open(blk) as f: text = f.read() matches = pattern2.findall(text) for m in matches: m_clean = m.strip() if m_clean not in all_signs: # find context idx = text.find(m_clean) start = max(0, idx-80) end = min(len(text), idx+len(m_clean)+100) ctx = text[start:end].replace('\n',' ') all_signs[m_clean] = ctx except Exception as e: print(f'Error {blk}: {e}') # Filter - only keep signs with proper names (not generic words) excluded = {'Shifting','Sliding','Positive','Negative','Classic','Pathological','Radiological','Vital','Warning','Typical'} final = {k:v for k,v in all_signs.items() if not any(k.startswith(ex) for ex in excluded)} print(f'Total unique named signs/tests found: {len(final)}') for k,v in sorted(final.items()): print(f' {k}') " 2>&1 | head -200
/textbooks/ as a mount. Let me find the real path:find /skills /home/daytona -name "9780367548117_block1.md" 2>/dev/null | head -5; ls /textbooks/9780367548117/ 2>/dev/null | head -5
read_file. Let me do comprehensive FTS queries with different named-sign patterns to extract all of them from Bailey & Love:You need to extract ALL named clinical signs, tests, and manoeuvres from Bailey and Love's Short Practice of Surgery 28th Edition (ISBN: 9780367548117) from the medical library database. The book has 13 blocks. Use query_library_db with paragraphs_fts to search for all named signs. The goal is to find EVERY named sign (e.g., Murphy's sign, Rovsing's sign, Battle's sign, etc.) mentioned in the book. Use these SQL queries systematically: Query 1: Broad FTS for "sign" in this book, pages 1-300: ```sql SELECT section_heading, snippet(paragraphs_fts, 0, '', '', '...', 80) AS snippet, line_start, '/textbooks/' || block_file_path AS file_path FROM paragraphs_fts WHERE paragraphs_fts MATCH 'sign' AND book_isbn = '9780367548117' ORDER BY line_start LIMIT 20 OFFSET 40 ``` Run this query with OFFSET 0, 20, 40, 60, 80, 100, 120, 140, 160, 180 to get the first 200 sign-containing paragraphs. Then also run these specific named sign searches to catch any missed: - MATCH '"Murphy" AND sign' - MATCH '"Rovsing" AND sign' - MATCH '"Courvoisier" AND sign' - MATCH '"Cullen" AND sign' - MATCH '"Grey Turner" AND sign' - MATCH '"Charcot" AND sign' - MATCH '"Boas" AND sign' - MATCH '"Psoas" AND sign' - MATCH '"Obturator" AND sign' - MATCH '"Tinel" AND sign' - MATCH '"Phalen" AND sign' - MATCH '"Trousseau" AND sign' - MATCH '"Chvostek" AND sign' - MATCH '"Quincke" AND sign' - MATCH '"Corrigan" AND sign' - MATCH '"Traube" AND sign' - MATCH '"de Musset" AND sign' All queries must include: AND book_isbn = '9780367548117' From all results, compile a COMPLETE LIST of every named sign, test, or manoeuvre found. For each entry provide: - Name of sign - What it indicates/describes (brief, from the snippet context) - The section/chapter context Return the complete compiled list as your final answer. Be exhaustive - include every single named sign you find.
| # | Sign/Test | What It Means |
|---|---|---|
| 1 | Hoffmann's sign | Reflex flexion of thumb/index on flicking the middle finger distal phalanx → upper motor neurone lesion / cervical myelopathy |
| 2 | Babinski response | Upgoing plantar reflex → UMN lesion |
| 3 | Lasègue's sign | Radicular pain aggravated by ankle dorsiflexion during straight leg raise → L4–S1 nerve root irritation |
| 4 | Straight Leg Raise test | Elevation of extended leg provokes radicular pain → L4/L5/S1 disc herniation |
| 5 | Crossed SLR test | Elevating the asymptomatic leg reproduces contralateral sciatica → strongly suggests disc herniation |
| 6 | Femoral nerve stretch test | Hip extension + knee flexion in prone position → L2–L4 nerve root tension |
| 7 | Spurling's test | Head extension + lateral rotation + axial compression → cervical foraminal stenosis / nerve root entrapment |
| 8 | Inverted Napoleon hat sign | AP spine XR: L5 body "hat" displaced anterior to sacrum → high-grade spondylolisthesis / spondyloptosis |
| # | Sign/Test | What It Means |
|---|---|---|
| 9 | Neer's sign | Painful forward shoulder elevation relieved by subacromial LA → subacromial impingement |
| 10 | Hawkins' test | Internal rotation at 90° forward flexion → subacromial impingement / anterior rotator cuff |
| 11 | Jobe's test (empty can test) | Resisted abduction with arm internally rotated → supraspinatus tear / impingement |
| 12 | Painful arc test | Pain from 60°–120° abduction → rotator cuff impingement or AC joint pathology |
| 13 | Apprehension test | External rotation of abducted shoulder provokes apprehension → anterior glenohumeral instability |
| 14 | Relocation test | Posterior pressure relieves apprehension in anterior instability test → confirms anterior instability |
| 15 | Sulcus sign | Downward traction on humerus produces sulcus below acromion → multidirectional/inferior instability |
| 16 | Light bulb sign | Internally rotated humeral head on AP XR like a light bulb → posterior shoulder dislocation |
| # | Sign/Test | What It Means |
|---|---|---|
| 17 | Tinel's sign (elbow) | Percussion over ulnar nerve at cubital tunnel → ulnar nerve compression |
| # | Sign/Test | What It Means |
|---|---|---|
| 18 | Tinel's sign (wrist) | Percussion over carpal tunnel causes tingling → carpal tunnel syndrome |
| 19 | Phalen's test | Maximum wrist flexion reproduces paraesthesia → carpal tunnel syndrome |
| 20 | Durkan's compression test | Direct pressure over carpal tunnel → most sensitive/specific for CTS |
| 21 | Froment's sign | Thumb IP joint flexion to hold paper between thumb and index finger → ulnar nerve palsy (adductor pollicis weakness) |
| 22 | Allen's test | Sequential release of radial then ulnar artery → assesses dual hand blood supply |
| 23 | Finkelstein's test | Pain over 1st extensor compartment on ulnar deviation with thumb clasped → De Quervain's tenosynovitis |
| 24 | 'OK' sign | Inability to form a circle with thumb and index finger → anterior interosseous nerve palsy |
| # | Sign/Test | What It Means |
|---|---|---|
| 25 | C-sign | Patient cups anterolateral groin in a C-shape to locate pain → intra-articular hip pathology (FAI, dysplasia) |
| 26 | Crescent sign (hip) | Subchondral radiolucent line on AP pelvis XR → avascular necrosis (AVN) of femoral head, Ficat-Arlet Stage III |
| # | Sign/Test | What It Means |
|---|---|---|
| 27 | Lachman test | Anterior tibial translation at 20–30° knee flexion → ACL rupture |
| 28 | Anterior drawer test (knee) | Anterior tibial translation at 90° → ACL injury |
| 29 | Pivot shift test | Combined valgus + rotation stress → ACL-deficient anterolateral instability |
| 30 | McMurray's test | Click at joint line with rotation + flexion → meniscal tear |
| 31 | Patellar apprehension test (Fairbank's) | Lateral patellar displacement provokes apprehension → patellar instability |
| 32 | 'J' sign | Lateral patellar subluxation at terminal extension → patellofemoral maltracking |
| # | Sign/Test | What It Means |
|---|---|---|
| 33 | Anterior drawer sign (ankle) | Anterior talar translation on tibia → lateral ankle ligament disruption (ATFL) |
| 34 | Talar tilt test | Varus stress on talus → ATFL and/or CFL ligament injury |
| 35 | 'Too many toes' sign | Forefoot visible behind hindfoot on posterior view → tibialis posterior insufficiency / pes planus |
| 36 | Single-foot tiptoe test | Unable to lift heel on affected side → tibialis posterior tendon insufficiency |
| 37 | Sunset foot sign (dependent rubor) | Elevation → pallor; dependent → dusky red → critical lower limb ischaemia |
| # | Sign/Test | What It Means |
|---|---|---|
| 38 | Quincke's sign | Visible capillary pulsation of nail bed → aortic regurgitation (wide pulse pressure) |
| 39 | de Musset's sign | Pulsatile head bobbing → aortic regurgitation |
| 40 | Corrigan's sign | Visible arterial pulsation in the neck → aortic regurgitation |
| 41 | Traube's sign | 'Pistol shot' on femoral artery auscultation → aortic regurgitation |
| 42 | Müller's sign | Uvular pulsation → aortic regurgitation |
| 43 | Three sign | Aortic knuckle double-bulge on chest XR → coarctation of the aorta |
| 44 | Kussmaul's sign | JVP rises on inspiration → cardiac tamponade / constrictive pericarditis |
| 45 | Hamman's sign | Crunching mediastinal sound on cardiac auscultation → oesophageal perforation / Boerhaave's syndrome |
| # | Sign/Test | What It Means |
|---|---|---|
| 46 | Crescent sign / Meniscus sign (hydatid) | Radiolucent crescent between pericyst and endocyst on CXR → pulmonary hydatid, impending rupture |
| 47 | Water-lily sign | Collapsed endocyst floating in residual fluid on CT → ruptured pulmonary hydatid |
| # | Sign/Test | What It Means |
|---|---|---|
| 48 | Murphy's sign | Deep palpation in right subcostal area on inspiration arrests breathing due to pain → acute cholecystitis |
| 49 | Ultrasonographic Murphy's sign | Tenderness when probe is pressed over sonographically localised gallbladder → acute cholecystitis |
| 50 | Grey Turner's sign | Flank skin discoloration (retroperitoneal blood) → severe acute pancreatitis, leaking AAA |
| 51 | Cullen's sign | Periumbilical skin discoloration (blood tracking along round ligament) → severe acute pancreatitis, ruptured ectopic |
| 52 | Rigler's sign | Air on both sides of bowel wall on plain XR → hollow viscus perforation |
| 53 | Rigler's triad | Small bowel obstruction + pneumobilia + ectopic calcified gallstone → gallstone ileus |
| 54 | Shifting dullness | Percussion dullness shifts with position → ascites |
| 55 | Shifting tenderness | Tenderness shifts with position → mesenteric adenitis (differentiates from appendicitis) |
| 56 | Pointing sign | Patient points precisely to the location of pain → acute appendicitis |
| 57 | Rovsing's sign | LIF palpation causes RIF pain → acute appendicitis |
| 58 | Psoas sign | Pain on right hip extension → retrocaecal appendicitis irritating psoas |
| 59 | Obturator sign | Hip flexion + internal rotation causes hypogastric pain → pelvic appendicitis (obturator internus contact) |
| 60 | McBurney's point | Maximum tenderness 1/3 of the way from ASIS to umbilicus → acute appendicitis |
| # | Sign/Test | What It Means |
|---|---|---|
| 61 | Courvoisier's sign (Courvoisier's law) | Palpable non-tender dilated gallbladder + jaundice → periampullary / pancreatic head malignancy (not stones) |
| 62 | Double duct sign | Concurrent CBD + main pancreatic duct narrowing on ERCP/MRCP → pancreatic head carcinoma |
| 63 | Sentinel loop | Localised small bowel ileus on plain AXR → non-specific sign of acute pancreatitis |
| 64 | Colon cut-off sign | Abrupt cessation of colonic gas at splenic flexure → acute pancreatitis |
| 65 | Renal halo sign | Perinephric fat plane lucency on plain AXR → acute pancreatitis |
| 66 | Mercedes-Benz sign / Seagull sign | Triradiate/biradiate radiolucent fissure inside calcified gallstone → nitrogen gas in gallstone |
| 67 | Tumbling sign | Gallstone changes position on serial radiographs → gallstone ileus |
| 68 | Triangular cord sign | Hyperechoic triangular tissue at liver hilum on ultrasound → biliary atresia |
| # | Sign/Test | What It Means |
|---|---|---|
| 69 | String sign of Kantor | Long narrow stricture of terminal ileum on barium study → Crohn's disease stricture |
| 70 | Target sign | Concentric rings on abdominal USS/CT → intussusception |
| 71 | Sign of Dance | Feeling of emptiness in right iliac fossa on palpation → ileocolic intussusception |
| 72 | Non-lift sign | Failure of lesion to lift on submucosal injection → submucosal invasion (malignancy or fibrosis) |
| 73 | Sign of the groove | Lymph node masses above and below the inguinal ligament separated by the ligament groove → lymphogranuloma venereum |
| 74 | Pink colour sign | Loss of pink staining with Lugol's iodine on chromoendoscopy → oesophageal squamous neoplasia |
| # | Sign/Test | What It Means |
|---|---|---|
| 75 | Homans' sign | Calf pain on foot dorsiflexion → DVT (poor sensitivity and specificity; largely historical) |
| 76 | Portal vein gas (CT sign) | Gas in portal/mesenteric veins on CT → widespread bowel infarction (gravely poor prognosis) |
| 77 | Mickey Mouse sign | Transverse USS of groin showing CFV + GSV flanking CFA → identifies saphenofemoral junction in duplex scanning |
| # | Sign/Test | What It Means |
|---|---|---|
| 78 | Troisier's sign (Virchow's node) | Hard palpable left supraclavicular node → advanced intra-abdominal malignancy |
| 79 | Trousseau's sign (migratory thrombophlebitis) | Recurrent migratory superficial thrombophlebitis → occult malignancy (especially pancreatic) |
| 80 | Peau d'orange | Orange-peel skin appearance of breast → locally advanced breast cancer (cutaneous lymphatic obstruction) |
| 81 | Winking owl sign | Absent pedicle on AP spine radiograph → vertebral metastasis |
| # | Sign/Test | What It Means |
|---|---|---|
| 82 | Chvostek's sign | Ipsilateral facial twitch on tapping facial nerve below zygoma → hypocalcaemia / post-thyroidectomy hypoparathyroidism |
| 83 | Trousseau's sign (carpopedal spasm) | Carpopedal spasm with BP cuff inflation above systolic → hypocalcaemia (Note: Trousseau appears twice with different meanings - also as migratory thrombophlebitis in malignancy) |
| # | Sign/Test | What It Means |
|---|---|---|
| 84 | Hutchinson's sign | Nail fold pigmentation extending onto nail fold → subungual melanoma |
| 85 | Nikolsky sign | Lateral pressure detaches epidermis → toxic epidermal necrolysis (TEN) / deep partial thickness burns |
| # | Sign/Test | What It Means |
|---|---|---|
| 86 | Finger test | Easy tissue dissection through 2 cm fascial incision with minimal resistance → necrotising fasciitis |
| 87 | Dot-in-circle sign | High-signal lesions within low-signal matrix on MRI → pathognomonic of mycetoma |
| # | Sign/Test | What It Means |
|---|---|---|
| 88 | Battle's sign | Post-auricular bruising over mastoid → skull base (petrous temporal) fracture |
| 89 | Raccoon eyes / Panda eyes | Bilateral periorbital bruising → skull base fracture |
| 90 | Holman-Miller sign (antral sign) | Anterior bowing of posterior antral wall on radiograph → juvenile nasopharyngeal angiofibroma |
| 91 | Hallpike test (Dix-Hallpike) | Rapid head-turn/extension produces vertigo + nystagmus → benign paroxysmal positional vertigo |
| 92 | Leukokoria | White pupillary reflex → retinoblastoma (must be excluded in any child) |
| # | Sign/Test | What It Means |
|---|---|---|
| 93 | Blue-dot sign | Dark blue mass visible through scrotal skin → torsion of the appendix testis |
| 94 | Prehn's sign | Testicular pain relieved by elevation → epididymo-orchitis (not torsion, which is not relieved) |
| 95 | Cobra head sign | IVU appearance of ureterocele → simple ureterocele |
| 96 | Reverse 'J' sign | Dilated ureter curving behind IVC on IVU → retrocaval ureter |
| 97 | Bear's paw sign | Non-functioning enlarged kidney with contracted pelvis on CT → xanthogranulomatous pyelonephritis |
| 98 | Claw sign | Normal renal parenchyma draped around tumour on CT → Wilms' tumour (nephroblastoma) |
| # | Sign/Test | What It Means |
|---|---|---|
| 99 | Sliding sign | Gestational sac fails to slide on cervix on USS → cervical ectopic pregnancy |
| 100 | Follicular ring sign | Peripheral displacement of follicles → ovarian torsion |
| 101 | Whirlpool sign | Twisted pedicle on grey-scale and colour Doppler → ovarian torsion |
Detailed answer according to weightage from standard textbooks
| Class | Description |
|---|---|
| C0 | No visible or palpable signs |
| C1 | Telangiectasia or reticular veins |
| C2 | Varicose veins (>3 mm diameter) |
| C3 | Oedema |
| C4a | Pigmentation/eczema |
| C4b | Lipodermatosclerosis/atrophie blanche |
| C5 | Healed venous ulcer |
| C6 | Active venous ulcer |
| Complication | Details |
|---|---|
| Superficial vein thrombosis (thrombophlebitis) | Painful, tender, cord-like thrombosed vein; erythema; risk of extension to deep system if within 3 cm of SFJ — anticoagulate |
| Haemorrhage | Spontaneous rupture (especially in elderly with thin overlying skin); can be severe; managed by elevation and compression |
| Venous eczema | Pruritic, scaly, erythematous skin from chronic venous hypertension |
| Lipodermatosclerosis | Chronic fibrotic change of subcutaneous fat; "inverted champagne bottle" leg appearance |
| Atrophie blanche | White stellate scarring with surrounding hyperpigmentation; marker of severe chronic venous disease |
| Venous ulceration | Medial gaiter area above medial malleolus; painless (unless infected); heals with compression therapy (4-layer bandaging); recurrence rate high without treatment of underlying reflux |
| Calcification (phleboliths) | Calcified thrombi within vein |
| DVT | Secondary to venous stasis and valve incompetence |
| Segment | Location |
|---|---|
| I | Caudate lobe (posterior) |
| II | Posterior left (superior) |
| III | Anterior left (inferior) |
| IV (a & b) | Medial left lobe (quadrate lobe) |
| V | Right lobe anterior inferior |
| VI | Right lobe posterior inferior |
| VII | Right lobe posterior superior |
| VIII | Right lobe anterior superior |
| Host | Species | Role |
|---|---|---|
| Definitive host | Dogs (also wolves, foxes, dingoes) | Adult tapeworm lives in small intestine |
| Intermediate host | Sheep, cattle, pigs (and accidentally: humans) | Larval form (hydatid cyst) develops in viscera |
Important: Diagnostic aspiration is CONTRAINDICATED due to risk of anaphylaxis and peritoneal seeding
| Complication | Details |
|---|---|
| Rupture into peritoneum | Anaphylaxis (histamine release from cyst fluid); peritoneal dissemination → secondary peritoneal hydatidosis; requires emergency laparotomy + anti-allergic measures |
| Rupture into biliary tree | Most common complication (5–25%); presents as cholangitis, jaundice, biliary colic; bilious hydatid fluid (bile-stained); daughter cysts can obstruct CBD → obstructive jaundice; requires ERCP + sphincterotomy |
| Secondary infection/abscess | Bacterial superinfection; hepatic abscess; fever, rigors, pain; requires antibiotics ± drainage |
| Rupture into pleura/lung | Pleural effusion, empyema, hydatid bronchial fistula, expectoration of "salt water" sputum with daughter cysts ("vomique") |
| Compression of adjacent structures | Portal hypertension, biliary obstruction, IVC compression |
| Secondary peritoneal/pulmonary hydatidosis | From seeding during rupture or surgery |
| Cyst calcification | Usually indicates inactive cyst — not a dangerous complication |
| Recurrence | 2–25% after surgery depending on technique and use of medical therapy |
| Letter | Action |
|---|---|
| L | Listen — hear the patient's/family's concerns |
| E | Explain — what happened, honestly and clearly |
| A | Apologise — genuinely, early |
| R | Record — document the conversation and actions |
| N | No recurrence — learn and improve |
| Cause | Features |
|---|---|
| Embolism (~30%) | Sudden onset in a limb with no prior symptoms; cardiac source in 85% (AF, recent MI with mural thrombus, prosthetic heart valve, infective endocarditis); non-cardiac: aortic aneurysm, atherosclerotic plaque; lodges at bifurcations (femoral bifurcation most common) |
| Thrombosis in situ (~60%) | Background history of claudication (chronic ischaemia); acute deterioration due to plaque rupture/thrombosis in a stenosed atherosclerotic vessel; proximal/distal vessels poorly developed — more difficult to treat |
| Thrombosed popliteal artery aneurysm | Young/middle-aged male; bilateral popliteal examination; sudden onset; distal thromboembolism; poor prognosis |
| Dissection | Aortic dissection extending into iliac/femoral vessels |
| Trauma | Blunt (fractures — supracondylar #, posterior knee dislocation) or penetrating injury |
| Popliteal artery entrapment | Young athletic male; repetitive compression by anomalous medial head of gastrocnemius |
| Iatrogenic | After cardiac catheterisation, intra-arterial drug injection, tourniquet mishap |
| Phlegmasia cerulea dolens (venous) | Massive DVT occluding all venous outflow → secondary arterial compromise (limb blue, swollen, extremely tender) |
| Sign | Significance |
|---|---|
| Pain | Sudden, severe; embolic onset more acute than thrombotic |
| Pallor | Initially; progresses to mottling → fixed mottling (skin death) |
| Pulselessness | Absent distal pulses; compare with contralateral limb |
| Paraesthesia | Loss of light touch (first sign of neural ischaemia) → progresses to dense anaesthesia; indicates threatened limb |
| Paralysis | Inability to move foot/toes → irreversible muscle ischaemia; indicates immediately threatened/irreversible ischaemia |
| Perishing cold | Skin cold to touch; there is a clear level at which warmth of normal skin transitions to cold ischaemic skin — indicates level of occlusion |
| Grade | Category | Sensory Loss | Motor Deficit | Arterial Doppler | Venous Doppler | Prognosis |
|---|---|---|---|---|---|---|
| I | Viable | None | None | Audible | Audible | No immediate threat |
| IIA | Marginally threatened | None/minimal (toes) | None | Inaudible | Audible | Salvageable if promptly treated |
| IIB | Immediately threatened | More than toes | Mild/moderate | Inaudible | Audible | Salvageable with immediate revascularisation |
| III | Irreversible | Profound/insensate | Paralysed | Inaudible | Inaudible | Amputation |
| Type | Mechanism | Target Organs | Key Injury |
|---|---|---|---|
| Primary | Overpressure wave | Lung, ear, GIT, sinuses | Blast lung, TM rupture, bowel perforation |
| Secondary | Fragmentation | Any (ubiquitous) | Penetrating trauma, vascular injury |
| Tertiary | Blast wind/displacement | Skeleton, brain, spine | Fractures, TBI, traumatic amputation |
| Quaternary | Burns, toxic, crush | Skin, airway, muscle | Burns, inhalation injury, rhabdomyolysis |
Detailed answers according to weightage from standard textbook
| Feature | Detail |
|---|---|
| Nature | Serine protease; member of the kallikrein family (KLK3) |
| Produced by | Prostatic ductal and acinar epithelium |
| Normal range | Total PSA <4 ng/mL (age-adjusted ranges used) |
| Uses | Screening, diagnosis, staging, post-treatment monitoring, surveillance |
| Limitations | Not cancer-specific — elevated in BPH, prostatitis, recent ejaculation, instrumentation, biopsy |
| Feature | Detail |
|---|---|
| Nature | Glycoprotein; normal foetal serum protein |
| Source | Yolk sac cells (endodermal sinus tumour) |
| Genitourinary use | Non-seminomatous germ cell tumours (NSGCT) — yolk sac tumour component; NOT elevated in pure seminoma |
| Half-life | ~5 days |
| Normal | <10 ng/mL |
| Uses | Diagnosis, staging (if elevated → upgrades to metastatic even if CT normal), post-chemotherapy response monitoring, surveillance |
| Feature | Detail |
|---|---|
| Nature | Glycoprotein hormone; β-subunit is tumour-specific |
| Source | Syncytiotrophoblastic cells |
| Genitourinary use | Testicular germ cell tumours — both seminoma (5–10% of cases, mildly elevated) and NSGCT (choriocarcinoma, high elevation) |
| Half-life | ~24–36 hours |
| Normal | <5 IU/L |
| Uses | Diagnosis, staging, monitoring, detection of relapse; persistent elevation post-orchiectomy indicates metastatic disease |
| Marker | Type | Sensitivity | Specificity | Comment |
|---|---|---|---|---|
| NMP22 (nuclear matrix protein 22) | Urine ELISA | 65% | 80% | FDA-approved; point-of-care test |
| BTA-stat / BTA-TRAK (bladder tumour antigen) | Urine immunoassay | 57–83% | 60–75% | Detects complement factor H-related protein |
| UroVysion (FISH) | Urine cytology | 69–87% | 96% | FISH for chromosomes 3, 7, 17 and 9p21 deletion; best for high-grade TCC |
| ImmunoCyt | Urine cytology + fluorescence | 67–79% | 79% | Supplementary to cytology |
| Urinary cytology | Microscopy | 40–60% (low-grade), 90% (high-grade) | 95% | Gold standard for high-grade; operator-dependent |
| CYFRA 21-1 | Urine cytokeratin fragment | Variable | Variable | Bladder TCC monitoring |
| Survivin | Urine | >75% | High | Apoptosis inhibitor; emerging marker |
| Marker | Primary GU Tumour | Notes |
|---|---|---|
| PSA | Prostate carcinoma | Most important GU marker |
| AFP | NSGCT (yolk sac tumour) | Not elevated in pure seminoma |
| β-hCG | Seminoma, NSGCT (choriocarcinoma) | Highest in choriocarcinoma |
| LDH | Advanced testicular GCT | Reflects tumour bulk |
| PLAP | Seminoma | 70% elevation |
| NMP22 | Bladder TCC | Urine marker |
| BTA | Bladder TCC | Urine marker |
| UroVysion | High-grade bladder TCC | Best specificity |
| Chromogranin A | Neuroendocrine, CRPC | NE differentiation |
| Category | Tumour Type | % |
|---|---|---|
| Primary | Renal cell carcinoma (RCC) | 80–85% |
| Primary | Urothelial carcinoma of the renal pelvis | 7–10% |
| Primary | Wilms' tumour (nephroblastoma) | Predominant in children |
| Primary | Oncocytoma | 5–7% (benign) |
| Primary | Angiomyolipoma | Benign hamartoma |
| Primary | Collecting duct carcinoma | Rare, aggressive |
| Secondary | Metastases (lung, breast, colon, contralateral kidney) | ~5% |
| Type | Frequency | Key Genetic Event | Pathway |
|---|---|---|---|
| Clear cell RCC | 65% | Loss/mutation of VHL gene (3p25) | HIF → VEGF → angiogenesis; also histone methylation regulators (PBRM1, SETD2, BAP1) |
| Papillary RCC (Type I) | 10–15% | MET proto-oncogene activation (7q31); trisomy 7, 17 | MET → cell proliferation; often multifocal, bilateral |
| Papillary RCC (Type II) | Less common | HLRCC (fumarate hydratase mutation); aggressive | Warburg effect |
| Chromophobe RCC | 5–7% | Multiple chromosomal losses (1, 2, 6, 10, 13, 17, 21) | Loss of whole chromosomes; better prognosis |
| Collecting duct carcinoma | <1% | Similar to urothelial carcinoma | Very aggressive |
| Stage | Description |
|---|---|
| T1a | Tumour ≤4 cm, confined to kidney |
| T1b | Tumour >4–7 cm, confined to kidney |
| T2a | Tumour >7–10 cm, confined to kidney |
| T2b | Tumour >10 cm, confined to kidney |
| T3a | Tumour extends into the renal vein or its segmental branches, or invades pelvicalyceal system, or invades perirenal/renal sinus fat (but not beyond Gerota's fascia) |
| T3b | Tumour grossly extends into the IVC below the diaphragm |
| T3c | Tumour grossly extends into IVC above the diaphragm or into the wall of the IVC |
| T4 | Tumour invades beyond Gerota's fascia (including contiguous extension into adrenal gland) |
| Stage | T | N | M |
|---|---|---|---|
| I | T1 | N0 | M0 |
| II | T2 | N0 | M0 |
| III | T1–T2 | N1 | M0 |
| III | T3 | N0–N1 | M0 |
| IV | T4 | Any | M0 |
| IV | Any | Any | M1 |
| Syndrome | Mediator | Frequency |
|---|---|---|
| Hypercalcaemia | PTHrP, prostaglandins, OAF | 5–10%; can be life-threatening |
| Polycythaemia | Ectopic EPO | 3–4%; erythrocytosis |
| Hypertension | Ectopic renin, AV fistula | 20–40% |
| Hepatic dysfunction (Stauffer syndrome) | Unknown cytokines | Non-metastatic hepatosplenomegaly, elevated ALP/LFTs, fever; resolves after nephrectomy |
| Amyloidosis | Chronic inflammation | Rare |
| Neuropathy/myopathy | Unknown | Rare |
| Pyrexia of unknown origin | Cytokines (IL-6) | 20%; can be presenting feature |
| Cushing syndrome | Ectopic ACTH | Rare |
| Gynaecomastia | Gonadotrophin-like substances | Rare |
1500 mL blood in the pleural cavity (or >200 mL/hour drainage for 2–4 hours)
| Indication | Rationale |
|---|---|
| Penetrating chest trauma with witnessed cardiac arrest (signs of life within 10 min) | Release tamponade, cardiac massage, control aorta |
| Massive haemothorax with haemodynamic instability | Hemorrhage control |
| Air embolism post-thoracic injury | Open heart to expel air |
| Penetrating trauma to the heart | Direct cardiac repair |
| Complication | Notes |
|---|---|
| Recurrent UTI | Stasis within the diverticulum; E. coli most common |
| Vesical calculi | Struvite/calcium oxalate stones from infection/stasis within diverticulum |
| Vesicoureteric reflux | If diverticulum at or near ureteric orifice (Hutch) |
| Hydronephrosis | Diverticulum compresses ureter |
| Carcinoma (important) | Squamous cell carcinoma most common (from chronic irritation); also TCC; poor prognosis — no muscle in diverticulum wall = no staging barrier; very early invasion of perivesical fat |
| Perforation | Rare; spontaneous or traumatic |
| Incomplete emptying/retention | Large diverticulum compresses urethra |
| Symptom | Definition |
|---|---|
| Urgency | Sudden compelling desire to pass urine that is difficult to defer |
| Urinary frequency (daytime frequency) | Voiding more than 7 times a day (>8 voids/day when strictly defined) |
| Nocturia | Waking from sleep one or more times to void; ≥2 episodes clinically significant |
| Urgency urinary incontinence | Involuntary loss of urine associated with urgency |
| Stress urinary incontinence | Involuntary loss of urine on effort/exertion, sneezing, or coughing |
| Mixed incontinence | Features of both stress and urgency incontinence |
| Enuresis | Involuntary loss of urine during sleep |
| Bladder pain/dysuria | Suprapubic discomfort related to filling; burning on micturition |
| Increased bladder sensation | Feeling of need to void earlier than usual |
| Symptom | Definition |
|---|---|
| Hesitancy | Difficulty initiating urination; delay between trying to void and urine flow starting |
| Poor/weak stream | Reduced urinary flow compared to previous experience |
| Straining | Muscular effort (abdominal straining, Valsalva) required to initiate or maintain urine flow |
| Intermittency | Urine flow that stops and starts on one or more occasions during micturition |
| Terminal dribbling | Prolonged final part of micturition, where the flow has slowed to a trickle/dribble |
| Incomplete emptying | Feeling that the bladder has not emptied completely after micturition |
| Splitting of stream | Forking or spraying of urinary stream (urethral stricture) |
| Spraying | — |
| Post-micturition dribble | Involuntary loss of urine immediately after micturition has ended (urine retained in the urethra) |
| Symptom | Definition |
|---|---|
| Post-micturition dribble | Involuntary passage of urine shortly after finishing voiding; urine pooled in bulbar urethra |
| Feeling of incomplete emptying | Persistent sensation of bladder not fully emptied |
| Cause | Predominant Symptom Type |
|---|---|
| BPH (Benign prostatic hyperplasia) | Voiding > Storage |
| Bladder outlet obstruction (BOO) | Voiding |
| Overactive bladder (OAB) | Storage |
| Prostate carcinoma | Mixed |
| Urethral stricture | Voiding (poor stream, spraying) |
| Neurogenic bladder | Mixed |
| UTI/prostatitis | Storage (acute, with dysuria, fever) |
| Bladder stone | Storage + haematuria |
| Bladder tumour | Storage (haematuria) |
| Detrusor instability | Storage |
| Organism Group | Species | Role |
|---|---|---|
| Microaerophilic/anaerobic streptococci | Streptococcus milleri group, peptostreptococci | Creates anaerobic microenvironment; produces hyaluronidase → tissue invasion; inhibits PMN function |
| Aerobic gram-negative rods | Proteus mirabilis, E. coli, Klebsiella, Pseudomonas | Secondary invaders; produce proteases, collagenases → tissue liquefaction and spread |
| Other contributors | Staphylococcus aureus | Coagulase → thrombosis of microvasculature |
| Feature | Meleney's Gangrene | Necrotising Fasciitis | Gas Gangrene (Clostridial) |
|---|---|---|---|
| Speed | Slow (days-weeks) | Rapid (hours) | Very rapid (hours) |
| Pain | Mild | Severe (early then anaesthesia) | Severe |
| Fascia | Spared | Involved | Spared |
| Gas | Absent | Sometimes | Yes (crepitus) |
| Organisms | Synergistic polymicrobial | Group A Strep ± polymicrobial | Clostridium spp. |
| Toxicity | Moderate | Severe | Severe |
| Skin appearance | Concentric zones | Wooden hard, 'dish water' fluid | Bronze/bullae |
| Domain | Management |
|---|---|
| Neurosurgery | VP shunt monitoring; Chiari decompression; tethered cord release (at puberty when cord stretches) |
| Urology | Neurogenic bladder management: Clean intermittent catheterisation (CIC) — most important; anticholinergics (oxybutynin) for detrusor overactivity; botulinum toxin; augmentation cystoplasty; Mitrofanoff procedure (continent catheterisable channel using appendix); prevent UTI, renal damage |
| Orthopaedics | Bracing, orthotics, splints (AFO); physiotherapy; hip/knee surgery; scoliosis correction |
| Gastroenterology | Bowel management: Laxatives, suppositories, antegrade continence enema (ACE/Malone procedure) |
| Rehabilitation | Physiotherapy; occupational therapy; mobility aids; wheelchairs |
| Education & Psychology | Special educational support; neuropsychological assessment; social support |
| General Paediatrics | Latex allergy (40% of spina bifida patients are latex-sensitised — avoid latex exposure from birth) |
Detailed answers according to weightage from standard textbook
| Vein | Drains To |
|---|---|
| Left gastric vein (coronary vein) | Directly into the portal vein; clinically important — forms oesophageal varices in portal hypertension |
| Right gastric vein | Portal vein |
| Right gastroepiploic vein | Superior mesenteric vein (SMV) |
| Left gastroepiploic vein | Splenic vein |
| Short gastric veins | Splenic vein |
| Station | Location | Drains |
|---|---|---|
| Station 1 | Right paracardial nodes | Right side of cardia |
| Station 2 | Left paracardial nodes | Left side of cardia/fundus |
| Station 3 | Lesser curvature nodes (along branches of left and right gastric arteries) | Lesser curvature |
| Station 4sa | Short gastric artery nodes | Fundus/greater curvature (proximal) |
| Station 4sb | Left gastroepiploic artery nodes | Greater curvature |
| Station 4d | Right gastroepiploic artery nodes | Greater curvature (distal) |
| Station 5 | Suprapyloric nodes (along right gastric artery) | Pylorus/proximal duodenum |
| Station 6 | Infrapyloric nodes (along right gastroepiploic artery) | Pylorus/greater curvature |
| Station | Location |
|---|---|
| Station 7 | Along the left gastric artery |
| Station 8a | Anterosuperior to the common hepatic artery |
| Station 8p | Posterior to common hepatic artery |
| Station 9 | Coeliac axis nodes |
| Station 10 | Splenic hilum nodes |
| Station 11p | Proximal splenic artery nodes |
| Station 11d | Distal splenic artery nodes |
| Station 12a | Hepatoduodenal ligament (hepatic artery) |
| Station 12b | Along the bile duct |
| Station 12p | Behind portal vein |
| Station | Location |
|---|---|
| Station 13 | Retropancreatic nodes |
| Station 14v | Along superior mesenteric vein |
| Station 16 | Para-aortic nodes (L1–L4) |
| Feature | Detail |
|---|---|
| Boundaries | Anterior belly of digastric (both sides); hyoid bone (base); symphysis menti (apex) |
| Floor | Mylohyoid muscle |
| Contents | Submental lymph nodes (Level IA); small veins forming the anterior jugular vein |
| Surgical significance | Submental lymph nodes drain the tip of tongue, floor of mouth, lower lip, chin — involved in oral cavity cancer; access for submental flaps |
| Feature | Detail |
|---|---|
| Boundaries | Anterior belly of digastric (anteroinferior); posterior belly of digastric (posteroinferior); inferior border of mandible (superior/base) |
| Floor | Hyoglossus and mylohyoid muscles |
| Contents | Submandibular gland (main), submandibular (Level IB) lymph nodes, hypoglossal nerve (CN XII), mylohyoid nerve and artery (branch of inferior alveolar), facial artery and vein, lingual nerve |
| Surgical significance | Submandibular gland excision; access for floor of mouth; facial artery ligation; lymph node dissection |
| Feature | Detail |
|---|---|
| Boundaries | Superior belly of omohyoid (anteroinferior); posterior belly of digastric and stylohyoid muscle (superiorly); anterior border of SCM (posterior) |
| Floor | Thyrohyoid, hyoglossus, inferior and middle pharyngeal constrictors |
| Contents | Common carotid artery (bifurcates into ICA and ECA at level of C4/upper border of thyroid cartilage); internal jugular vein; vagus nerve (CN X); hypoglossal nerve (CN XII); superior root of ansa cervicalis; carotid sinus nerve (from glossopharyngeal); superior laryngeal nerve (internal and external branches) |
| Surgical significance | Most surgically important triangle; carotid endarterectomy; carotid body tumour resection; carotid artery ligation; hypoglossal nerve identification; approach to the jugular bulb; lymph node dissection (Level II/III) |
| Carotid sinus baroreceptors (responds to stretch/BP) — manipulation during surgery can cause vagal syncope |
| Feature | Detail |
|---|---|
| Boundaries | Superior belly of omohyoid (posterolaterally); anterior border of SCM (laterally); midline (medially) |
| Floor | Sternohyoid, sternothyroid |
| Contents | Thyroid gland, parathyroid glands, trachea, oesophagus, recurrent laryngeal nerve (in tracheo-oesophageal groove), inferior thyroid artery |
| Surgical significance | Thyroidectomy, parathyroidectomy, tracheostomy (emergency/elective), tracheal intubation access, oesophagoscopy, cricothyroidotomy |
| Feature | Detail |
|---|---|
| Contents | Accessory nerve (CN XI) — crosses obliquely through the triangle (key landmark: emerges from under the posterior border of SCM ~2–3 cm above the clavicle, at Erb's point); cervical plexus (C2–C4) — lesser occipital, great auricular, transverse cervical, supraclavicular nerves (emerge at Erb's point); three trunks of brachial plexus (C5–T1) emerge between scalenus anterior and medius (lower part); occipital lymph nodes; occipital artery |
| Surgical significance | Accessory nerve (CN XI) injury during posterior triangle lymph node dissection → trapezius paralysis → shoulder drop, winging of scapula, pain; accessory nerve must be identified and preserved |
| Feature | Detail |
|---|---|
| Contents | Third part of subclavian artery, subclavian vein (in the clavicular groove), suprascapular artery, the lower trunks of brachial plexus, supraclavicular lymph nodes (Level V), external jugular vein |
| Surgical significance | Central venous access (subclavian vein); brachial plexus blocks; supraclavicular lymph node biopsy (Virchow's node in left supraclavicular fossa = Troisier's sign); thoracic outlet syndrome decompression (cervical rib resection, scalenectomy) |
| Layer | Also Known As | Encloses |
|---|---|---|
| Investing (superficial) layer of deep fascia | General investing fascia | Entire neck; forms roof of both triangles; splits to enclose SCM and trapezius |
| Pretracheal fascia | Visceral fascia | Thyroid, trachea, oesophagus; merges with pericardium below |
| Prevertebral fascia | Alar fascia | Vertebral column, prevertebral muscles; forms floor of posterior triangle |
| Carotid sheath | Vascular fascia | ICA/CCA, IJV, vagus nerve; formed by all three layers |
| Level | Location | Primary Drainage Area |
|---|---|---|
| IA | Submental | Lip, floor of mouth, anterior tongue, chin |
| IB | Submandibular | Oral cavity, anterior nasal cavity, soft tissue of face |
| IIA | Upper deep cervical (anterior to XI nerve) | Oral cavity, nasal cavity, nasopharynx, oropharynx, parotid |
| IIB | Upper deep cervical (posterior to XI nerve) | Nasopharynx, oropharynx |
| III | Middle deep cervical | Oral cavity, nasopharynx, oropharynx, hypopharynx, larynx |
| IV | Lower deep cervical | Hypopharynx, larynx, cervical oesophagus, thyroid |
| V | Posterior triangle | Nasopharynx, oropharynx, scalp/neck skin |
| VI | Central compartment (pretracheal, paratracheal) | Thyroid, hypopharynx, larynx, cervical oesophagus |
| VII | Superior mediastinal | Oesophagus, trachea, thyroid |
| Cause | Features |
|---|---|
| Viral URTI | Most common cause; bilateral, tender, small nodes; resolves spontaneously in 2–4 weeks |
| Infectious mononucleosis (EBV) | Adolescents; posterior cervical nodes predominantly; fever, pharyngitis, hepatosplenomegaly; monospot test positive; Paul-Bunnell test |
| CMV | Similar to EBV; CMV IgM positive |
| HIV | Persistent generalised lymphadenopathy (PGL) — bilateral, non-tender; or acute seroconversion illness |
| Dental/oral infection | Submandibular (Level I/II) nodes; dental abscess, gingivitis; tender, warm |
| Scalp infection/head lice | Posterior cervical, occipital nodes |
| Rubella | Posterior cervical and occipital nodes; rash, fever |
| Cause | Features |
|---|---|
| Acute suppurative lymphadenitis (Strep/Staph) | Tender, hot, fluctuant if abscess; systemic fever; responds to antibiotics; may need I&D |
| Tuberculosis (TB) | Most important differential for chronic cervical lymphadenopathy in endemic areas; upper deep cervical chain; initially firm, later "cold abscess" (no erythema); may form collar-stud abscess (through deep fascia) → sinus; matted nodes; Mantoux/IGRA positive; excision biopsy → caseating granuloma; AFB on ZN staining; anti-TB treatment (6 months) |
| Atypical mycobacteria | Children; violaceous skin discoloration; Mantoux weakly positive; surgical excision is treatment |
| Cat scratch disease | Bartonella henselae; inoculation site + tender ipsilateral cervical node; self-limiting; rarely needs treatment |
| Brucellosis | Contact with animals; systemic; serology |
| Toxoplasmosis | Toxoplasma gondii; cervical nodes; posterior triangle; self-limiting; serology (IgM) |
| Actinomycosis | Jaw region; "wooden" lymphadenopathy; discharging sinuses with sulfur granules; penicillin |
| Cause | Features |
|---|---|
| Sarcoidosis | Bilateral mediastinal and cervical adenopathy; non-caseating granulomas; elevated ACE; bilateral hilar lymphadenopathy on CXR |
| Kikuchi-Fujimoto disease | Young women; posterior cervical; fever; self-limiting histiocytic necrotising lymphadenitis; diagnosis on biopsy |
| Type | Features |
|---|---|
| Hodgkin's lymphoma (HL) | Young adults (bimodal — 20s and 60s); cervical/supraclavicular nodes most common (75%); rubbery, non-tender; Reed-Sternberg cells; B symptoms (fever >38°C, night sweats, weight loss >10% in 6 months); Pel-Ebstein fever (cyclical); Cotswold staging; treated with ABVD chemotherapy ± radiotherapy |
| Non-Hodgkin's lymphoma (NHL) | More common than HL; older age; bilateral, multiple sites; more aggressive; various histological types (DLBCL, follicular, Burkitt's, MALT); treated with R-CHOP for DLBCL |
| Primary Site | Level/Location | Features |
|---|---|---|
| Head and neck squamous cell carcinoma (HNSCC) | Ipsilateral to primary (most common); Level II–IV | Oral cavity, larynx, pharynx, hypopharynx primaries; most common cause of metastatic neck node in adults >40 years; firm, hard |
| Thyroid carcinoma | Level VI (central) ± Level III/IV | Papillary thyroid carcinoma (PTC) — most common; well-differentiated; lateral neck nodes; cystic metastases possible |
| Nasopharyngeal carcinoma (NPC) | Posterior triangle (Level V), bilateral; Level IIA/B | EBV-associated; more common in SE Asian/Chinese populations; posterior cervical nodes; often presents as a neck node with occult primary |
| Salivary gland tumours | Level I/II/parotid | Pleomorphic adenoma malignant transformation; mucoepidermoid carcinoma |
| Infraclavicular primaries | Level IV/supraclavicular (especially left) | Lung, breast, gastric, colorectal, renal, ovarian cancers; Troisier's sign = left supraclavicular node = gastric/intrathoracic malignancy |
| Occult primary (UPC) | Level II/III/IV | Squamous cell carcinoma metastasis without identifiable primary; p16 IHC (HPV-related oropharyngeal origin); EBV serology (NPC) |
| Swelling | Location | Features |
|---|---|---|
| Branchial cyst | Level II, anterior to SCM | Young adult; smooth, fluctuant; transilluminates; arises from 2nd branchial arch remnant; cholesterol crystals in fluid |
| Thyroglossal cyst | Midline, moves up with tongue protrusion | Midline; any age; moves on swallowing AND on tongue protrusion (attached to hyoid/thyroglossal duct) |
| Cystic hygroma | Posterior triangle | Children; brilliantly transilluminates; lymphatic malformation |
| Carotid body tumour | Carotid bifurcation (C4 level) | Pulsatile; "lyre sign" (splaying of ICA/ECA); transmitted pulsation; bruit |
| Dermoid cyst | Midline, submental | Doughy; does not transilluminate; does not move with tongue protrusion |
| Classification | Types |
|---|---|
| By output volume | Low output: <200 mL/24h; Moderate: 200–500 mL; High output: >500 mL/24h |
| By anatomical location | Oesophageal, gastric, duodenal, jejunal, ileal, colonic |
| By aetiology | Spontaneous vs post-operative |
| By complexity | Simple (short track, no abscess) vs complex (abscess, multiple tracts, involving malignancy/radiation) |
| Fistula Site | Daily Volume | Key Electrolyte Loss |
|---|---|---|
| Duodenal | 1000–2000 mL | Na⁺, K⁺, HCO₃⁻, amylase, bile |
| Proximal jejunal | 3000–5000 mL | Na⁺, K⁺, HCO₃⁻ |
| Distal ileal | 1000–2000 mL | Na⁺, K⁺, bile acids, Vitamin B12 |
| Colonic | 200–500 mL | Na⁺, K⁺ |
| Type | Complications |
|---|---|
| Catheter-related | Central line-associated bloodstream infection (CLABSI — most common serious complication: 2–10%); pneumothorax (at insertion); haemothorax; arterial puncture; air embolism; thrombosis |
| Metabolic | Hyperglycaemia (glucose intolerance — most common metabolic complication; treat with insulin infusion; target BG 6–10 mmol/L); hypoglycaemia (on sudden cessation — taper TPN); electrolyte abnormalities (hypoNa⁺, hypoK⁺, hypoMg²⁺, hypoPO₄³⁻); refeeding syndrome |
| Liver/biliary | TPN-associated liver disease (steatosis → cholestasis → cirrhosis with prolonged use); gallstone formation (bile stasis from bowel rest); acalculous cholecystitis |
| Refeeding syndrome | Rapid refeeding of malnourished patients → shift of phosphate, potassium, magnesium into cells → severe hypophosphataemia → cardiac arrhythmia, respiratory failure, neurological complications; prevention: start TPN slowly; supplement phosphate, K⁺, Mg²⁺ prophylactically |
| Metabolic bone disease | Long-term TPN → osteomalacia from vitamin D and calcium imbalance |
| Feature | TPN | Enteral Nutrition |
|---|---|---|
| Maintains gut mucosal integrity | No (gut mucosal atrophy, bacterial translocation) | Yes |
| Septic complications | Higher (CLABSI) | Lower |
| Cost | High | Lower |
| Indications in ECF | High-output proximal fistula; GI tract not usable | Distal fistula (feed distal to fistula); low-output fistula |
| Preferred route | When EN is not possible | Preferred whenever feasible |
| Crus | Origin | Side |
|---|---|---|
| Right crus | Bodies of L1, L2, L3 and the intervening fibrous discs | Right (larger); forms the right side of the aortic hiatus |
| Left crus | Bodies of L1, L2 and disc | Left (smaller) |
| Aperture | Level | Contents | Notes |
|---|---|---|---|
| Caval foramen (IVC opening) | T8 (central tendon, to the right of midline) | Inferior vena cava, right phrenic nerve | In the central tendon; IVC is stretched open during inspiration (aided by fibrous attachment) — promotes venous return; hiatus in the central tendon |
| Oesophageal hiatus | T10 (muscular, in the right crus) | Oesophagus, left and right vagal trunks, oesophageal branches of left gastric artery, lymphatics | Formed by the muscle fibres of the right crus; surrounded by a phrenoesophageal ligament (Bertelli's/Laimer's membrane) — allows oesophageal movement during swallowing while maintaining a seal |
| Aortic hiatus | T12 (posterior, between the two crura and the vertebral column) | Aorta, thoracic duct, azygos vein (sometimes) | Technically behind/between the crura and the median arcuate ligament, not through the diaphragm — so not compressed during respiration; often includes the thoracic duct |
| Nerve | Contribution | Origin |
|---|---|---|
| Right phrenic nerve | Motor + sensory to central tendon (right) | C3, C4, C5 (C4 mainly) |
| Left phrenic nerve | Motor + sensory to central tendon (left) | C3, C4, C5 |
| Lower intercostal nerves (T5–T11) | Sensory to peripheral diaphragm only | Intercostal spaces |
| Area | Name | Location | Content of Hernia |
|---|---|---|---|
| Between sternal and costal parts | Foramen of Morgagni (Larrey's space/parasternal foramen) | Anterior, parasternal | Omentum, colon, stomach (Morgagni hernia — 1–3% of congenital diaphragmatic hernias; right-sided more common) |
| Between costal and vertebral parts | Foramen of Bochdalek (pleuroperitoneal hiatus) | Posterolateral, left side | Left-sided (80%): Small bowel, colon, stomach, spleen; right-sided: liver; Congenital diaphragmatic hernia (CDH) — most common (90% of CDH); presents as respiratory distress at birth |
| Oesophageal hiatus | Hiatus hernia | Posterior-central | Stomach (sliding or para-oesophageal hiatus hernia — most common acquired hernia) |
| Type | Definition | Characteristics | Medico-legal Significance |
|---|---|---|---|
| Incised wound (cut/slash) | Clean cut by a sharp-edged instrument (knife, blade, glass); length > depth | Clean, straight or curved edges; even, clean-cut wound; minimal bruising; haemorrhage profuse; minimal tissue destruction | Suicidal cuts: Multiple parallel, superficial, hesitation cuts on wrist/neck; tentative cuts adjacent to main wound; protected areas (inner forearm); "defence wounds" absent. Homicidal: Variable depth, irregular; "defence wounds" on palmar surface of hands/forearms |
| Stab/puncture wound | Penetration by pointed instrument; depth > width | Small entry wound; deep; may not correspond to weapon size; internal injury may be extensive | Forensic determination of: weapon type, number of thrusts (separate wounds or re-entry into same wound), direction, depth; right-to-left/left-to-right indicates orientation of assailant |
| Contusion/bruise | Blunt force trauma without skin break; capillary/venular rupture into soft tissue | Intact skin; discoloration; progression from red → purple → green → yellow (as haemoglobin degrades) over 2–4 weeks | Age of bruise can be estimated (though unreliable); patterned bruises may indicate weapon; bruises in children: suspicious for non-accidental injury (NAI) in unusual sites — ears, trunk, buttocks |
| Laceration | Tearing/shredding by blunt force; irregular wound | Irregular, ragged edges; tissue bridges visible; bleeding less than incised wounds; soiled with debris; margins contused | Pattern lacerations mirror the weapon (stellar — depressed skull fracture; linear — iron/rod); can be confused with incised wounds (thin-skinned areas — scalp, shin) |
| Abrasion (graze/scratch) | Scraping away of superficial epidermis | Oozes serum; heals without scarring (epidermis only); patterned abrasions reflect surface | Pattern indicates object/surface; brush abrasion (road rash) indicates direction of travel; fingertip abrasions (petechial pattern) suggest manual strangulation |
| Crush injury | Compressive force between two hard surfaces | Extensive tissue damage; vascular injury; compartment syndrome; rhabdomyolysis; pattern of external injury underestimates internal damage | Evidence of positional compression at autopsy (ligature marks, deck-plate imprints); crush syndrome timing can indicate entrapment duration |
| Defence wounds | Injuries on palmar surface of hands and forearms (radial aspect), ulnar forearm | Indicate victim was conscious and aware of attack | Distinguish assault from accident/suicide; sharp (cuts on palm when grabbing blade) vs blunt (bruises on forearms) |
| Class | Description | Infection Risk |
|---|---|---|
| Clean (Class I) | Elective operation; no break in sterile technique; GIT/respiratory/GU tract not entered; no inflammation | 1–2% |
| Clean-contaminated (Class II) | Controlled entry into GIT/respiratory/GU/biliary tract without spillage | 5–15% |
| Contaminated (Class III) | Open fresh traumatic wounds; major break in sterile technique; gross spillage from GIT; acute non-purulent inflammation | 15–35% |
| Dirty/infected (Class IV) | Old traumatic wounds; perforated viscera; existing clinical infection/pus | >35% |
| Type | Description | Example |
|---|---|---|
| Primary (1°) intention | Clean wound; edges approximated by sutures/staples/glue; minimal tissue loss | Elective surgical incisions; clean lacerations |
| Secondary intention | Wound left open; heals by granulation, contraction, epithelialisation; slower; larger scar | Abscess cavities; heavily contaminated wounds; some pressure sores |
| Tertiary (delayed primary) intention | Wound initially left open (4–5 days) then closed when infection is controlled | Contaminated wounds; traumatic wounds with risk of infection |
| Wound Feature | Suicide | Homicide |
|---|---|---|
| Location | Accessible areas (wrist, throat, temple) | Any site |
| Number | May be multiple (tentative/hesitation cuts) | Variable |
| Defence wounds | Absent | Present |
| Clothing intact | May be removed over site | May be intact |
| Other injuries | Absent | May be present (restraint marks) |
| Accessibility | Self-inflictable | Sometimes inaccessible to self |
| Boundary | Structure |
|---|---|
| Medial wall | External anal sphincter and lower part of levator ani (superomedially) |
| Lateral wall | Obturator internus muscle covered by obturator fascia |
| Base/floor | Perianal skin (perineum) |
| Apex | Angle between the medial and lateral walls (where levator ani meets obturator internus fascia) |
| Anterior | Perineal body and superficial and deep transverse perinei muscles (anteriorly bounded by the posterior aspects of the perineal pouch structures) |
| Posterior | Sacrotuberous ligament and lower border of gluteus maximus |
| Type | Location | Frequency |
|---|---|---|
| Perianal | Beneath perianal skin | 40–45%; most common; most superficial |
| Ischiorectal | In the ischiorectal fat | 20–25% |
| Intersphincteric | Between internal and external sphincters | 20–25% |
| Supralevator | Above levator ani | 5%; rare; most dangerous |
| Horseshoe abscess | Bilateral ischiorectal, communicating through deep postanal space | ~10% |
Tributaries of gsv
| # | Tributary | Direction | Drains |
|---|---|---|---|
| 1 | Superficial inferior epigastric vein | Laterally | Anterior abdominal wall below the umbilicus |
| 2 | Superficial circumflex iliac vein | Laterally | Skin of iliac region / inguinal area |
| 3 | Superficial external pudendal vein | Medially | External genitalia (superficial) |
| 4 | Deep external pudendal vein | Medially | External genitalia (deeper) |
| 5 | Anterior accessory GSV (AA-GSV) | Distally/anterolateral thigh | Anterolateral thigh skin |
| 6 | Posteromedial thigh vein (Posterior accessory GSV, PA-GSV) | Distally/posteromedial | Posteromedial thigh; connects with SSV system via the femoropopliteal vein |
Mnemonic for groin tributaries: "SEE 2 PA" — Superficial Epigastric, superficial External pudendal, (deep) External pudendal, 2 Accessory veins (anterior + posterior), circumflex iliac.
| Tributary | Location | Notes |
|---|---|---|
| Anterior accessory GSV (AA-GSV) | Runs parallel, anterolateral to GSV in the thigh | Lies outside the saphenous fascia; common source of varicosities if incompetent; can be mistaken for the GSV on duplex |
| Posterior accessory GSV (PA-GSV) | Runs parallel, posteromedial to GSV in the thigh | Also called the posterior thigh circumflex vein; connects the SSV system to the GSV system |
| Hunterian perforator vessels (communicating branches) | Mid-thigh at the adductor canal | Connect the GSV to the femoral vein; named perforators |
| Lateral accessory veins (anterolateral thigh vein) | Anterolateral thigh | Important in Klippel-Trenaunay syndrome; can be an embryonic persistent lateral vein |
| Tributary | Location | Notes |
|---|---|---|
| Posterior arch vein (Vein of Leonardo / PA-GSV in leg) | Posteromedial leg, lateral to the GSV | Most important leg tributary; receives Cockett's perforators (I, II, III) from the posterior tibial veins; directly involved in venous ulceration; runs from medial malleolus to GSV at the knee |
| Anterior tibial vein (superficial tributaries) | Anterior leg | Small contributions |
| Knee-level tributaries | Medial knee | Variable; can be confused with duplicated GSV on duplex |
| Tributary | Details |
|---|---|
| Dorsal venous arch of the foot | The GSV originates from the medial end of the dorsal venous arch |
| Medial marginal vein (MMV) | Direct continuation forming the GSV at the medial malleolus |
| Medial plantar veins | Drain into the medial marginal vein |
| Digital veins (1st–3rd digits) | Drain into the dorsal arch |
Dorsal venous arch (foot)
↓
Medial marginal vein → becomes GSV at medial malleolus
↓
Posterior arch vein joins (+ Cockett's I, II, III perforators)
↓
Traverses medial calf → posterior to medial malleolus
↓
Below knee: anterior tibial tributaries
↓
At knee: communicates via Boyd's perforator (posterior tibial vein)
↓
Thigh: PA-GSV + AA-GSV run alongside
↓
Mid-thigh: Hunterian perforator (to femoral vein)
↓
SFJ (3.5 cm below & lateral to pubic tubercle):
→ Superficial inferior epigastric vein (lateral)
→ Superficial circumflex iliac vein (lateral)
→ Superficial external pudendal vein (medial)
→ Deep external pudendal vein (medial)
→ Anterior accessory GSV (distal)
→ Posteromedial thigh vein (distal)
↓
Common Femoral Vein
| Point | Significance |
|---|---|
| All 6 SFJ tributaries must be ligated at open surgery | Failure to ligate → neovascularisation → recurrence of varicose veins |
| Posterior arch vein (Leonardo's vein) receives Cockett's perforators | Incompetent Cockett's perforators → venous hypertension in the gaiter area → lipodermatosclerosis and venous ulceration above the medial malleolus |
| AA-GSV lies outside saphenous fascia | Can be treated independently; often the culprit in anterolateral thigh varicosities |
| PA-GSV connects GSV and SSV | "Thigh extension" of the SSV; reflux can be transmitted from SSV → PA-GSV → GSV |
| Endovenous ablation (EVLA/RFA) does not require routine tributary ligation | Unlike open surgery; hence lower groin neovascularisation rates |
| Left superficial epigastric/external pudendal veins | Can dilate in portal hypertension as porto-systemic collaterals |
Pg viva questions on ulcer short case
A ulcer is a discontinuity or break in an epithelial surface (skin or mucous membrane) that fails to heal within the expected time frame, with or without loss of substance from the deeper tissues. It is produced by sloughing of necrotic tissue.
A wound is any acute break in the continuity of surface epithelium — it may heal completely. An ulcer implies a chronic, non-healing or slowly healing defect, often with an underlying pathological cause preventing healing.
An erosion is a superficial loss of epithelium that does not extend beyond the basement membrane. It heals without scarring. An ulcer, by contrast, extends through the basement membrane into the dermis or deeper.
| Type | Examples |
|---|---|
| Traumatic | Pressure sore (decubitus ulcer), friction, burns |
| Infective | TB, syphilis (gumma), actinomycosis, leishmaniasis, tropical ulcer |
| Vascular | Venous ulcer, arterial/ischaemic ulcer, mixed ulcer |
| Neuropathic | Diabetic neuropathic ulcer, leprosy, tabes dorsalis |
| Neoplastic | Squamous cell carcinoma, basal cell carcinoma, melanoma, Marjolin's ulcer |
| Specific/Granulomatous | Tuberculosis, syphilis, Buruli ulcer (Mycobacterium ulcerans) |
| Autoimmune/Inflammatory | Pyoderma gangrenosum, Wegener's, Behçet's |
| Haematological | Sickle cell disease, spherocytosis, polycythaemia |
| Iatrogenic | Radiation ulcer, steroid-induced |
| Feature | Observe |
|---|---|
| Site | Anatomical location |
| Size | Length × breadth in cm |
| Shape | Circular, oval, irregular, serpiginous |
| Number | Single or multiple |
| Margin/Edge | (most important — see below) |
| Floor | What is visible — slough, granulation, bone, tendon |
| Surrounding skin | Pigmentation, lipodermatosclerosis, eczema, erythema, induration |
| Discharge | Pus, serum, blood |
| Depth | Superficial vs deep |
| Feature | Assess |
|---|---|
| Tenderness | Painful or painless |
| Edge/margin consistency | Hard (carcinoma), soft (healing), undermined (TB), sloping (venous), punched-out (syphilitic/ischaemic) |
| Base/floor consistency | Indurated (carcinomatous), soft (granulomatous), hard (calcified) |
| Temperature | Warm (infected/venous) or cold (ischaemic) |
| Bleeding on touch | Friable floor suggests malignancy |
| Regional lymph nodes | Size, tenderness, consistency, fixity |
| Surrounding tissue | Oedema, varicose veins, skin changes |
| Edge Type | Description | Cause/Pathology |
|---|---|---|
| Sloping/shelving (healing) | Gently sloping from surrounding skin to the floor; like a saucer | Healing ulcer; granulating well |
| Undermined | Edge overhangs the floor; probe can be passed under the edge | Tuberculosis (caseation destroys tissue from below); also pressure sores |
| Punched out | Vertical edges; sharply demarcated; floor at a lower level; as if punched by a punch | Syphilitic (gumma), neuropathic/trophic, ischaemic/arterial ulcer |
| Raised and everted (rolled out) | Edge heaped up and turned outward; firm/hard | Squamous cell carcinoma (SCC) — malignant ulcer; most important |
| Rolled/pearly | Smooth, rolled, translucent, beaded edge; telangiectasia visible | Basal cell carcinoma (BCC) — rodent ulcer |
| Undermined + bluish/violaceous | Necrotic, overhanging, irregular; violaceous (purple-red) border | Pyoderma gangrenosum |
| Callous | Hard, thickened, fibrotic; white rim | Chronic indolent ulcer; venous stasis |
The floor is what you see (the visible surface of the ulcer base), and the base is what you feel (deep to the floor — what the ulcer rests upon).
| Floor/Base Type | Indicates |
|---|---|
| Slough (yellow-white necrotic tissue) | Infected/chronic; not ready to heal |
| Pink, granulation tissue | Healing actively |
| White, fibrous tissue | Chronic; fibrosed base |
| Bone or tendon visible | Deep ulcer; significant tissue loss |
| Wash-leather/grey slough | Syphilitic gumma |
| Indurated (hard) floor | Malignant transformation |
| Friable, bleeds easily | Carcinoma |
The gaiter area — above the medial malleolus (medial aspect of the lower leg at the ankle); occasionally the lateral aspect. Corresponds to the area drained by Cockett's perforators and the posterior arch vein.
Clinical-Aetiology-Anatomy-Pathophysiology classification of chronic venous disease:
- C0: No visible signs
- C1: Telangiectasia/reticular veins
- C2: Varicose veins
- C3: Oedema
- C4a: Pigmentation/eczema; C4b: Lipodermatosclerosis/atrophie blanche
- C5: Healed venous ulcer
- C6: Active venous ulcer
A non-elastic zinc oxide impregnated compression bandage applied from the toes to the knee, then covered with a cohesive bandage. Provides sustained compression and creates a moist wound environment. Changed weekly. Used in outpatient venous ulcer management.
The angle at which the leg becomes pale on elevation above the horizontal. Normally the limb remains pink up to 90°. In critical ischaemia, pallor occurs at <20°.
| ABPI | Interpretation |
|---|---|
| >1.0 | Normal (or calcified vessels — falsely elevated) |
| 0.8–1.0 | Mild ischaemia |
| 0.5–0.8 | Moderate ischaemia (claudication) |
| <0.5 | Severe ischaemia |
| <0.4 | Critical limb ischaemia (CLI) — rest pain/ulcer/gangrene |
| >1.3 | Non-compressible calcified vessels (DM, CKD) |
A sterile blunt probe is inserted into the depth of the ulcer. If bone is felt (positive test), it indicates osteomyelitis with high sensitivity (~89%) and specificity. This is a bedside test that guides the need for MRI and bone biopsy.
| Grade | Description |
|---|---|
| 0 | Intact skin; high-risk foot (callus, deformity) |
| 1 | Superficial ulcer; no subcutaneous tissue involved |
| 2 | Deep ulcer reaching tendon, capsule, or bone |
| 3 | Deep ulcer with abscess, osteomyelitis, or joint sepsis |
| 4 | Localised gangrene (toe/forefoot) |
| 5 | Extensive gangrene of foot |
Malignant transformation (usually squamous cell carcinoma) occurring in a chronic, long-standing scar or ulcer — typically a venous ulcer, burn scar, osteomyelitis sinus, or radiation scar.
Wide local excision with 1–2 cm clear margins; split-thickness skin graft or flap reconstruction; regional lymph node dissection if nodes palpable; adjuvant radiotherapy in selected cases.
Because it develops in scar tissue, which is devoid of normal nerve supply (aneural scar). The absence of pain leads to delayed presentation.
Undermined edge + wash-leather floor + bluish surrounding skin.
| Wound Type | Dressing |
|---|---|
| Dry/necrotic | Hydrocolloid/hydrogel (autolytic debridement) |
| Sloughy | Alginate/hydrogel |
| Infected | Silver-impregnated dressings; iodine (Betadine); Dakin's |
| Granulating | Non-adherent; foam dressings |
| Exuding | Alginate; foam |
| Epithelialising | Fine mesh; non-adherent |
| Cavitating | Cavity foam; alginate rope |
Zinc is a cofactor for over 200 enzymes. It is essential for:
- DNA and RNA polymerase activity (cell proliferation)
- Collagen synthesis (cofactor for prolyl hydroxylase)
- Immune function (T-cell function) Zinc deficiency → impaired epithelialisation and granulation. Supplementation (220 mg zinc sulphate TDS) promotes healing in deficient patients.
Arterial/ischaemic ulcer. Confirm with ABPI (likely <0.5). Duplex → CT angiography → revascularisation (angioplasty or bypass). Wound care, pain management, risk factor control.
Neuropathic/trophic diabetic ulcer. Probe-to-bone test; X-ray to exclude osteomyelitis; MRI if probe positive; offloading; glycaemic control; debridement.
Suspect Marjolin's ulcer (malignant transformation to SCC). Biopsy is mandatory. Manage as SCC — wide local excision with 2 cm margins + reconstruction + possible lymph node dissection.
(If deflected) — keep to ulcer topics.
Tuberculous ulcer (arising over a cervical lymph node — scrofuloderma). Investigate with biopsy (caseating granuloma + Langhans giant cells), ZN stain, AFB culture, Mantoux/IGRA. Treat with 6-month anti-TB regimen (2HRZE/4HR).
| Feature | Rodent ulcer (BCC) | Marjolin's ulcer (SCC on scar) |
|---|---|---|
| Origin | De novo on sun-exposed skin | Chronic scar/venous ulcer |
| Edge | Rolled, pearly, beaded | Raised, everted, indurated |
| Behaviour | Locally destructive; rarely metastasises | Metastasises (LN); aggressive |
| Site | Face (periorbital, nasolabial) | Lower leg, old burn scars |
| Pain | Painless | Painless (aneural scar) |
| Treatment | Excision; Mohs surgery; RT | Wide excision; STSG; ± LN dissection |
A non-infectious, neutrophilic dermatosis characterised by a rapidly spreading, extremely painful ulcer with a violaceous, undermined, overhanging edge and a necrotic, purulent floor.
- Associated with IBD (UC > Crohn's), rheumatoid arthritis, haematological malignancies
- Pathergy is characteristic — trauma or surgery worsens the ulcer (biopsy or debridement → expansion)
- Treatment: Corticosteroids (1st line); cyclosporine; infliximab (for IBD-associated); treat underlying disease
- Do NOT debride — pathergy will worsen the ulcer
The development of a new ulcer or worsening of an existing ulcer at a site of minor trauma or surgical intervention. Seen in pyoderma gangrenosum and Behçet's disease.
Cockett's perforators (I, II, III) — in the lower medial leg; connect the posterior arch vein (tributary of GSV) to the posterior tibial veins. When incompetent, they transmit high ambulatory deep venous pressure to the superficial system → venous hypertension → lipodermatosclerosis → ulceration in the gaiter area.
A chronic fibrotic change of the skin and subcutaneous fat in the gaiter area resulting from sustained venous hypertension. Clinically: firm, woody, sclerotic induration of the skin; skin is bound down to the underlying tissue; classically produces an "inverted champagne bottle" appearance (narrow leg above a swollen ankle). Represents advanced C4b chronic venous disease and is a strong predictor of venous ulceration.
Pressure Ulcer Scale for Healing — a validated tool to monitor healing progress of pressure ulcers. Scores: surface area (0–10), exudate amount (0–3), tissue type (0–4). Total score 0–17; lower score = better healing.