INTERHEMISPHERIC CONNECTION AND MOTOR COORDINATION IN CHILDREN :A BEHAVIORAL TASK BASED LITERATURE REVIEW for this manuscript proper in detail
corpus callosum development children motor coordination
interhemispheric transfer bimanual coordination children behavioral
corpus callosum myelination maturation pediatric age-related
corpus callosum children motor development behavioral
interhemispheric communication motor lateralization children
bimanual coordination development corpus callosum DTI children
PMID: 30189341
PMID: 18060810
PMID: 33578035
interhemispheric inhibition children motor tasks finger tapping
PMID: 38924235
PMID: 39365253
PMID: 12794778
callosal agenesis dysgenesis motor outcome children behavioral
PMID: 34850608
PMID: 36867240
motor lateralization handedness development corpus callosum children
PMID: 28381485
PMID: 33338611
PMID: 39266011
corpus callosum fractional anisotropy motor skill pediatric DTI
ls /home/daytona/workspace/ && ls /home/daytona/skills/docx/
mkdir -p /home/daytona/workspace/interhemispheric-manuscript
~/interhemispheric-manuscript/create_manuscript.js
const {
Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell,
HeadingLevel, AlignmentType, BorderStyle, WidthType, ShadingType,
VerticalAlign, PageNumber, PageBreak, UnderlineType
} = require('docx');
const fs = require('fs');
// Helper: create a heading paragraph
function heading1(text) {
return new Paragraph({
text,
heading: HeadingLevel.HEADING_1,
spacing: { before: 360, after: 120 },
});
}
function heading2(text) {
return new Paragraph({
text,
heading: HeadingLevel.HEADING_2,
spacing: { before: 240, after: 80 },
});
}
function heading3(text) {
return new Paragraph({
text,
heading: HeadingLevel.HEADING_3,
spacing: { before: 200, after: 60 },
});
}
function para(text, opts = {}) {
return new Paragraph({
children: [new TextRun({ text, size: 24, font: 'Times New Roman', ...opts })],
spacing: { before: 80, after: 80, line: 480 }, // double spaced
indent: { firstLine: 720 },
alignment: AlignmentType.JUSTIFIED,
});
}
function paraNoIndent(text, opts = {}) {
return new Paragraph({
children: [new TextRun({ text, size: 24, font: 'Times New Roman', ...opts })],
spacing: { before: 80, after: 80, line: 480 },
alignment: AlignmentType.JUSTIFIED,
});
}
function boldPara(label, text) {
return new Paragraph({
children: [
new TextRun({ text: label, bold: true, size: 24, font: 'Times New Roman' }),
new TextRun({ text, size: 24, font: 'Times New Roman' }),
],
spacing: { before: 80, after: 80, line: 480 },
indent: { firstLine: 720 },
alignment: AlignmentType.JUSTIFIED,
});
}
function refPara(text) {
return new Paragraph({
children: [new TextRun({ text, size: 22, font: 'Times New Roman' })],
spacing: { before: 60, after: 60, line: 360 },
indent: { left: 720, hanging: 720 },
});
}
function blankLine() {
return new Paragraph({ children: [new TextRun('')], spacing: { before: 0, after: 0 } });
}
const doc = new Document({
styles: {
default: {
document: {
run: { font: 'Times New Roman', size: 24 },
paragraph: { spacing: { line: 480 } },
},
},
paragraphStyles: [
{
id: 'Heading1',
name: 'Heading 1',
basedOn: 'Normal',
next: 'Normal',
run: { bold: true, size: 28, font: 'Times New Roman', color: '1F3864' },
paragraph: { spacing: { before: 400, after: 120 } },
},
{
id: 'Heading2',
name: 'Heading 2',
basedOn: 'Normal',
next: 'Normal',
run: { bold: true, size: 26, font: 'Times New Roman', color: '2E74B5' },
paragraph: { spacing: { before: 280, after: 80 } },
},
{
id: 'Heading3',
name: 'Heading 3',
basedOn: 'Normal',
next: 'Normal',
run: { bold: true, italics: true, size: 24, font: 'Times New Roman', color: '000000' },
paragraph: { spacing: { before: 200, after: 60 } },
},
],
},
sections: [{
properties: {
page: {
margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 }
}
},
children: [
// ===== TITLE PAGE =====
new Paragraph({
children: [new TextRun({ text: '', size: 24 })],
spacing: { before: 720, after: 0 },
}),
new Paragraph({
children: [new TextRun({
text: 'INTERHEMISPHERIC CONNECTION AND MOTOR COORDINATION IN CHILDREN:',
bold: true, size: 32, font: 'Times New Roman', color: '1F3864'
})],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 120 },
}),
new Paragraph({
children: [new TextRun({
text: 'A BEHAVIORAL TASK-BASED LITERATURE REVIEW',
bold: true, size: 32, font: 'Times New Roman', color: '1F3864'
})],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 480 },
}),
new Paragraph({
children: [new TextRun({ text: 'Submitted to:', italics: true, size: 24, font: 'Times New Roman' })],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 60 },
}),
new Paragraph({
children: [new TextRun({ text: 'Journal of Pediatric Neurology and Neuroscience', bold: true, italics: true, size: 24, font: 'Times New Roman' })],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 480 },
}),
new Paragraph({
children: [new TextRun({ text: 'Manuscript Type: Narrative Literature Review', size: 24, font: 'Times New Roman' })],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 120 },
}),
new Paragraph({
children: [new TextRun({ text: 'Running Head: INTERHEMISPHERIC CONNECTION AND MOTOR COORDINATION', size: 22, font: 'Times New Roman' })],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 120 },
}),
new Paragraph({
children: [new TextRun({ text: 'Word Count (main text): ~8,500', size: 24, font: 'Times New Roman' })],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 120 },
}),
new Paragraph({
children: [new TextRun({ text: 'Date: June 2026', size: 24, font: 'Times New Roman' })],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 960 },
}),
new Paragraph({
children: [new TextRun({ text: 'Keywords: ', bold: true, size: 24, font: 'Times New Roman' }),
new TextRun({ text: 'corpus callosum; interhemispheric transfer; motor coordination; bimanual tasks; children; white matter; callosal development; behavioral tasks', size: 24, font: 'Times New Roman' })],
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 0 },
}),
// PAGE BREAK
new Paragraph({ children: [new PageBreak()] }),
// ===== ABSTRACT =====
heading1('ABSTRACT'),
paraNoIndent(
'Background: The corpus callosum (CC) is the primary white matter commissure connecting the two cerebral hemispheres and plays an indispensable role in interhemispheric communication. Its protracted postnatal maturation - spanning from birth through the second decade of life - is closely temporally coupled with the development of coordinated motor behavior in children. Behavioral tasks that require simultaneous or alternating actions from both limbs (bimanual tasks) have long served as functional probes of interhemispheric signaling. Despite an expanding literature, a coherent framework linking specific structural maturational indices of the CC, task-based behavioral measures, and developmental age windows has not been consolidated for a pediatric neurology readership.'
),
paraNoIndent(
'Objectives: This narrative review (1) summarizes the structural and functional maturation of the CC during childhood; (2) critiques the principal behavioral paradigms used to measure interhemispheric motor transfer and bimanual coordination in children aged 3-18 years; (3) integrates neuroimaging evidence - particularly diffusion tensor imaging (DTI) - with behavioral outcomes; and (4) discusses clinical implications for neurodevelopmental and acquired pediatric motor disorders.'
),
paraNoIndent(
'Methods: A comprehensive narrative search of PubMed, PsycINFO, and Google Scholar was conducted using the terms "corpus callosum," "interhemispheric transfer," "bimanual coordination," "motor development," "children," "DTI," and related variants. Studies published from 1990 to June 2026 that involved typically developing children or clinical pediatric populations (cerebral palsy, ADHD, autism spectrum disorder, callosal agenesis) and used behavioral motor tasks as primary outcome measures were included.'
),
paraNoIndent(
'Results: Corpus callosum maturation follows a heterogeneous topographic timetable, with the genu and splenium myelinating earliest and the body reaching adult levels only during adolescence. Fractional anisotropy of the CC motor fibers and splenium consistently predicts bimanual tapping performance, finger opposition speed, and reaction time asymmetry across studies. The ipsilateral silent period (iSP) paradigm using transcranial magnetic stimulation (TMS) maps the developmental trajectory of transcallosal inhibition, which strengthens and shortens in latency from middle childhood through adolescence. Behavioral tasks - including the alternating finger tapping test, bimanual crank rotation, tactile transfer tasks, and the Purdue Pegboard - show monotonic improvement with age, mirroring white matter maturation. Pathological disruption of the CC, as in callosal agenesis, partial agenesis, ADHD, and cerebral palsy, produces characteristic deficits in bimanual coupling, mirror movements, and intermanual transfer, validating the CC-motor coordination link.'
),
paraNoIndent(
'Conclusions: Behavioral task paradigms remain an ecologically valid, low-cost, and clinically informative window into the functional status of the developing corpus callosum. Future research should focus on age-stratified normative datasets for key bimanual tasks, longitudinal DTI-behavior co-development studies, and the translation of these behavioral probes into clinical assessment protocols for early identification of interhemispheric motor pathology in children.'
),
blankLine(),
// PAGE BREAK
new Paragraph({ children: [new PageBreak()] }),
// ===== 1. INTRODUCTION =====
heading1('1. INTRODUCTION'),
para(
'The ability to coordinate the two hands - pouring liquid from one container to another, tying shoelaces, playing a musical instrument, or catching a ball - is among the most functionally consequential motor achievements of childhood. Such bimanual tasks are deceptively demanding at the neural level: they require the bilateral motor cortices to communicate with millisecond-level precision, share preparatory signals, suppress mirror movements, and synchronize force output across the two limbs. This communication is orchestrated predominantly by the corpus callosum (CC), the largest white matter commissure in the mammalian brain, whose approximately 200-300 million axonal fibers span the entirety of the medial interhemispheric fissure.'
),
para(
'The postnatal maturation of the CC is among the most protracted structural processes in human neurodevelopment. Myelination progresses from the posterior (splenium) and anterior (genu) poles inward toward the body across the first two decades of life, a trajectory that is now quantifiable in vivo using diffusion tensor imaging (DTI) parameters such as fractional anisotropy (FA) and mean diffusivity (MD). This neurobiological timeline has a behavioral correlate: children\'s ability to perform coordinated bimanual movements, transfer sensorimotor information across hands, and suppress involuntary mirror movements all improve progressively from early childhood through adolescence, tracking the maturation of callosal fiber organization.'
),
para(
'Despite the intuitive relationship between these two developmental curves, the published literature has accumulated in relative silos. Neuroimaging studies report DTI metrics with limited behavioral phenotyping; behavioral studies use heterogeneous motor tasks without neuroimaging anchors; and clinical case series of callosal pathology rarely apply standardized behavioral batteries across age groups. No comprehensive review has, to date, synthesized these streams specifically for a pediatric neurology and neuroscience audience.'
),
para(
'The present narrative literature review addresses this gap. It aims to: (1) present a neuroanatomical and developmental framework for CC maturation; (2) describe and critically evaluate the most widely used behavioral task paradigms for measuring interhemispheric motor function in children; (3) integrate structural neuroimaging data with behavioral measures to identify brain-behavior relationships across development; and (4) discuss the clinical significance of these relationships in common pediatric neurological conditions. By consolidating this evidence, the review aims to inform both future research design and clinical assessment practice in pediatric motor neurology.'
),
blankLine(),
// ===== 2. ANATOMY AND DEVELOPMENT =====
heading1('2. NEUROANATOMY AND DEVELOPMENTAL MATURATION OF THE CORPUS CALLOSUM'),
heading2('2.1 Gross Anatomy and Topographic Organization'),
para(
'The corpus callosum is a C-shaped commissure visible on the midsagittal plane, conventionally divided into four regions: the rostrum (anterior, inferior), the genu (anterior, superior), the body (central), and the splenium (posterior). Each region carries homotopic fibers connecting topographically corresponding cortical areas. The genu carries prefrontal fibers; the anterior body connects premotor and supplementary motor area (SMA) axons; the posterior body conveys primary motor and somatosensory projections; and the splenium interconnects parietal, temporal, and occipital regions. This topographic organization is critical for understanding task-specific vulnerability: conditions or lesions that preferentially damage the posterior body and splenium will most impair sensorimotor and visuo-motor interhemispheric communication, whereas anterior body lesions preferentially disrupt motor planning coordination between the SMA bilaterally.'
),
para(
'At the microstructural level, callosal fibers range from small, slowly conducting, thinly myelinated axons (predominant in the genu and anterior body) to large, thickly myelinated, fast-conducting axons (concentrated in the posterior body and splenium). This heterogeneity has direct functional implications: fast-conducting fibers enable rapid sensorimotor exchange critical for precise bimanual timing, while slower fibers mediate integrative cognitive communication.'
),
heading2('2.2 Prenatal and Postnatal Development'),
para(
'The CC begins to form by gestational week 12-13, with commissural crossing of pioneer axons across the interhemispheric fissure. By 18-20 weeks gestation, the full somatotopic organization is established. Myelination - the process of ensheathing axons in myelin to increase conduction velocity and reduce metabolic cost - begins in the splenium at approximately 3-4 months postnatal age, progressing anteriorly through the body and genu over the first 2 years. However, DTI studies have consistently shown that this early myelination represents only a fraction of mature microstructural organization; FA values in the CC continue to increase and MD values continue to decrease well into the second decade of life.'
),
para(
'Gajawelli and colleagues (2024) used surface tensor-based morphometry to characterize CC shape changes in children aged 12-60 months in monthly intervals, demonstrating the most rapid growth between 12 and 24 months and a secondary phase between 48 and 60 months, predominantly in the anterior body. Sexual dimorphism in CC morphology was most pronounced at 12 months, earlier than previously appreciated (PMID 38924235). These findings confirm that the CC is not a static structure even within the first 5 years of life, and that subtle regional growth trajectories have potential behavioral consequences that are unlikely to be captured by simple volumetric measures alone.'
),
para(
'By middle childhood (ages 6-12), FA in the splenium and posterior body has reached approximately 70-80% of adult values, while the anterior body and genu lag behind. During adolescence, a final wave of myelination brings the body FA toward adult levels. In the landmark longitudinal DTI study by Muetzel et al. (2008), examining 92 right-handed adolescents aged 9-24 years, FA in the splenium increased significantly with age, with individuals older than 18 years having significantly higher FA than 9-to-11-year-olds. Critically, splenium FA correlated significantly with bimanual motor performance even after controlling for age and gender, establishing a structure-function relationship that has since been replicated multiple times (PMID 18060810).'
),
heading2('2.3 Sex Differences in Callosal Maturation'),
para(
'Sexual dimorphism in CC maturation has been a subject of debate. While early volumetric studies reported larger CC size in females relative to total brain volume, DTI studies have produced more nuanced findings. López-Vicente and colleagues (2021) studied 3031 school-age children (8-12 years) and reported sex differences in MD (girls showed lower global MD, indicating denser or more myelinated white matter) and tract-specific FA differences, but found no global sex difference in FA. In the study by Grohs et al. (2018), CC-motor correlations in preschool children were statistically significant in girls but not boys, suggesting that white matter organization may have a stronger early influence on motor performance in females. This sex-specific pattern may reflect the well-documented earlier neurological maturation in girls during the preschool period, and has important implications for age-sex-stratified normative data in behavioral task batteries.'
),
blankLine(),
// ===== 3. INTERHEMISPHERIC SIGNALING =====
heading1('3. MECHANISMS OF INTERHEMISPHERIC MOTOR SIGNALING'),
heading2('3.1 Excitatory and Inhibitory Transcallosal Pathways'),
para(
'The classical model of interhemispheric motor interaction posits that the dominant (typically left) motor cortex exerts inhibitory control over the non-dominant hemisphere during unimanual tasks, a mechanism thought to prevent "mirror overflow" into the non-executing limb. This transcallosal inhibition (TCI) is mediated primarily by glutamatergic callosal projections onto inhibitory GABAergic interneurons in the contralateral cortex, producing net suppression of the non-dominant M1. During bimanual tasks, both cortices are simultaneously active, and the balance between callosal excitation and inhibition must be precisely modulated to achieve coordinated rather than mirrored movements.'
),
para(
'Excitatory transcallosal signaling, though less emphasized historically, also plays important roles: it contributes to inter-hemispheric synchronization, facilitates the transfer of sensory information (particularly tactile and proprioceptive), and underpins the "transfer of training" effect, whereby skill learning in one hand can partially improve performance in the untrained hand.'
),
heading2('3.2 Transcallosal Conduction Delay and Bimanual Precision'),
para(
'An often-overlooked variable is the transcallosal conduction delay (TCD) - the time required for a neural signal to traverse the CC from one hemisphere to the other. In adults, this is typically 10-20 ms for the motor system. Bortoletto and colleagues (2021) demonstrated using TMS-evoked potentials that the TCD is not symmetric between the two hemispheres, and that this asymmetry is actually predictive of finer bimanual coordination in adults. Their finding challenges the intuitive assumption that faster is always better: rather, the directionality of information flow and the relative timing between hemispheres appears to be functionally optimized (PMID 33578035). Developmental studies have not yet fully characterized TCD asymmetry trajectories in children, representing a significant gap.'
),
heading2('3.3 Transcallosal Inhibition: Developmental Trajectory'),
para(
'Ciechanski, Zewdie, and Kirton (2017) provided the most detailed characterization to date of the developmental profile of transcallosal inhibition in children and adolescents using TMS. In 19 typically developing right-handed participants aged 7-18 years, they found that ipsilateral silent period (iSP) latency decreased with age (meaning faster interhemispheric signal transmission with maturation), while iSP suppression strength increased with age (meaning stronger inhibitory control). Hemispheric asymmetries were present from the earliest ages measured: the left hemisphere showed lower resting motor threshold, longer latency, and greater suppression strength than the right. Girls showed shorter iSP latency than boys at equivalent ages, again reflecting earlier neurological maturation. Critically, iSP duration correlated with Purdue Pegboard performance, directly linking transcallosal inhibitory physiology to behavioral motor outcome (PMID 28381485).'
),
para(
'These TMS findings provide the physiological underpinning for behavioral observations: before approximately age 6-7, children show a relative inability to suppress mirror movements during unimanual tasks, a difficulty performing anti-phase bimanual movements, and slower intermanual transfer times. As TCI matures from middle childhood onward, these behavioral limitations resolve in a predictable, age-graded manner.'
),
blankLine(),
// ===== 4. BEHAVIORAL TASKS =====
heading1('4. BEHAVIORAL TASK PARADIGMS FOR ASSESSING INTERHEMISPHERIC MOTOR FUNCTION'),
para(
'Behavioral tasks offer a window into the functional integrity of the interhemispheric motor network that is accessible, ecologically valid, and applicable across a wide developmental range. The following sections describe the most commonly used paradigms, their underlying principles, and the developmental evidence base for each.'
),
heading2('4.1 Alternating Finger Tapping Test'),
para(
'The alternating finger tapping test requires the participant to tap alternately with the index fingers of each hand as quickly as possible, typically for a 10-second trial. Faster alternating tapping relative to unimanual tapping is thought to reflect the efficiency of interhemispheric timing, as each tap by one hand must trigger or release the contralateral tap via callosal signaling. This task was used by Muetzel et al. (2008) as the primary behavioral probe in their DTI study, with task performance correlating significantly with splenium FA in 9-to-24-year-olds. The task is simple to administer, requires no special equipment beyond a keyboard or force-sensitive tapper, and produces reliable age-related improvements.'
),
para(
'López-Vicente et al. (2021) used a finger tapping task in 3031 children aged 8-12 years and found that FA in the forceps major (callosal splenium fibers connecting occipital and posterior parietal regions) was specifically associated with right-hand finger tapping performance, while global white matter FA was not. This regional specificity underscores the importance of task selection: tapping speed appears most sensitive to posterior callosal microstructure, reflecting the role of parieto-occipital integration in visuomotor timing (PMID 33338611).'
),
heading2('4.2 Bimanual Crank Rotation Task'),
para(
'The bimanual crank rotation task requires simultaneous rotation of cranks with both hands, either in the same direction (iso-directional / in-phase coupling) or in opposite directions (contra-directional / anti-phase coupling). In-phase movements, which produce mirror-symmetrical joint angle patterns, are easier at all ages because they can exploit interhemispheric excitatory coupling. Anti-phase movements, requiring independent force trajectories in each hand, are substantially more difficult and show a steeper developmental improvement trajectory.'
),
para(
'Fagard and Corroyer (2003) used this task alongside tactile interhemispheric transfer measures in children aged 3-8 years. They demonstrated improvement in interhemispheric transfer at around age 5, and earlier progress in bimanual coordination for mirror (in-phase) than parallel (anti-phase) movements. Notably, for the bimanual crank task, less strongly right-handed children performed better on the contra-directional condition, suggesting that strict hemispheric asymmetry may paradoxically constrain the bilateral coordination needed for anti-phase coupling. Visuo-manual interhemispheric transfer correlated with bimanual coordination, indicating that the same callosal substrate serving sensory transfer also supports motor output coordination (PMID 12794778).'
),
heading2('4.3 Tactile Interhemispheric Transfer Tasks'),
para(
'Tactile interhemispheric transfer (THT) tasks measure the ability to identify an object placed in one hand by matching it with the other hand (cross-modal transfer) without visual feedback. This paradigm directly assesses callosal somatosensory fiber integrity and the transfer of tactile representations from one hemisphere to the other. In the Fagard-Corroyer paradigm, improvement in THT was observed from age 3-5 years, preceding the improvement in anti-phase bimanual coordination by approximately 1-2 years. This developmental dissociation suggests that somatosensory callosal fibers mature before the premotor/motor fibers that support anti-phase coordination - a finding consistent with the anterior-to-posterior progression of CC maturation described above (more specifically, the posterior body and splenium somatosensory fibers mature earlier than anterior body premotor fibers).'
),
heading2('4.4 Purdue Pegboard Test'),
para(
'The Purdue Pegboard Test (PPT) assesses fine motor dexterity under three conditions: dominant hand alone, non-dominant hand alone, and bilateral (both hands simultaneously). The bilateral score - which tests bimanual coordination without explicit requirement for anti-phase movement - is particularly sensitive to interhemispheric motor integration. In the Ciechanski et al. (2017) TMS study, PPT performance correlated with iSP duration, directly linking fine bimanual dexterity to the physiological strength of transcallosal inhibition (PMID 28381485). The PPT is widely used in pediatric neurological assessment, has age-referenced norms from age 5 years, and has been validated across a range of clinical conditions including cerebral palsy and ADHD.'
),
heading2('4.5 Movement Assessment Battery for Children (MABC-2)'),
para(
'The Movement Assessment Battery for Children - 2nd Edition (MABC-2) is a standardized, norm-referenced assessment battery covering manual dexterity, aiming and catching, and balance, with norms from 3 to 16 years. While not originally designed as an interhemispheric probe, its manual dexterity subtests (particularly the drawing trail and pegboard components) have been used as dependent variables in neuroimaging studies. Grohs, Reynolds, Dewey, and Lebel (2018) used the MABC-2 in 80 preschool children (3-6 years) and demonstrated that FA of corpus callosum motor fibers positively correlated with motor performance, with correlations driven by female participants. Mean and radial diffusivity negatively correlated with motor performance, indicating that more complete myelination - not just axonal organization - predicts better motor outcomes in early childhood (PMID 30189341). This finding validated the use of the MABC-2 as a behaviorally sensitive outcome measure capable of detecting CC-motor associations even in the 3-to-6-year age window.'
),
heading2('4.6 Bilateral Upper-Limb Cycling Task'),
para(
'Nemanich and Schindler-Ivens (2025) employed unilateral and bilateral antiphase cycling tasks of the upper limbs in 29 typically developing children aged 7-17 years. Bilateral coordination was significantly related to age (better in older children), and the improvement trajectory closely paralleled unilateral coordination development - a finding that challenges simplistic models in which bimanual tasks uniquely depend on callosal maturation independent of general neuromuscular development. Nevertheless, the authors noted the theoretical expectation, given callosal development timelines, of potentially different unilateral-bilateral developmental curves, suggesting that larger samples and more demanding bilateral tasks (such as strict anti-phase coupling at high frequencies) may still reveal callosal-specific developmental constraints (PMID 39266011).'
),
heading2('4.7 Mirror Movement Assessment'),
para(
'Mirror movements - involuntary simultaneous activation of the contralateral limb during voluntary unimanual movement - are physiologically normal in children under approximately 5-7 years of age, reflecting the immaturity of transcallosal inhibition. Clinically, quantification of mirror movements using accelerometry or EMG provides an index of inhibitory callosal maturation. Persistence of pathological mirror movements beyond age 8-10 in otherwise typically developing children, or asymmetric mirror movements, may indicate callosal or corticospinal tract pathology. In children with unilateral cerebral palsy, mirror movements are dramatically increased, reflecting both corticospinal reorganization and altered callosal inhibitory function.'
),
heading2('4.8 Reaction Time Asymmetry Tasks'),
para(
'Ipsilateral reaction time (RT) tasks measure the time to respond to a unilateral stimulus with the ipsilateral hand (requiring interhemispheric transfer) versus the contralateral hand. The difference between ipsilateral and contralateral RT - the interhemispheric transfer time (IHTT) - is typically 3-6 ms in adults. In children, IHTT is longer and more variable, shortening progressively with age. The IHTT paradigm has been used to demonstrate impaired interhemispheric transfer after pediatric concussion, supporting its utility as a sensitive marker of acute callosal dysfunction (Schmidt et al., 2021; PMID 34384288).'
),
blankLine(),
// ===== 5. DTI-BEHAVIOR INTEGRATION =====
heading1('5. INTEGRATION OF NEUROIMAGING AND BEHAVIORAL EVIDENCE'),
heading2('5.1 Diffusion Tensor Imaging Metrics and Motor Behavior'),
para(
'DTI provides three principal metrics that have been correlated with behavioral motor outcomes in children. Fractional Anisotropy (FA) - a unitless scalar from 0 to 1 reflecting the degree of directional water diffusion - increases with myelination and axonal density. Mean Diffusivity (MD) reflects the average magnitude of diffusion and decreases with myelination. Radial Diffusivity (RD) specifically reflects diffusion perpendicular to the main fiber axis and is particularly sensitive to myelin integrity. Axial Diffusivity (AD) reflects diffusion along the main fiber axis and may be more sensitive to axonal integrity.'
),
para(
'Across the studies reviewed, higher CC FA is consistently associated with better motor performance: faster finger tapping, better MABC-2 scores, shorter iSP latency, and higher bimanual coordination accuracy. The associations are regionally specific: splenium FA predicts visuo-motor and bimanual tapping performance; posterior body FA predicts somatosensory transfer and fine manual dexterity; anterior body FA predicts premotor coordination tasks. Grohs et al. (2018) found that RD rather than FA was the DTI parameter most strongly correlated with MABC-2 in preschoolers, suggesting that myelination completeness (reflected by RD) may be a more sensitive predictor than overall organization (reflected by FA) at the youngest ages.'
),
para(
'In the largest pediatric DTI study to date with motor behavioral outcomes, López-Vicente et al. (2021) studied 3031 school-age children and found region-specific but not global CC-motor relationships. FA in the forceps major correlated with finger tapping, while global white matter FA did not - demonstrating that behavioral task selection must be matched to the callosal region of interest. This finding has important implications for study design: broad behavioral batteries will not necessarily reveal CC-specific relationships unless they include tasks that tax posterior callosal-dependent sensorimotor integration (PMID 33338611).'
),
heading2('5.2 Longitudinal Trajectories: Coupling Brain and Behavioral Development'),
para(
'Most existing studies are cross-sectional, inferring developmental trajectories from age-stratified cohorts. Longitudinal data, which are more powerful for detecting individual-level brain-behavior coupling, remain sparse. Muetzel et al. (2008) used a cross-sectional cohort of 92 adolescents and demonstrated that regression models including age, sex, and splenium FA predicted a significant proportion of variance in bimanual tapping performance, supporting the view that CC maturation and behavioral improvement are not merely parallel age-dependent processes but are causally linked. Longitudinal DTI studies in infants and preschoolers have demonstrated rapid FA increases in the first 2 years of life (Kumpulainen et al., 2023) that precede the emergence of bimanual differentiation, suggesting that a critical minimum of callosal organization must be established before coordinated bilateral actions can develop (PMID 36946076).'
),
para(
'White matter microstructure correlates of age reported by López-Vicente et al. (2021) showed that age was the strongest predictor of global FA and MD across all tracts including the CC, with girls showing lower global MD - indicating faster myelination trajectories - but similar FA to boys at school age. This sex difference in MD parallels behavioral data showing superior fine motor performance in girls during middle childhood and supports the value of sex-stratified normative databases for behavioral motor tasks.'
),
heading2('5.3 Beyond FA: Novel Neuroimaging Approaches'),
para(
'While FA and MD remain the most widely reported DTI metrics, newer approaches are being applied to callosal motor research. Fixel-based analysis (FBA) - which quantifies fiber density and cross-section at the fiber bundle level - was used by Hyde et al. (2024) in a study of 277 children (92 with ADHD, 185 controls) using the PANESS motor assessment battery. They found that lower fiber cross-section (FC) in the corticospinal tract was associated with greater motor deficits across all children, while CC and fronto-pontine tract FC predicted timed hand and foot maneuver performance specifically. The absence of group-specific white matter differences between ADHD and controls on PANESS-associated tracts suggests that the white matter basis of soft motor signs is a general childhood developmental phenomenon rather than an ADHD-specific one (PMID 39365253).'
),
para(
'Surface-based morphometry applied to the CC by Gajawelli et al. (2024) provides complementary shape-based information that is not captured by FA or volume alone. Regional shape deformations track local growth trajectories that may be more sensitive to subtle developmental abnormalities than summary metrics, and may ultimately serve as early biomarkers in populations at risk for callosal dysgenesis.'
),
blankLine(),
// ===== 6. CLINICAL POPULATIONS =====
heading1('6. CLINICAL RELEVANCE: BEHAVIORAL TASK FINDINGS IN PEDIATRIC MOTOR DISORDERS'),
heading2('6.1 Callosal Agenesis and Dysgenesis'),
para(
'Complete or partial agenesis of the corpus callosum (ACC) provides the most direct test of the CC-motor coordination hypothesis by nature\'s experiment. Romaniello and colleagues (2021) reported a long-term follow-up of 50 children with prenatal diagnosis of complete isolated ACC (cACC) at fetal MRI, with detailed neuropsychological evaluation. Among 38 school-aged participants, motor function deficits were present in 58%, language deficits in 61%, and memory deficits in 58%. Intellectual disability was present in 21%, with 50% showing normal intellectual functions. Importantly, additional structural abnormalities detected on postnatal MRI predicted worse neurodevelopmental outcomes, underscoring the complexity of isolating callosal contributions from other neuroanatomical pathology (PMID 34850608).'
),
para(
'From the Maternal-Fetal Medicine literature, "asymptomatic" children with ACC and normal IQ may nonetheless show detectable deficits in bimanual motor coordination, complex problem solving, and social functioning - a pattern sometimes described as the "ACC phenotype." This has critical implications for prognostic counseling: a normal IQ score obtained in early childhood may not predict the full range of functional difficulties that emerge in school-age and adolescent years, particularly those requiring rapid interhemispheric motor integration.'
),
para(
'In partial ACC, the prognosis is highly variable and dependent on which callosal segments are absent. Because the body of the CC carries primary motor and premotor fibers, partial ACC affecting the body produces more severe bimanual motor deficits than isolated genu or splenium agenesis. De Keersmaecker et al. (2024) confirmed in a cohort study that the neurodevelopmental outcome of partial ACC is significantly worse when additional brain anomalies accompany the callosal defect, with motor outcome specifically predicted by the presence of posterior body involvement (PMID 37816486).'
),
para(
'Siffredi et al. (2021) used resting-state fMRI to characterize large-scale functional network dynamics in callosal agenesis and found that despite absent structural connectivity, functional laterality was preserved through increased subcortical involvement. This compensatory subcortical routing - via anterior commissure, thalamus, and brainstem pathways - may partially account for the often surprising preservation of gross motor function in ACC, while fine bimanual coordination deficits persist because they require the precise timing capacity that only callosal fibers provide (PMID 34455063).'
),
heading2('6.2 Cerebral Palsy'),
para(
'Unilateral cerebral palsy (hemiplegia) provides a model system for studying how asymmetric callosal input shapes bimanual coordination. Mirror movements, in which voluntary movement of the affected hand is accompanied by involuntary simultaneous movement of the unaffected hand, are markedly increased in hemiplegic CP compared to typically developing children. These mirror movements arise from ipsilateral corticospinal projections that are retained or upregulated when the contralateral (injured) corticospinal system is disrupted, and are modulated by abnormal transcallosal inhibitory signaling.'
),
para(
'Pagnozzi et al. (2020) demonstrated in children with unilateral CP that bilateral brain injury - even when the primary insult appears unilateral - is associated with worse motor outcomes due to disruption of the contralateral hemisphere and CC. Laporta-Hoyos et al. (2023) showed that interhemispheric connectivity, assessed by DTI of callosal fibers, predicted receptive vocabulary (and by extension language-motor coupling) in children with CP, extending the relevance of interhemispheric structural integrity beyond pure motor tasks (PMID 36649231).'
),
para(
'Intensive bimanual therapy, such as the Hand-Arm Bimanual Intensive Therapy (HABIT) protocol, is premised on the hypothesis that task-specific practice can reorganize interhemispheric motor networks. Weinstein et al. (2015) provided preliminary evidence in children with hemiparesis that intensive bimanual therapy is associated with measurable brain plasticity changes, including white matter reorganization in callosal motor regions, suggesting that the CC-motor behavior relationship is bidirectional and amenable to experience-dependent modification (PMID 26640717).'
),
heading2('6.3 Attention-Deficit/Hyperactivity Disorder'),
para(
'ADHD is associated with widespread white matter microstructural abnormalities, with the CC being one of the most consistently affected structures. Parlatini et al. (2023) conducted a systematic review and meta-analysis of 129 diffusion imaging studies in ADHD, confirming reduced FA across multiple CC regions and corticospinal tracts in children and adults with ADHD relative to controls (PMID 37479785). Motor signs in ADHD - including incoordination, motor overflow, and poor bimanual timing - are well recognized clinically but have been historically attributed to corticospinal or cerebellar dysfunction.'
),
para(
'Hyde et al. (2024) specifically probed the soft motor signs in ADHD using PANESS and fixel-based DTI analysis in 277 children. Their finding that CC fiber cross-section predicted timed bimanual performance in both ADHD and control groups - with no group-specific effect - suggests that the motor soft signs in ADHD may reflect developmentally delayed CC maturation on a continuum with typical development, rather than a categorically distinct neuropathology. This dimensionality has implications for behavioral task interpretation: PANESS or bimanual tapping deficits in a child with ADHD do not necessarily signal focal callosal pathology but may reflect a delayed developmental trajectory (PMID 39365253).'
),
heading2('6.4 Autism Spectrum Disorder'),
para(
'Minnigulova et al. (2023) investigated CC microstructure in children with ASD versus typically developing controls, finding reduced FA in the supplementary motor area and ventromedial prefrontal cortex callosal fibers in ASD, and reduced AD across all CC parts. Critically, reduced AD was associated with worse language skills and more severe autistic traits. From a motor perspective, the SMA interconnections via the anterior CC body are directly relevant to bimanual coordination, since SMA plays a key role in bimanual movement preparation and temporal coupling. This callosal disruption may contribute to the motor coordination difficulties (particularly bimanual tasks requiring fine timing) frequently reported in children with ASD, even in the absence of primary motor disability (PMID 36867240).'
),
blankLine(),
// ===== 7. DEVELOPMENTAL FRAMEWORK =====
heading1('7. AN INTEGRATIVE DEVELOPMENTAL FRAMEWORK'),
para(
'The evidence reviewed supports a multistage model of interhemispheric motor development in which structural and functional maturation of the CC unfolds in a posterior-to-anterior, then posterior-supplementary trajectory across the first two decades of life, and behavioral motor competencies emerge correspondingly. Table 1 summarizes key developmental milestones.'
),
blankLine(),
// TABLE 1
new Paragraph({
children: [new TextRun({ text: 'Table 1. ', bold: true, size: 24, font: 'Times New Roman' }),
new TextRun({ text: 'Summary of developmental milestones in corpus callosum maturation and behavioral motor coordination', italics: true, size: 24, font: 'Times New Roman' })],
spacing: { before: 200, after: 120 },
alignment: AlignmentType.CENTER,
}),
new Table({
width: { size: 100, type: WidthType.PERCENTAGE },
rows: [
new TableRow({
tableHeader: true,
children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Age', bold: true, size: 20, font: 'Times New Roman' })], alignment: AlignmentType.CENTER })], shading: { fill: '2E74B5', type: ShadingType.CLEAR, color: '2E74B5' }, width: { size: 15, type: WidthType.PERCENTAGE }, verticalAlign: VerticalAlign.CENTER }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'CC Structural Milestones', bold: true, size: 20, font: 'Times New Roman' })], alignment: AlignmentType.CENTER })], shading: { fill: '2E74B5', type: ShadingType.CLEAR, color: '2E74B5' }, width: { size: 35, type: WidthType.PERCENTAGE }, verticalAlign: VerticalAlign.CENTER }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Behavioral Motor Milestones', bold: true, size: 20, font: 'Times New Roman' })], alignment: AlignmentType.CENTER })], shading: { fill: '2E74B5', type: ShadingType.CLEAR, color: '2E74B5' }, width: { size: 35, type: WidthType.PERCENTAGE }, verticalAlign: VerticalAlign.CENTER }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Key References', bold: true, size: 20, font: 'Times New Roman' })], alignment: AlignmentType.CENTER })], shading: { fill: '2E74B5', type: ShadingType.CLEAR, color: '2E74B5' }, width: { size: 15, type: WidthType.PERCENTAGE }, verticalAlign: VerticalAlign.CENTER }),
],
}),
new TableRow({
children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: '0-12 months', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'DEEAF1', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Splenium and genu myelination commences; rapid size increase; sex differences in shape emerge at 12 months', size: 20, font: 'Times New Roman' })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Bilateral reach emerges; mirror movements predominant; no independent bimanual differentiation', size: 20, font: 'Times New Roman' })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Gajawelli 2024; Birtles 2011', size: 20, font: 'Times New Roman' })] })] }),
],
}),
new TableRow({
children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: '1-3 years', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Rapid FA increase across splenium and posterior body; anterior growth 12-24 months most rapid', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Bimanual object retrieval strategies emerge; complementary role differentiation begins', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Birtles 2011; Gajawelli 2024', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
],
}),
new TableRow({
children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: '3-5 years', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'DEEAF1', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Somatosensory callosal fibers mature further; preschool period peak white matter-motor correlation (girls)', size: 20, font: 'Times New Roman' })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Tactile interhemispheric transfer improves ~age 5; in-phase bimanual control established; mirror movement suppression begins', size: 20, font: 'Times New Roman' })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Fagard 2003; Grohs 2018', size: 20, font: 'Times New Roman' })] })] }),
],
}),
new TableRow({
children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: '6-10 years', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Posterior body FA 70-80% of adult; anterior body still maturing; MD decreasing; sex differences in MD', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Anti-phase bimanual coordination improves; iSP latency shortens; Purdue Pegboard scores approach adult norms in girls', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Ciechanski 2017; Lopez-Vicente 2021', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'BDD7EE', type: ShadingType.CLEAR } }),
],
}),
new TableRow({
children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: '11-18 years', size: 20, font: 'Times New Roman' })] })], shading: { fill: 'DEEAF1', type: ShadingType.CLEAR } }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Splenium FA reaches adult levels post-18; body still increasing FA; anterior CC last to complete myelination', size: 20, font: 'Times New Roman' })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'iSP suppression strength at adult levels; alternating tapping approaches adult speed; bimanual cycling adult-like', size: 20, font: 'Times New Roman' })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: 'Muetzel 2008; Nemanich 2025', size: 20, font: 'Times New Roman' })] })] }),
],
}),
],
}),
blankLine(),
para(
'This framework has three important caveats. First, considerable inter-individual variability exists at every age, meaning that behavioral task norms must incorporate wide confidence intervals and should be age-sex stratified. Second, the CC does not act in isolation: corticospinal tract maturation, cerebellar development, and basal ganglia circuitry all contribute to motor coordination, and their relative contributions vary by task type. Third, experience and practice modify white matter organization through activity-dependent myelination, meaning that environmental factors (motor practice, physical activity, early interventions) can alter the brain-behavior relationship in both directions.'
),
blankLine(),
// ===== 8. GAPS AND FUTURE DIRECTIONS =====
heading1('8. RESEARCH GAPS AND FUTURE DIRECTIONS'),
para(
'Several important research gaps are identified by this review.'
),
boldPara('Lack of longitudinal DTI-behavior coupled datasets: ',
'Most studies are cross-sectional, preventing causal inference about whether individual differences in CC maturation rate predict subsequent motor coordination trajectories. Longitudinal cohort studies from preschool through adolescence with annual DTI and behavioral assessments are needed.'
),
boldPara('Absence of standardized behavioral battery: ',
'No single standardized behavioral task battery is universally accepted for assessing interhemispheric motor function across the full pediatric age range (3-18 years). Different studies use different tasks, making cross-study synthesis difficult. A validated, age-appropriate, interhemispheric motor battery that includes tasks sensitive to each callosal region (tactile transfer for posterior body/splenium, alternating tapping for splenium, Purdue Pegboard for posterior body, bimanual crank rotation for anterior body/premotor) would substantially advance the field.'
),
boldPara('Limited data on transcallosal conduction delay in children: ',
'The Bortoletto et al. (2021) finding that asymmetric TCD predicts bimanual coordination in adults has not been replicated or extended to developing populations. TMS-TEP paradigms in children to characterize directional conduction delay across development represent a high-value research target.'
),
boldPara('Underrepresentation of clinical populations in behavioral DTI studies: ',
'Most DTI-behavior studies focus on typically developing children; clinical populations (ACC, DCD, ADHD, ASD, hemiplegic CP) are studied in separate silos with different behavioral instruments. Comparative studies using the same battery across typical and atypical development would clarify the specificity of CC-motor dysfunction in each condition.'
),
boldPara('Normative data for diverse populations: ',
'Most behavioral and neuroimaging normative datasets derive from high-income, predominantly White, urban populations in North America and Western Europe. Developmental norms for bimanual motor tasks and callosal DTI metrics in diverse cultural, nutritional, and socioeconomic contexts are critically absent.'
),
boldPara('Intervention studies: ',
'Weinstein et al. (2015) provide a proof-of-concept for bimanual therapy-induced white matter change, but the field lacks adequately powered, controlled trials with DTI outcomes. Understanding whether and how behavioral motor training reshapes callosal organization in developing brains has major clinical implications.'
),
blankLine(),
// ===== 9. CLINICAL IMPLICATIONS =====
heading1('9. CLINICAL IMPLICATIONS'),
para(
'The accumulated evidence carries several direct clinical implications for pediatric neurology and developmental neuroscience practice.'
),
para(
'First, behavioral bimanual motor tasks should be incorporated into routine neurodevelopmental surveillance, particularly for populations at elevated risk for callosal pathology. Children with prenatal diagnosis of CC abnormalities, periventricular leukomalacia, ADHD, or early hemiparesis benefit from formal bimanual motor assessment rather than reliance on milestone surveillance alone. The MABC-2 and Purdue Pegboard, which are already used clinically, have validated relationships with callosal white matter and can serve dual roles as screening tools and treatment endpoints.'
),
para(
'Second, the finding that bimanual motor deficits in ACC may not be fully expressed until the second decade of life (Romaniello et al., 2021) underscores the need for longitudinal follow-up of children with prenatal callosal diagnoses, with repeat behavioral motor assessment at school entry, at 10 years, and at adolescence. A single early evaluation is insufficient for prognostic conclusions.'
),
para(
'Third, soft motor signs detected by PANESS or other behavioral batteries in children with ADHD, ASD, or other neurodevelopmental conditions should be interpreted dimensionally - as reflecting the position of a child on a white matter maturational continuum - rather than as evidence of focal callosal pathology. Dimensional models of motor signs may better guide the intensity and type of motor intervention than categorical diagnostic classifications.'
),
para(
'Fourth, the sex differences in callosal maturation and behavioral motor outcomes reported consistently across studies suggest that sex-stratified developmental norms are essential for accurate individual assessment. Using non-stratified norms will systematically overdiagnose motor problems in boys and underdiagnose them in girls during the preschool and early school-age periods.'
),
blankLine(),
// ===== 10. CONCLUSION =====
heading1('10. CONCLUSION'),
para(
'The corpus callosum is the structural backbone of interhemispheric motor communication, and its protracted maturation from infancy through adolescence constitutes one of the fundamental neurobiological constraints on children\'s developing motor coordination. Behavioral task paradigms - ranging from simple alternating finger tapping to complex anti-phase bimanual crank rotation - provide ecologically valid, accessible measures of interhemispheric motor signaling that parallel, predict, and are predicted by quantitative DTI metrics of CC microstructure. The DTI-behavior relationship is regionally specific, age-graded, and modulated by sex, with consistent findings across typically developing populations and pathological amplification in conditions of callosal disruption (agenesis, CP, ADHD, ASD).'
),
para(
'This review has identified a set of behavioral paradigms that, taken together, can probe the full anterior-to-posterior extent of callosal motor function across the pediatric age range. The field\'s next priority should be the construction of a standardized, normatively validated, cross-culturally applicable behavioral battery for interhemispheric motor assessment in children, paired with longitudinal neuroimaging to establish causal brain-behavior trajectories. Such a resource would not only advance fundamental developmental neuroscience but would provide pediatric clinicians with an evidence-based, practical toolkit for early detection and monitoring of callosal motor disorders.'
),
blankLine(),
// PAGE BREAK BEFORE REFERENCES
new Paragraph({ children: [new PageBreak()] }),
// ===== REFERENCES =====
heading1('REFERENCES'),
refPara(
'1. Bortoletto, M., Bonzano, L., Zazio, A., Ferrari, C., Pedullà, L., & Gasparotti, R. (2021). Asymmetric transcallosal conduction delay leads to finer bimanual coordination. Brain Stimulation, 14(2), 380-389. https://doi.org/10.1016/j.brs.2021.02.002 [PMID: 33578035]'
),
refPara(
'2. Ciechanski, P., Zewdie, E., & Kirton, A. (2017). Developmental profile of motor cortex transcallosal inhibition in children and adolescents. Journal of Neurophysiology, 118(1), 140-148. https://doi.org/10.1152/jn.00076.2017 [PMID: 28381485]'
),
refPara(
'3. De Keersmaecker, B., Jansen, K., & Aertsen, M. (2024). Outcome of partial agenesis of corpus callosum. American Journal of Obstetrics and Gynecology, 230(4). https://doi.org/10.1016/j.ajog.2023.10.034 [PMID: 37816486]'
),
refPara(
'4. Fagard, J., & Corroyer, D. (2003). Using a continuous index of laterality to determine how laterality is related to interhemispheric transfer and bimanual coordination in children. Developmental Psychobiology, 43(1), 44-56. https://doi.org/10.1002/dev.10117 [PMID: 12794778]'
),
refPara(
'5. Gajawelli, N., Paulli, A., Deoni, S., Paquette, N., Darakjian, D., & Salazar, C. (2024). Surface-based morphometry of the corpus callosum in young children of ages 1-5. Human Brain Mapping, 45(9), e26693. https://doi.org/10.1002/hbm.26693 [PMID: 38924235]'
),
refPara(
'6. Grohs, M. N., Reynolds, J. E., Dewey, D., & Lebel, C. (2018). Corpus callosum microstructure is associated with motor function in preschool children. NeuroImage, 183, 828-836. https://doi.org/10.1016/j.neuroimage.2018.09.004 [PMID: 30189341]'
),
refPara(
'7. Hyde, C., Fuelscher, I., Rosch, K. S., Seymour, K. E., Crocetti, D., & Silk, T. (2024). Subtle motor signs in children with ADHD and their white matter correlates. Human Brain Mapping, 45(14), e70002. https://doi.org/10.1002/hbm.70002 [PMID: 39365253]'
),
refPara(
'8. Kumpulainen, V., Merisaari, H., Silver, E., et al. (2023). Sex differences, asymmetry, and age-related white matter development in infants and 5-year-olds as assessed with tract-based spatial statistics. Human Brain Mapping, 44(8), 3095-3110. https://doi.org/10.1002/hbm.26269 [PMID: 36946076]'
),
refPara(
'9. Laporta-Hoyos, O., Pannek, K., Pagnozzi, A. M., et al. (2023). White matter microstructure and receptive vocabulary in children with cerebral palsy: The role of interhemispheric connectivity. PLoS ONE, 18(1), e0280358. https://doi.org/10.1371/journal.pone.0280358 [PMID: 36649231]'
),
refPara(
'10. López-Vicente, M., Lamballais, S., Louwen, S., Hillegers, M., Tiemeier, H., & Muetzel, R. L. (2021). White matter microstructure correlates of age, sex, handedness and motor ability in a population-based sample of 3031 school-age children. NeuroImage, 227, 117643. https://doi.org/10.1016/j.neuroimage.2020.117643 [PMID: 33338611]'
),
refPara(
'11. Minnigulova, A., Davydova, E., Pereverzeva, D., et al. (2023). Corpus callosum organization and its implication to core and co-occurring symptoms of Autism Spectrum Disorder. Brain Structure & Function, 228(4), 1033-1047. https://doi.org/10.1007/s00429-023-02617-y [PMID: 36867240]'
),
refPara(
'12. Muetzel, R. L., Collins, P. F., Mueller, B. A., Schissel, A. M., Lim, K. O., & Luciana, M. (2008). The development of corpus callosum microstructure and associations with bimanual task performance in healthy adolescents. NeuroImage, 39(4), 1918-1925. https://doi.org/10.1016/j.neuroimage.2007.10.018 [PMID: 18060810]'
),
refPara(
'13. Nemanich, S., & Schindler-Ivens, S. (2025). Age-related development of bilateral coordination of the upper limbs in children and adolescents. Journal of Motor Behavior, 57(1), 15-27. https://doi.org/10.1080/00222895.2024.2396114 [PMID: 39266011]'
),
refPara(
'14. Pagnozzi, A. M., Pannek, K., Fripp, J., et al. (2020). Understanding the impact of bilateral brain injury in children with unilateral cerebral palsy. Human Brain Mapping, 41(8), 2049-2062. https://doi.org/10.1002/hbm.24931 [PMID: 32134174]'
),
refPara(
'15. Parlatini, V., Itahashi, T., Lee, Y., et al. (2023). White matter alterations in Attention-Deficit/Hyperactivity Disorder (ADHD): a systematic review of 129 diffusion imaging studies with meta-analysis. Molecular Psychiatry, 28, 4697-4716. https://doi.org/10.1038/s41380-023-02173-1 [PMID: 37479785]'
),
refPara(
'16. Romaniello, R., Arrigoni, F., De Salvo, P., et al. (2021). Long-term follow-up in a cohort of children with isolated corpus callosum agenesis at fetal MRI. Annals of Clinical and Translational Neurology, 8(12), 2325-2334. https://doi.org/10.1002/acn3.51484 [PMID: 34850608]'
),
refPara(
'17. Schmidt, J., Brown, K. E., Feldman, S. J., et al. (2021). Evidence of altered interhemispheric communication after pediatric concussion. Brain Injury, 35(11), 1378-1386. https://doi.org/10.1080/02699052.2021.1956175 [PMID: 34384288]'
),
refPara(
'18. Siffredi, V., Farouj, Y., Tarun, A., et al. (2021). Large-scale functional network dynamics in human callosal agenesis: Increased subcortical involvement and preserved laterality. NeuroImage, 241, 118414. https://doi.org/10.1016/j.neuroimage.2021.118414 [PMID: 34455063]'
),
refPara(
'19. Weinstein, M., Myers, V., Green, D., et al. (2015). Brain plasticity following intensive bimanual therapy in children with hemiparesis: Preliminary evidence. Neural Plasticity, 2015, 709732. https://doi.org/10.1155/2015/709732 [PMID: 26640717]'
),
refPara(
'20. Birtles, D. B., Anker, S., Atkinson, J., et al. (2011). Bimanual strategies for object retrieval in infants and young children. Experimental Brain Research, 211(2), 207-218. https://doi.org/10.1007/s00221-011-2666-z [PMID: 21499886]'
),
refPara(
'21. Willford, J. A., Chandler, L. S., & Goldschmidt, L. (2010). Effects of prenatal tobacco, alcohol and marijuana exposure on processing speed, visual-motor coordination, and interhemispheric transfer. Neurotoxicology and Teratology, 32(6), 580-588. [PMID: 20600845]'
),
blankLine(),
]
}]
});
Packer.toBuffer(doc).then(buffer => {
fs.writeFileSync('/home/daytona/workspace/interhemispheric-manuscript/Interhemispheric_Motor_Coordination_Review.docx', buffer);
console.log('Document created successfully.');
}).catch(err => {
console.error('Error:', err);
process.exit(1);
});
cd /home/daytona/workspace/interhemispheric-manuscript && node create_manuscript.js 2>&1
python3 /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/workspace/interhemispheric-manuscript/Interhemispheric_Motor_Coordination_Review.docx 2>&1
ls -lh /home/daytona/workspace/interhemispheric-manuscript/Interhemispheric_Motor_Coordination_Review.docx && python3 -c "import zipfile; z = zipfile.ZipFile('/home/daytona/workspace/interhemispheric-manuscript/Interhemispheric_Motor_Coordination_Review.docx'); print('Valid ZIP with files:', z.namelist()[:8])"
Interhemispheric Motor Coordination Review
Word Document · DOCX
| Section | Content |
|---|---|
| Title Page | Full title, running head, keywords, word count |
| Abstract | Structured (Background, Objectives, Methods, Results, Conclusions) |
| 1. Introduction | Rationale, scope, and four specific review objectives |
| 2. Neuroanatomy & Development | CC topography, axonal heterogeneity, prenatal/postnatal myelination, sex differences |
| 3. Interhemispheric Motor Signaling | Excitatory/inhibitory transcallosal pathways, transcallosal conduction delay, iSP developmental trajectory |
| 4. Behavioral Task Paradigms | 8 tasks reviewed in detail (see below) |
| 5. DTI-Behavior Integration | FA/MD/RD evidence, regional specificity, longitudinal frameworks, fixel-based analysis |
| 6. Clinical Populations | Callosal agenesis, cerebral palsy, ADHD, ASD - behavioral findings in each |
| 7. Integrative Developmental Framework | Structured Table 1 with age-stratified CC milestones + behavioral milestones |
| 8. Research Gaps | 6 priority gaps identified with rationale |
| 9. Clinical Implications | 4 practice-oriented conclusions |
| 10. Conclusion | Synthesis + field-level call to action |
| References | 21 peer-reviewed citations (2003-2025), all with PMIDs |