stefanches7 commited on
Commit
744b7b4
·
1 Parent(s): 5f5963f

macaque writeup & GPT-5 produced roadmap

Browse files
Files changed (2) hide show
  1. macaque-db-dataset +30 -0
  2. macaque-db-roadmap.html +224 -0
macaque-db-dataset ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - https://data.kitware.com/#collection/54b582c38d777f4362aa9cb3
2
+
3
+ - info page
4
+ - example slices by time (8months, 14 months)
5
+ - tractography volume examples without reference to a subject or session
6
+ - flowchart of pipelines
7
+ - sMRI: field corr, alignment to atlas, skull stripping
8
+ - DTI (tractography): DTIPrep (artifact corr), tensor estimation, skull stripping
9
+
10
+
11
+
12
+ - scan data
13
+
14
+ - subject txt with scan times
15
+ - subject directories
16
+ - subdirectories: scan time names directories
17
+ - subdirectories: modalities (sMRI, DTI)
18
+ - sMRI: original data subdir, reg2atlas subdir: inside the latter, reg2atlas, manual brain masks and auto brain masks
19
+ - in NRRD format
20
+ - DTI: ORIG - raw data?
21
+ - MASKMANUAL - empty dir
22
+ - AUTOQC: baseline, DTI_FA, DTI_MD, IDWI - unidentified modalities
23
+ - PROCESSED: B0, DTI, FA, IDWI, MD
24
+
25
+ - Google search:
26
+ - https://www.nitrc.org/projects/uncuw_macdevmri
27
+ - "This is a macaque brain MRI database characterizing the normal postnatal macaque brain development. This longitudinal primate database was acquired from a cohort of healthy macaque monkeys ranging from a few week olds up to 3-year-old adolescents.
28
+ "
29
+ - "Each scan consists of structural (both T1 and T2) and diffusion MRI. T1 and T2 are provided as NRRD format in the original scanner space as well as in a common atlas space where they are rigidly aligned. Diffusion MRI is provided as raw diffusion weighted images. In addition, pre-processing was performed including motion and eddy current distortion correction on the diffusion weighted MR and tensors were calculated with diffusion property maps (FA, MD, Baseline and iDWI)."
30
+ - publication link: Young JT et al. The UNC-Wisconsin Rhesus Macaque Neurodevelopment Database: A Structural MRI and DTI Database of Early Postnatal Development. Frontiers in Neuroscience. 2017 Feb 2;11:292–11.
macaque-db-roadmap.html ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>Macaque Neurodevelopment MRI Dataset — Roadmap</title>
7
+ <style>
8
+ :root {
9
+ --bg: #0f1221;
10
+ --card: #161a2f;
11
+ --ink: #e7eaf3;
12
+ --muted: #a7b0c4;
13
+ --accent: #7cc6ff;
14
+ --accent-2: #7bffba;
15
+ --border: #2a3156;
16
+ }
17
+ html, body { margin:0; padding:0; background:var(--bg); color:var(--ink); font: 15px/1.6 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; }
18
+ .wrap { max-width: 980px; margin: 40px auto; padding: 0 20px; }
19
+ header { margin-bottom: 24px; }
20
+ h1 { font-size: 28px; margin: 0 0 8px; }
21
+ h2 { font-size: 20px; margin: 28px 0 12px; }
22
+ h3 { font-size: 16px; margin: 18px 0 8px; color: var(--accent); }
23
+ p { color: var(--muted); margin: 8px 0 12px; }
24
+ a { color: var(--accent); text-decoration: none; }
25
+ a:hover { text-decoration: underline; }
26
+ .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
27
+ .card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
28
+ ul { margin: 8px 0 8px 22px; }
29
+ code, pre { background: #0b0e1a; color: #dfe6ff; border: 1px solid var(--border); border-radius: 8px; }
30
+ code { padding: 0 6px; }
31
+ pre { padding: 12px; overflow: auto; }
32
+ .phase { border-left: 3px solid var(--accent); padding-left: 12px; margin: 16px 0; }
33
+ .tag { display: inline-block; font-size: 12px; padding: 2px 8px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); margin-right: 6px; }
34
+ .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
35
+ footer { margin: 36px 0 24px; color: var(--muted); font-size: 13px; }
36
+ </style>
37
+ </head>
38
+ <body>
39
+ <div class="wrap">
40
+ <header>
41
+ <h1>UNC–Wisconsin Rhesus Macaque Neurodevelopment MRI — Roadmap</h1>
42
+ <p>Concise plan to build an info page, organize scans, and surface processing pipelines and outputs for structural (T1/T2) and diffusion MRI.</p>
43
+ <div>
44
+ <span class="tag">sMRI</span>
45
+ <span class="tag">DTI</span>
46
+ <span class="tag">NRRD</span>
47
+ <span class="tag">Atlas-aligned</span>
48
+ <span class="tag">DTIPrep</span>
49
+ </div>
50
+ </header>
51
+
52
+ <section class="cards" aria-label="At a glance">
53
+ <div class="card">
54
+ <h2>At a Glance</h2>
55
+ <ul>
56
+ <li>Longitudinal macaque brain MRI spanning early postnatal to ~3 years.</li>
57
+ <li>Each scan includes structural (T1/T2) and diffusion MRI.</li>
58
+ <li>T1/T2 available in original scanner space and rigid atlas space (NRRD).</li>
59
+ <li>Diffusion provided as raw DWIs plus preprocessed outputs and tensor-derived maps.</li>
60
+ </ul>
61
+ </div>
62
+ <div class="card">
63
+ <h2>Key Resources</h2>
64
+ <ul>
65
+ <li><a href="https://data.kitware.com/#collection/54b582c38d777f4362aa9cb3" target="_blank" rel="noreferrer noopener">Data collection (Kitware)</a></li>
66
+ <li><a href="https://www.nitrc.org/projects/uncuw_macdevmri" target="_blank" rel="noreferrer noopener">Project page (NITRC)</a></li>
67
+ <li>Young et al., 2017, Frontiers in Neuroscience</li>
68
+ </ul>
69
+ </div>
70
+ </section>
71
+
72
+ <section>
73
+ <h2>Roadmap Phases</h2>
74
+
75
+ <div class="phase card">
76
+ <h3>Phase 1 — Info Page</h3>
77
+ <ul>
78
+ <li>Example slices at representative ages (e.g., ~8 months, ~14 months).</li>
79
+ <li>Tractography volume examples without subject/session identifiers.</li>
80
+ <li>Processing flowcharts:
81
+ <ul>
82
+ <li><strong>sMRI</strong>: field correction → atlas alignment → skull stripping.</li>
83
+ <li><strong>DTI</strong>: artifact correction (DTIPrep) → tensor estimation → skull stripping.</li>
84
+ </ul>
85
+ </li>
86
+ </ul>
87
+ </div>
88
+
89
+ <div class="phase card">
90
+ <h3>Phase 2 — Data Organization</h3>
91
+ <ul>
92
+ <li>Parse subject list with scan timepoints.</li>
93
+ <li>Subject directories → timepoint directories → modality folders (sMRI, DTI).</li>
94
+ <li><strong>sMRI</strong>:
95
+ <ul>
96
+ <li>Original data subfolder.</li>
97
+ <li>Atlas-registered subfolder with manual and auto brain masks.</li>
98
+ <li>Formats: NRRD.</li>
99
+ </ul>
100
+ </li>
101
+ <li><strong>DTI</strong>:
102
+ <ul>
103
+ <li><em>ORIG</em>: raw diffusion-weighted images.</li>
104
+ <li><em>MASKMANUAL</em>: manual mask folder (may be empty initially).</li>
105
+ <li><em>AUTOQC</em>: baseline, DTI_FA, DTI_MD, iDWI (auto QC products).</li>
106
+ <li><em>PROCESSED</em>: B0, DTI, FA, iDWI, MD (tensor-derived outputs).</li>
107
+ </ul>
108
+ </li>
109
+ </ul>
110
+ </div>
111
+
112
+ <div class="phase card">
113
+ <h3>Phase 3 — Surfacing Outputs</h3>
114
+ <ul>
115
+ <li>Gallery for key modalities (T1, T2, FA, MD, iDWI, B0).</li>
116
+ <li>Download pointers for original and atlas-registered sMRI (NRRD).</li>
117
+ <li>Overview of DTI preprocessing (DTIPrep) and tensor estimation.</li>
118
+ <li>Brain mask availability: manual and auto (sMRI).</li>
119
+ </ul>
120
+ </div>
121
+
122
+ <div class="phase card">
123
+ <h3>Phase 4 — Quality & Provenance</h3>
124
+ <ul>
125
+ <li>Summarize AUTOQC outputs and how to interpret them.</li>
126
+ <li>Document minimal provenance for each product (tool, parameters, version).</li>
127
+ <li>Link to primary resources and canonical publication for citation.</li>
128
+ </ul>
129
+ </div>
130
+ </section>
131
+
132
+ <section>
133
+ <h2>Directory Schema</h2>
134
+ <div class="card">
135
+ <pre>subject_list.txt # subject IDs and scan times
136
+ sub-XX/
137
+ [timepoint]/
138
+ sMRI/
139
+ ORIGINAL/
140
+ REG2ATLAS/
141
+ reg2atlas/ # transforms and aligned volumes
142
+ masks/
143
+ manual/
144
+ auto/
145
+ DTI/
146
+ ORIG/ # raw DWIs
147
+ MASKMANUAL/ # manual masks (may be empty)
148
+ AUTOQC/ # baseline, DTI_FA, DTI_MD, iDWI
149
+ PROCESSED/ # B0, DTI, FA, iDWI, MD
150
+ </pre>
151
+ </div>
152
+ </section>
153
+
154
+ <section>
155
+ <h2>Pipelines</h2>
156
+ <div class="grid-2">
157
+ <div class="card">
158
+ <h3>sMRI</h3>
159
+ <ul>
160
+ <li>Field inhomogeneity correction.</li>
161
+ <li>Rigid alignment to common atlas space.</li>
162
+ <li>Skull stripping (manual and automated masks).</li>
163
+ <li>Deliverables: original and atlas-registered T1/T2 (NRRD), masks.</li>
164
+ </ul>
165
+ </div>
166
+ <div class="card">
167
+ <h3>DTI</h3>
168
+ <ul>
169
+ <li>Artifact/motion correction via DTIPrep.</li>
170
+ <li>Tensor estimation.</li>
171
+ <li>Skull stripping.</li>
172
+ <li>Deliverables: raw DWIs, QC outputs, tensor maps (FA, MD, iDWI, B0).</li>
173
+ </ul>
174
+ </div>
175
+ </div>
176
+ </section>
177
+
178
+ <section>
179
+ <h2>Action Items</h2>
180
+ <div class="cards">
181
+ <div class="card">
182
+ <h3>Info Page Content</h3>
183
+ <ul>
184
+ <li>Curate age-based slice examples (~8m, ~14m).</li>
185
+ <li>Render tractography volume snapshots (de-identified).</li>
186
+ <li>Publish pipeline flowcharts (sMRI, DTI).</li>
187
+ </ul>
188
+ </div>
189
+ <div class="card">
190
+ <h3>Data Wiring</h3>
191
+ <ul>
192
+ <li>Load subject/timepoint table from <code>subject_list.txt</code>.</li>
193
+ <li>Map directory structure to UI routes.</li>
194
+ <li>Validate presence of expected modalities per timepoint.</li>
195
+ </ul>
196
+ </div>
197
+ <div class="card">
198
+ <h3>QC & Provenance</h3>
199
+ <ul>
200
+ <li>Summarize AUTOQC metrics and definitions.</li>
201
+ <li>Record tool versions and key parameters (DTIPrep, registration).</li>
202
+ <li>Provide citation and dataset attribution guidance.</li>
203
+ </ul>
204
+ </div>
205
+ </div>
206
+ </section>
207
+
208
+ <section>
209
+ <h2>Links</h2>
210
+ <div class="card">
211
+ <ul>
212
+ <li><a href="https://data.kitware.com/#collection/54b582c38d777f4362aa9cb3" target="_blank" rel="noreferrer noopener">Kitware Collection</a></li>
213
+ <li><a href="https://www.nitrc.org/projects/uncuw_macdevmri" target="_blank" rel="noreferrer noopener">NITRC Project Page</a></li>
214
+ <li>Young JT et al. (2017) Frontiers in Neuroscience.</li>
215
+ </ul>
216
+ </div>
217
+ </section>
218
+
219
+ <footer>
220
+ <p>Roadmap derived from project notes; external descriptions paraphrased. Update as assets and directories are verified.</p>
221
+ </footer>
222
+ </div>
223
+ </body>
224
+ </html>