Interactive Karyotype Activity [new] Guide

This paper-based interactive karyotype activity allows you to simulate a clinical genetics lab. You will act as a cytogeneticist to organize chromosomes and diagnose a chromosomal disorder. Activity Overview

// display each chromosome inside slot slotChromosomes.forEach(chrId => const chr = chromosomes.find(c => c.id === chrId); if (chr) const miniCard = document.createElement('div'); miniCard.className = 'chromosome-card'; miniCard.style.width = '52px'; miniCard.style.cursor = 'pointer'; miniCard.style.background = '#fff6e0'; miniCard.setAttribute('data-id', chr.id); miniCard.innerHTML = ` <div class="chr-icon">$getChromosomeIcon(chr.type)</div> <div class="chr-label">$chr.type === 'X' ? 'X' : (chr.type === 'Y' ? 'Y' : chr.type)</div> `; // allow to remove from slot by doubleclick miniCard.ondblclick = (e) => e.stopPropagation(); removeChromosomeFromSlot(chr.id, slotNumber); ; chromosomesContainer.appendChild(miniCard);

Ensuring there are 46 chromosomes (23 pairs) in a standard human cell. Determine biological sex: Interactive Karyotype Activity

Klinefelter’s Syndrome: An extra X chromosome in males (XXY). Edward’s Syndrome: Trisomy 18. Popular Activity Formats .karyo-slot background: #eef2ff

  1. Prepare the materials: Obtain simulated chromosomes, karyotype templates, or online platforms and apps.
  2. Introduce the concept: Review the basics of genetics and karyotypes with the students.
  3. Conduct the activity: Have students work individually or in pairs to create a karyotype.
  4. Facilitate discussion: Encourage students to discuss their findings and results.
  5. Assess student learning: Evaluate student understanding through quizzes, class discussions, or written assignments.

3. Materials Needed

.karyo-slot background: #eef2ff; border-radius: 20px; min-height: 95px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.1s; box-shadow: 0 1px 2px rgba(0,0,0,0.05); border: 1px solid #cbdff2; position: relative;