KuangshiAi commited on
Commit ·
d0e79c1
1
Parent(s): bed0e49
update bioimage and molecular cases
Browse files- bioimage_data/data/dataset_002/{dataset_002.tif → dataset_002_ch0.tif} +2 -2
- bioimage_data/data/dataset_002/dataset_002_ch1.tif +3 -0
- eval_cases/molecular_vis/actions/basic_actions.yaml +0 -727
- eval_cases/molecular_vis/{workflows/eval_analysis_workflows.yaml → eval_analysis_workflows.yaml} +156 -1
- eval_cases/napari/0_actions/eval_basic_napari_functions.yaml +0 -566
- eval_cases/napari/1_workflows/eval_analysis_workflows.yaml +0 -104
- eval_cases/napari/1_workflows/eval_figure_recreation.yaml +0 -28
- eval_cases/napari/1_workflows/eval_iso_surface_determination.yaml +0 -25
- eval_cases/napari/1_workflows/eval_visualization_workflows.yaml +0 -79
- eval_cases/napari/eval_visualization_workflows.yaml +236 -0
- eval_cases/selected_15_cases.yaml +0 -87
- eval_cases/selected_cases.yaml +200 -0
bioimage_data/data/dataset_002/{dataset_002.tif → dataset_002_ch0.tif}
RENAMED
|
File without changes
|
bioimage_data/data/dataset_002/dataset_002_ch1.tif
ADDED
|
|
Git LFS Details
|
eval_cases/molecular_vis/actions/basic_actions.yaml
DELETED
|
@@ -1,727 +0,0 @@
|
|
| 1 |
-
# Basic Actions for Molecular Visualization Benchmark
|
| 2 |
-
# These actions test core functionality of molecular visualization tools
|
| 3 |
-
# https://www.rcsb.org/structure/1CRN
|
| 4 |
-
#
|
| 5 |
-
# Taxonomy Level: Task (small-scale visualization task involving a few operations)
|
| 6 |
-
# Each task is marked with a comment indicating the end of the task and the task name
|
| 7 |
-
|
| 8 |
-
# ============================================================
|
| 9 |
-
# TASK 1: 1CRN - Load & Basic Representations
|
| 10 |
-
# ============================================================
|
| 11 |
-
|
| 12 |
-
# Loading a CIF file
|
| 13 |
-
- vars:
|
| 14 |
-
question: |
|
| 15 |
-
Remove all molecules from and load the data from "data/1CRN.cif".
|
| 16 |
-
Take a screenshot to confirm if the dataset has been loaded.
|
| 17 |
-
Respond with <1> if the cif file has been loaded and the molecule is visible in the viewport, or <0> if it failed. Only respond with <1> or <0>.
|
| 18 |
-
assert:
|
| 19 |
-
- type: contains-all
|
| 20 |
-
value: "<1>"
|
| 21 |
-
- type: not-contains
|
| 22 |
-
value: "<0>"
|
| 23 |
-
options:
|
| 24 |
-
cache: false
|
| 25 |
-
runSerially: true
|
| 26 |
-
|
| 27 |
-
# Basic visualization - Van der Waals representation
|
| 28 |
-
- vars:
|
| 29 |
-
question: |
|
| 30 |
-
Change the visualization type to Van-der-Waals.
|
| 31 |
-
Take a screenshot to validate whether the representation has been changed.
|
| 32 |
-
Respond with <1> if the molecule in the viewport is in the Van-der-Waals representation, or <0> if it failed. Only respond with <1> or <0>.
|
| 33 |
-
assert:
|
| 34 |
-
- type: contains-all
|
| 35 |
-
value: "<1>"
|
| 36 |
-
- type: not-contains
|
| 37 |
-
value: "<0>"
|
| 38 |
-
options:
|
| 39 |
-
cache: false
|
| 40 |
-
runSerially: true
|
| 41 |
-
|
| 42 |
-
# Licorice representation
|
| 43 |
-
- vars:
|
| 44 |
-
question: |
|
| 45 |
-
Change the visualization type to Licorice (stick representation).
|
| 46 |
-
Take a screenshot to validate whether the representation has been changed.
|
| 47 |
-
Respond with <1> if the molecule in the viewport is in the Licorice representation showing bonds as sticks, or <0> if it failed. Only respond with <1> or <0>.
|
| 48 |
-
assert:
|
| 49 |
-
- type: contains-all
|
| 50 |
-
value: "<1>"
|
| 51 |
-
- type: not-contains
|
| 52 |
-
value: "<0>"
|
| 53 |
-
options:
|
| 54 |
-
cache: false
|
| 55 |
-
runSerially: true
|
| 56 |
-
|
| 57 |
-
# END OF TASK 1: 1CRN - Load & Basic Representations
|
| 58 |
-
# Operations: Load CIF file, Van der Waals representation, Licorice representation
|
| 59 |
-
|
| 60 |
-
# ============================================================
|
| 61 |
-
# TASK 2: 1CRN - Color by Properties
|
| 62 |
-
# ============================================================
|
| 63 |
-
|
| 64 |
-
# Coloring by element
|
| 65 |
-
- vars:
|
| 66 |
-
question: |
|
| 67 |
-
Color the molecule by element (atoms colored according to their chemical element).
|
| 68 |
-
Take a screenshot to validate whether the coloring has been applied.
|
| 69 |
-
Respond with <1> if the molecule is colored by element with different colors for different atom types, or <0> if it failed. Only respond with <1> or <0>.
|
| 70 |
-
assert:
|
| 71 |
-
- type: contains-all
|
| 72 |
-
value: "<1>"
|
| 73 |
-
- type: not-contains
|
| 74 |
-
value: "<0>"
|
| 75 |
-
options:
|
| 76 |
-
cache: false
|
| 77 |
-
runSerially: true
|
| 78 |
-
|
| 79 |
-
# Coloring by chain
|
| 80 |
-
- vars:
|
| 81 |
-
question: |
|
| 82 |
-
Select chain A and color it red. Color all other chains blue.
|
| 83 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 84 |
-
Respond with <1> if Chain A is colored red and other chains are colored blue, or <0> if it failed. Only respond with <1> or <0>.
|
| 85 |
-
assert:
|
| 86 |
-
- type: contains-all
|
| 87 |
-
value: "<1>"
|
| 88 |
-
- type: not-contains
|
| 89 |
-
value: "<0>"
|
| 90 |
-
options:
|
| 91 |
-
cache: false
|
| 92 |
-
runSerially: true
|
| 93 |
-
|
| 94 |
-
# Coloring by residue type
|
| 95 |
-
- vars:
|
| 96 |
-
question: |
|
| 97 |
-
Color the molecule by residue type (amino acids colored according to their type).
|
| 98 |
-
Take a screenshot to validate whether the coloring has been applied.
|
| 99 |
-
Respond with <1> if the molecule is colored by residue type with different amino acids having distinct colors, or <0> if it failed. Only respond with <1> or <0>.
|
| 100 |
-
assert:
|
| 101 |
-
- type: contains-all
|
| 102 |
-
value: "<1>"
|
| 103 |
-
- type: not-contains
|
| 104 |
-
value: "<0>"
|
| 105 |
-
options:
|
| 106 |
-
cache: false
|
| 107 |
-
runSerially: true
|
| 108 |
-
|
| 109 |
-
# END OF TASK 2: 1CRN - Color by Properties
|
| 110 |
-
# Operations: Color by element, color by chain, color by residue type
|
| 111 |
-
|
| 112 |
-
# ============================================================
|
| 113 |
-
# TASK 3: 1CRN - Region Selection
|
| 114 |
-
# ============================================================
|
| 115 |
-
|
| 116 |
-
# Selecting and coloring specific residues
|
| 117 |
-
- vars:
|
| 118 |
-
question: |
|
| 119 |
-
Select residues 1 to 10 and color them green. Keep the rest of the molecule in its current color.
|
| 120 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 121 |
-
Respond with <1> if residues 1 to 10 are colored green while the rest of the molecule remains in a different color, or <0> if it failed. Only respond with <1> or <0>.
|
| 122 |
-
assert:
|
| 123 |
-
- type: contains-all
|
| 124 |
-
value: "<1>"
|
| 125 |
-
- type: not-contains
|
| 126 |
-
value: "<0>"
|
| 127 |
-
options:
|
| 128 |
-
cache: false
|
| 129 |
-
runSerially: true
|
| 130 |
-
|
| 131 |
-
# Selecting specific atoms
|
| 132 |
-
- vars:
|
| 133 |
-
question: |
|
| 134 |
-
Select all carbon atoms and color them cyan.
|
| 135 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 136 |
-
Respond with <1> if all carbon atoms are colored cyan while other atoms have different colors, or <0> if it failed. Only respond with <1> or <0>.
|
| 137 |
-
assert:
|
| 138 |
-
- type: contains-all
|
| 139 |
-
value: "<1>"
|
| 140 |
-
- type: not-contains
|
| 141 |
-
value: "<0>"
|
| 142 |
-
options:
|
| 143 |
-
cache: false
|
| 144 |
-
runSerially: true
|
| 145 |
-
|
| 146 |
-
# END OF TASK 3: 1CRN - Region Selection
|
| 147 |
-
# Operations: Select and color specific residues, select and color specific atoms
|
| 148 |
-
|
| 149 |
-
# ============================================================
|
| 150 |
-
# TASK 4: 1CRN - Multi-Representation
|
| 151 |
-
# ============================================================
|
| 152 |
-
|
| 153 |
-
# Multiple representations
|
| 154 |
-
- vars:
|
| 155 |
-
question: |
|
| 156 |
-
Create two representations: show the backbone as Cartoon and all side chains as Licorice.
|
| 157 |
-
Take a screenshot to validate whether both representations are visible.
|
| 158 |
-
Respond with <1> if both representations are visible (Cartoon backbone + Licorice side chains), or <0> if it failed. Only respond with <1> or <0>.
|
| 159 |
-
assert:
|
| 160 |
-
- type: contains-all
|
| 161 |
-
value: "<1>"
|
| 162 |
-
- type: not-contains
|
| 163 |
-
value: "<0>"
|
| 164 |
-
options:
|
| 165 |
-
cache: false
|
| 166 |
-
runSerially: true
|
| 167 |
-
|
| 168 |
-
# Material properties - Opaque
|
| 169 |
-
- vars:
|
| 170 |
-
question: |
|
| 171 |
-
Change the material to Opaque (fully opaque, no transparency).
|
| 172 |
-
Take a screenshot to validate whether the material has been changed.
|
| 173 |
-
Respond with <1> if the molecule appears fully opaque with no transparency, or <0> if it failed. Only respond with <1> or <0>.
|
| 174 |
-
assert:
|
| 175 |
-
- type: contains-all
|
| 176 |
-
value: "<1>"
|
| 177 |
-
- type: not-contains
|
| 178 |
-
value: "<0>"
|
| 179 |
-
options:
|
| 180 |
-
cache: false
|
| 181 |
-
runSerially: true
|
| 182 |
-
|
| 183 |
-
# Changing representation radius
|
| 184 |
-
- vars:
|
| 185 |
-
question: |
|
| 186 |
-
Change the representation to Licorice and set the radius to 0.3.
|
| 187 |
-
Take a screenshot to validate whether the radius has been changed.
|
| 188 |
-
Respond with <1> if the Licorice representation shows bonds with a radius of 0.3, or <0> if it failed. Only respond with <1> or <0>.
|
| 189 |
-
assert:
|
| 190 |
-
- type: contains-all
|
| 191 |
-
value: "<1>"
|
| 192 |
-
- type: not-contains
|
| 193 |
-
value: "<0>"
|
| 194 |
-
options:
|
| 195 |
-
cache: false
|
| 196 |
-
runSerially: true
|
| 197 |
-
|
| 198 |
-
# END OF TASK 4: 1CRN - Multi-Representation
|
| 199 |
-
# Operations: Create multiple representations (cartoon + licorice), adjust material properties (opaque), adjust representation parameters (radius)
|
| 200 |
-
|
| 201 |
-
# ============================================================
|
| 202 |
-
# TASK 5: 1CRN - Advanced Coloring
|
| 203 |
-
# ============================================================
|
| 204 |
-
|
| 205 |
-
# Coloring by B-factor (temperature factor)
|
| 206 |
-
- vars:
|
| 207 |
-
question: |
|
| 208 |
-
Color the molecule by B-factor (temperature factor, showing flexibility/uncertainty).
|
| 209 |
-
Take a screenshot to validate whether the coloring has been applied.
|
| 210 |
-
Respond with <1> if the molecule is colored by B-factor showing a gradient of colors indicating different temperature factors, or <0> if it failed. Only respond with <1> or <0>.
|
| 211 |
-
assert:
|
| 212 |
-
- type: contains-all
|
| 213 |
-
value: "<1>"
|
| 214 |
-
- type: not-contains
|
| 215 |
-
value: "<0>"
|
| 216 |
-
options:
|
| 217 |
-
cache: false
|
| 218 |
-
runSerially: true
|
| 219 |
-
|
| 220 |
-
# Selecting water molecules
|
| 221 |
-
- vars:
|
| 222 |
-
question: |
|
| 223 |
-
Select all water molecules (residue name "HOH" or "WAT") and color them cyan.
|
| 224 |
-
Take a screenshot to validate whether the water molecules have been selected and colored.
|
| 225 |
-
Respond with <1> if all water molecules are colored cyan and visible in the viewport, or <0> if it failed. Only respond with <1> or <0>.
|
| 226 |
-
assert:
|
| 227 |
-
- type: contains-all
|
| 228 |
-
value: "<1>"
|
| 229 |
-
- type: not-contains
|
| 230 |
-
value: "<0>"
|
| 231 |
-
options:
|
| 232 |
-
cache: false
|
| 233 |
-
runSerially: true
|
| 234 |
-
|
| 235 |
-
# Coloring by charge
|
| 236 |
-
- vars:
|
| 237 |
-
question: |
|
| 238 |
-
Color the molecule by charge (positive charges one color, negative charges another, neutral a third color).
|
| 239 |
-
Take a screenshot to validate whether the coloring has been applied.
|
| 240 |
-
Respond with <1> if the molecule is colored by charge with distinct colors for positive, negative, and neutral regions, or <0> if it failed. Only respond with <1> or <0>.
|
| 241 |
-
assert:
|
| 242 |
-
- type: contains-all
|
| 243 |
-
value: "<1>"
|
| 244 |
-
- type: not-contains
|
| 245 |
-
value: "<0>"
|
| 246 |
-
options:
|
| 247 |
-
cache: false
|
| 248 |
-
runSerially: true
|
| 249 |
-
|
| 250 |
-
# Coloring by hydrophobicity
|
| 251 |
-
- vars:
|
| 252 |
-
question: |
|
| 253 |
-
Color the molecule by hydrophobicity (hydrophobic residues one color, hydrophilic another).
|
| 254 |
-
Take a screenshot to validate whether the coloring has been applied.
|
| 255 |
-
Respond with <1> if the molecule is colored by hydrophobicity with distinct colors for hydrophobic and hydrophilic regions, or <0> if it failed. Only respond with <1> or <0>.
|
| 256 |
-
assert:
|
| 257 |
-
- type: contains-all
|
| 258 |
-
value: "<1>"
|
| 259 |
-
- type: not-contains
|
| 260 |
-
value: "<0>"
|
| 261 |
-
options:
|
| 262 |
-
cache: false
|
| 263 |
-
runSerially: true
|
| 264 |
-
|
| 265 |
-
# END OF TASK 5: 1CRN - Advanced Coloring
|
| 266 |
-
# Operations: Color by B-factor, select and color water molecules, color by charge, color by hydrophobicity
|
| 267 |
-
|
| 268 |
-
# ============================================================
|
| 269 |
-
# TASK 6: 1CRN - Active Site Selection
|
| 270 |
-
# ============================================================
|
| 271 |
-
|
| 272 |
-
# Selecting and highlighting active site
|
| 273 |
-
- vars:
|
| 274 |
-
question: |
|
| 275 |
-
Select residues within 5 Angstroms of residue 25 and color them yellow. Color the rest of the molecule gray.
|
| 276 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 277 |
-
Respond with <1> if residues within 5 Angstroms of residue 25 are colored yellow and the rest of the molecule is colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 278 |
-
assert:
|
| 279 |
-
- type: contains-all
|
| 280 |
-
value: "<1>"
|
| 281 |
-
- type: not-contains
|
| 282 |
-
value: "<0>"
|
| 283 |
-
options:
|
| 284 |
-
cache: false
|
| 285 |
-
runSerially: true
|
| 286 |
-
|
| 287 |
-
# Selecting protein vs non-protein
|
| 288 |
-
- vars:
|
| 289 |
-
question: |
|
| 290 |
-
Color all protein atoms green and all non-protein atoms (water, ions, ligands) red.
|
| 291 |
-
Take a screenshot to validate whether the coloring has been applied.
|
| 292 |
-
Respond with <1> if protein atoms are colored green and non-protein atoms (water, ions, ligands) are colored red, or <0> if it failed. Only respond with <1> or <0>.
|
| 293 |
-
assert:
|
| 294 |
-
- type: contains-all
|
| 295 |
-
value: "<1>"
|
| 296 |
-
- type: not-contains
|
| 297 |
-
value: "<0>"
|
| 298 |
-
options:
|
| 299 |
-
cache: false
|
| 300 |
-
runSerially: true
|
| 301 |
-
|
| 302 |
-
# Changing background color
|
| 303 |
-
- vars:
|
| 304 |
-
question: |
|
| 305 |
-
Change the background color to white.
|
| 306 |
-
Take a screenshot to validate whether the background color has been changed.
|
| 307 |
-
Respond with <1> if the background of the viewport is white, or <0> if it failed. Only respond with <1> or <0>.
|
| 308 |
-
assert:
|
| 309 |
-
- type: contains-all
|
| 310 |
-
value: "<1>"
|
| 311 |
-
- type: not-contains
|
| 312 |
-
value: "<0>"
|
| 313 |
-
options:
|
| 314 |
-
cache: false
|
| 315 |
-
runSerially: true
|
| 316 |
-
|
| 317 |
-
# END OF TASK 6: 1CRN - Active Site Selection
|
| 318 |
-
# Operations: Distance-based selection (5Å around residue), distinguish protein vs non-protein components, adjust view settings (background color)
|
| 319 |
-
|
| 320 |
-
# ============================================================
|
| 321 |
-
# TASK 7: 1CRN - Spatial Queries
|
| 322 |
-
# ============================================================
|
| 323 |
-
|
| 324 |
-
# Selecting specific atom types in a range
|
| 325 |
-
- vars:
|
| 326 |
-
question: |
|
| 327 |
-
Select all oxygen atoms in residues 1 to 20 and color them red.
|
| 328 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 329 |
-
Respond with <1> if all oxygen atoms in residues 1 to 20 are colored red, or <0> if it failed. Only respond with <1> or <0>.
|
| 330 |
-
assert:
|
| 331 |
-
- type: contains-all
|
| 332 |
-
value: "<1>"
|
| 333 |
-
- type: not-contains
|
| 334 |
-
value: "<0>"
|
| 335 |
-
options:
|
| 336 |
-
cache: false
|
| 337 |
-
runSerially: true
|
| 338 |
-
|
| 339 |
-
# Selecting atoms within distance
|
| 340 |
-
- vars:
|
| 341 |
-
question: |
|
| 342 |
-
Select all atoms within 3 Angstroms of any atom in residue 15 and color them magenta.
|
| 343 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 344 |
-
Respond with <1> if all atoms within 3 Angstroms of residue 15 are colored magenta, or <0> if it failed. Only respond with <1> or <0>.
|
| 345 |
-
assert:
|
| 346 |
-
- type: contains-all
|
| 347 |
-
value: "<1>"
|
| 348 |
-
- type: not-contains
|
| 349 |
-
value: "<0>"
|
| 350 |
-
options:
|
| 351 |
-
cache: false
|
| 352 |
-
runSerially: true
|
| 353 |
-
|
| 354 |
-
# END OF TASK 7: 1CRN - Spatial Queries
|
| 355 |
-
# Operations: Select specific atom types in residue ranges, distance-based atom selection
|
| 356 |
-
|
| 357 |
-
# ============================================================
|
| 358 |
-
# TASK 8: 1CRN - Visibility Control
|
| 359 |
-
# ============================================================
|
| 360 |
-
|
| 361 |
-
# Selecting and hiding specific residues
|
| 362 |
-
- vars:
|
| 363 |
-
question: |
|
| 364 |
-
Select residues 20 to 30 and hide them (make them invisible).
|
| 365 |
-
Take a screenshot to validate whether the residues have been hidden.
|
| 366 |
-
Respond with <1> if residues 20 to 30 are not visible in the viewport while the rest of the molecule remains visible, or <0> if it failed. Only respond with <1> or <0>.
|
| 367 |
-
assert:
|
| 368 |
-
- type: contains-all
|
| 369 |
-
value: "<1>"
|
| 370 |
-
- type: not-contains
|
| 371 |
-
value: "<0>"
|
| 372 |
-
options:
|
| 373 |
-
cache: false
|
| 374 |
-
runSerially: true
|
| 375 |
-
|
| 376 |
-
# Selecting and showing only specific atoms
|
| 377 |
-
- vars:
|
| 378 |
-
question: |
|
| 379 |
-
Show only atoms with element type "N" (nitrogen) and hide all other atoms.
|
| 380 |
-
Take a screenshot to validate whether only nitrogen atoms are visible.
|
| 381 |
-
Respond with <1> if only nitrogen atoms are visible in the viewport and all other atoms are hidden, or <0> if it failed. Only respond with <1> or <0>.
|
| 382 |
-
assert:
|
| 383 |
-
- type: contains-all
|
| 384 |
-
value: "<1>"
|
| 385 |
-
- type: not-contains
|
| 386 |
-
value: "<0>"
|
| 387 |
-
options:
|
| 388 |
-
cache: false
|
| 389 |
-
runSerially: true
|
| 390 |
-
|
| 391 |
-
# Selecting and showing only backbone
|
| 392 |
-
- vars:
|
| 393 |
-
question: |
|
| 394 |
-
Show only the backbone atoms (N, CA, C, O) as Licorice representation.
|
| 395 |
-
Take a screenshot to validate whether only backbone atoms are visible.
|
| 396 |
-
Respond with <1> if only backbone atoms (N, CA, C, O) are visible in Licorice representation and side chains are hidden, or <0> if it failed. Only respond with <1> or <0>.
|
| 397 |
-
assert:
|
| 398 |
-
- type: contains-all
|
| 399 |
-
value: "<1>"
|
| 400 |
-
- type: not-contains
|
| 401 |
-
value: "<0>"
|
| 402 |
-
options:
|
| 403 |
-
cache: false
|
| 404 |
-
runSerially: true
|
| 405 |
-
|
| 406 |
-
# Selecting and showing only side chains
|
| 407 |
-
- vars:
|
| 408 |
-
question: |
|
| 409 |
-
Show only side chain atoms (excluding backbone atoms N, CA, C, O) as Van-der-Waals representation.
|
| 410 |
-
Take a screenshot to validate whether only side chain atoms are visible.
|
| 411 |
-
Respond with <1> if only side chain atoms are visible in Van-der-Waals representation and backbone atoms are hidden, or <0> if it failed. Only respond with <1> or <0>.
|
| 412 |
-
assert:
|
| 413 |
-
- type: contains-all
|
| 414 |
-
value: "<1>"
|
| 415 |
-
- type: not-contains
|
| 416 |
-
value: "<0>"
|
| 417 |
-
options:
|
| 418 |
-
cache: false
|
| 419 |
-
runSerially: true
|
| 420 |
-
|
| 421 |
-
# END OF TASK 8: 1CRN - Visibility Control
|
| 422 |
-
# Operations: Hide specific residues, show only specific element types, show only backbone, show only side chains
|
| 423 |
-
|
| 424 |
-
# ============================================================
|
| 425 |
-
# TASK 9: 1CRN - Residue Selection
|
| 426 |
-
# ============================================================
|
| 427 |
-
|
| 428 |
-
# Selecting aromatic residues
|
| 429 |
-
- vars:
|
| 430 |
-
question: |
|
| 431 |
-
Select all aromatic residues (PHE, TYR, TRP) and color them purple.
|
| 432 |
-
Take a screenshot to validate whether the aromatic residues have been selected and colored.
|
| 433 |
-
Respond with <1> if all aromatic residues (PHE, TYR, TRP) are colored purple, or <0> if it failed. Only respond with <1> or <0>.
|
| 434 |
-
assert:
|
| 435 |
-
- type: contains-all
|
| 436 |
-
value: "<1>"
|
| 437 |
-
- type: not-contains
|
| 438 |
-
value: "<0>"
|
| 439 |
-
options:
|
| 440 |
-
cache: false
|
| 441 |
-
runSerially: true
|
| 442 |
-
|
| 443 |
-
# Selecting charged residues
|
| 444 |
-
- vars:
|
| 445 |
-
question: |
|
| 446 |
-
Select all charged residues (ARG, LYS, ASP, GLU) and color them red for positive charges and blue for negative charges.
|
| 447 |
-
Take a screenshot to validate whether the charged residues have been selected and colored correctly.
|
| 448 |
-
Respond with <1> if charged residues are colored correctly (ARG/LYS red, ASP/GLU blue), or <0> if it failed. Only respond with <1> or <0>.
|
| 449 |
-
assert:
|
| 450 |
-
- type: contains-all
|
| 451 |
-
value: "<1>"
|
| 452 |
-
- type: not-contains
|
| 453 |
-
value: "<0>"
|
| 454 |
-
options:
|
| 455 |
-
cache: false
|
| 456 |
-
runSerially: true
|
| 457 |
-
|
| 458 |
-
# END OF TASK 9: 1CRN - Residue Selection
|
| 459 |
-
# Operations: Select aromatic residues, select charged residues with differential coloring
|
| 460 |
-
|
| 461 |
-
# ============================================================
|
| 462 |
-
# TASK 10: 1CRN - Combined Representations
|
| 463 |
-
# ============================================================
|
| 464 |
-
|
| 465 |
-
# Multiple selections with different representations
|
| 466 |
-
- vars:
|
| 467 |
-
question: |
|
| 468 |
-
Show the backbone as Cartoon colored by chain, and show all side chain atoms as Van-der-Waals colored by element.
|
| 469 |
-
Take a screenshot to validate whether both representations are visible with their respective colorings.
|
| 470 |
-
Respond with <1> if the backbone is shown as Cartoon colored by chain and side chain atoms are shown as Van-der-Waals colored by element, or <0> if it failed. Only respond with <1> or <0>.
|
| 471 |
-
assert:
|
| 472 |
-
- type: contains-all
|
| 473 |
-
value: "<1>"
|
| 474 |
-
- type: not-contains
|
| 475 |
-
value: "<0>"
|
| 476 |
-
options:
|
| 477 |
-
cache: false
|
| 478 |
-
runSerially: true
|
| 479 |
-
|
| 480 |
-
# Selecting and coloring by atom selection - backbone with sidechain by element
|
| 481 |
-
- vars:
|
| 482 |
-
question: |
|
| 483 |
-
Show backbone atoms (N, CA, C, O) as Licorice colored blue, and show side chain atoms as Van-der-Waals colored by element.
|
| 484 |
-
Take a screenshot to validate whether both representations are visible with their respective colorings.
|
| 485 |
-
Respond with <1> if backbone atoms are shown as Licorice colored blue and side chain atoms are shown as Van-der-Waals colored by element, or <0> if it failed. Only respond with <1> or <0>.
|
| 486 |
-
assert:
|
| 487 |
-
- type: contains-all
|
| 488 |
-
value: "<1>"
|
| 489 |
-
- type: not-contains
|
| 490 |
-
value: "<0>"
|
| 491 |
-
options:
|
| 492 |
-
cache: false
|
| 493 |
-
runSerially: true
|
| 494 |
-
|
| 495 |
-
# END OF TASK 10: 1CRN - Combined Representations
|
| 496 |
-
# Operations: Multiple representations with different color schemes (cartoon by chain + VdW by element), multiple representations with structural segmentation (backbone vs side chains)
|
| 497 |
-
|
| 498 |
-
# ============================================================
|
| 499 |
-
# TASK 11: 1CRN - Distance-based Selection
|
| 500 |
-
# ============================================================
|
| 501 |
-
|
| 502 |
-
# Selecting and coloring by distance from specific atom
|
| 503 |
-
- vars:
|
| 504 |
-
question: |
|
| 505 |
-
Select all atoms within 4 Angstroms of the CA atom of residue 10 and color them green. Color all other atoms gray.
|
| 506 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 507 |
-
Respond with <1> if all atoms within 4 Angstroms of the CA atom of residue 10 are colored green and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 508 |
-
assert:
|
| 509 |
-
- type: contains-all
|
| 510 |
-
value: "<1>"
|
| 511 |
-
- type: not-contains
|
| 512 |
-
value: "<0>"
|
| 513 |
-
options:
|
| 514 |
-
cache: false
|
| 515 |
-
runSerially: true
|
| 516 |
-
|
| 517 |
-
# Coloring by atom selection with multiple criteria
|
| 518 |
-
- vars:
|
| 519 |
-
question: |
|
| 520 |
-
Select all atoms that are either oxygen or nitrogen atoms in residues 1 to 20, and color them red. Color all other atoms gray.
|
| 521 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 522 |
-
Respond with <1> if all oxygen and nitrogen atoms in residues 1 to 20 are colored red and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 523 |
-
assert:
|
| 524 |
-
- type: contains-all
|
| 525 |
-
value: "<1>"
|
| 526 |
-
- type: not-contains
|
| 527 |
-
value: "<0>"
|
| 528 |
-
options:
|
| 529 |
-
cache: false
|
| 530 |
-
runSerially: true
|
| 531 |
-
|
| 532 |
-
# Selecting and coloring by atom property
|
| 533 |
-
- vars:
|
| 534 |
-
question: |
|
| 535 |
-
Select all atoms with element type "S" (sulfur) and color them yellow. Keep all other atoms in their default color.
|
| 536 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 537 |
-
Respond with <1> if all sulfur atoms are colored yellow while other atoms remain in their default color, or <0> if it failed. Only respond with <1> or <0>.
|
| 538 |
-
assert:
|
| 539 |
-
- type: contains-all
|
| 540 |
-
value: "<1>"
|
| 541 |
-
- type: not-contains
|
| 542 |
-
value: "<0>"
|
| 543 |
-
options:
|
| 544 |
-
cache: false
|
| 545 |
-
runSerially: true
|
| 546 |
-
|
| 547 |
-
# END OF TASK 11: 1CRN - Distance-based Selection
|
| 548 |
-
# Operations: Distance from specific atom (CA of residue), combined criteria (element type AND residue range), element-specific coloring (sulfur atoms)
|
| 549 |
-
|
| 550 |
-
# ============================================================
|
| 551 |
-
# TASK 12: 1CRN - Gradient Coloring
|
| 552 |
-
# ============================================================
|
| 553 |
-
|
| 554 |
-
# Coloring by residue number
|
| 555 |
-
- vars:
|
| 556 |
-
question: |
|
| 557 |
-
Color the molecule by residue number (gradient from N-terminus to C-terminus).
|
| 558 |
-
Take a screenshot to validate whether the coloring has been applied.
|
| 559 |
-
Respond with <1> if the molecule is colored by residue number showing a gradient from the beginning to the end of the sequence, or <0> if it failed. Only respond with <1> or <0>.
|
| 560 |
-
assert:
|
| 561 |
-
- type: contains-all
|
| 562 |
-
value: "<1>"
|
| 563 |
-
- type: not-contains
|
| 564 |
-
value: "<0>"
|
| 565 |
-
options:
|
| 566 |
-
cache: false
|
| 567 |
-
runSerially: true
|
| 568 |
-
|
| 569 |
-
# Selecting and coloring by atom type in specific region
|
| 570 |
-
- vars:
|
| 571 |
-
question: |
|
| 572 |
-
Select all nitrogen atoms in residues 5 to 15 and color them blue. Color all other atoms gray.
|
| 573 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 574 |
-
Respond with <1> if all nitrogen atoms in residues 5 to 15 are colored blue and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 575 |
-
assert:
|
| 576 |
-
- type: contains-all
|
| 577 |
-
value: "<1>"
|
| 578 |
-
- type: not-contains
|
| 579 |
-
value: "<0>"
|
| 580 |
-
options:
|
| 581 |
-
cache: false
|
| 582 |
-
runSerially: true
|
| 583 |
-
|
| 584 |
-
# Selecting and coloring by atom selection - element and residue combination
|
| 585 |
-
- vars:
|
| 586 |
-
question: |
|
| 587 |
-
Select all oxygen atoms in polar residues (SER, THR, ASN, GLN, TYR, CYS) and color them cyan. Color all other atoms gray.
|
| 588 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 589 |
-
Respond with <1> if all oxygen atoms in polar residues are colored cyan and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 590 |
-
assert:
|
| 591 |
-
- type: contains-all
|
| 592 |
-
value: "<1>"
|
| 593 |
-
- type: not-contains
|
| 594 |
-
value: "<0>"
|
| 595 |
-
options:
|
| 596 |
-
cache: false
|
| 597 |
-
runSerially: true
|
| 598 |
-
|
| 599 |
-
# Selecting and coloring by atom selection - distance-based with element filter
|
| 600 |
-
- vars:
|
| 601 |
-
question: |
|
| 602 |
-
Select all oxygen atoms within 5 Angstroms of residue 15 and color them red. Color all other atoms gray.
|
| 603 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 604 |
-
Respond with <1> if all oxygen atoms within 5 Angstroms of residue 15 are colored red and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 605 |
-
assert:
|
| 606 |
-
- type: contains-all
|
| 607 |
-
value: "<1>"
|
| 608 |
-
- type: not-contains
|
| 609 |
-
value: "<0>"
|
| 610 |
-
options:
|
| 611 |
-
cache: false
|
| 612 |
-
runSerially: true
|
| 613 |
-
|
| 614 |
-
# END OF TASK 12: 1CRN - Gradient Coloring
|
| 615 |
-
# Operations: Color by residue number (gradient), element selection in residue ranges, element + residue type combination (oxygen in polar residues), distance-based with element filter
|
| 616 |
-
|
| 617 |
-
# ============================================================
|
| 618 |
-
# TASK 13: 1CRN - Multi-Criteria Selection
|
| 619 |
-
# ============================================================
|
| 620 |
-
|
| 621 |
-
# Selecting and coloring by atom selection - backbone with sidechain by element
|
| 622 |
-
- vars:
|
| 623 |
-
question: |
|
| 624 |
-
Show the backbone as NewCartoon colored by chain. Show all side chain carbon atoms as Licorice colored gray, all side chain nitrogen atoms as Licorice colored blue, and all side chain oxygen atoms as Licorice colored red.
|
| 625 |
-
Take a screenshot to validate whether the representations and colorings have been applied.
|
| 626 |
-
Respond with <1> if the backbone is shown as NewCartoon colored by chain, side chain carbon atoms are Licorice gray, side chain nitrogen atoms are Licorice blue, and side chain oxygen atoms are Licorice red, or <0> if it failed. Only respond with <1> or <0>.
|
| 627 |
-
assert:
|
| 628 |
-
- type: contains-all
|
| 629 |
-
value: "<1>"
|
| 630 |
-
- type: not-contains
|
| 631 |
-
value: "<0>"
|
| 632 |
-
options:
|
| 633 |
-
cache: false
|
| 634 |
-
runSerially: true
|
| 635 |
-
|
| 636 |
-
# Selecting and coloring by atom selection - complex distance and element
|
| 637 |
-
- vars:
|
| 638 |
-
question: |
|
| 639 |
-
Select all carbon atoms within 4 Angstroms of any nitrogen atom in residues 1 to 15, and color them green. Color all other atoms gray.
|
| 640 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 641 |
-
Respond with <1> if all carbon atoms within 4 Angstroms of any nitrogen atom in residues 1 to 15 are colored green and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 642 |
-
assert:
|
| 643 |
-
- type: contains-all
|
| 644 |
-
value: "<1>"
|
| 645 |
-
- type: not-contains
|
| 646 |
-
value: "<0>"
|
| 647 |
-
options:
|
| 648 |
-
cache: false
|
| 649 |
-
runSerially: true
|
| 650 |
-
|
| 651 |
-
# Selecting and coloring by atom selection - multiple criteria
|
| 652 |
-
- vars:
|
| 653 |
-
question: |
|
| 654 |
-
Select all atoms that are either (carbon atoms in residues 1 to 10) or (nitrogen atoms in residues 11 to 20), and color them yellow. Color all other atoms gray.
|
| 655 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 656 |
-
Respond with <1> if all atoms matching the criteria are colored yellow and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 657 |
-
assert:
|
| 658 |
-
- type: contains-all
|
| 659 |
-
value: "<1>"
|
| 660 |
-
- type: not-contains
|
| 661 |
-
value: "<0>"
|
| 662 |
-
options:
|
| 663 |
-
cache: false
|
| 664 |
-
runSerially: true
|
| 665 |
-
|
| 666 |
-
# Selecting and coloring by atom selection - complex multi-criteria
|
| 667 |
-
- vars:
|
| 668 |
-
question: |
|
| 669 |
-
Select all atoms that are either (oxygen atoms in residues 1 to 10) or (nitrogen atoms within 3 Angstroms of residue 15), and color them magenta. Color all other atoms gray.
|
| 670 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 671 |
-
Respond with <1> if all atoms matching the complex criteria are colored magenta and all other atoms are colored gray, or <0> if it failed. Only respond with <1> or <0>.
|
| 672 |
-
assert:
|
| 673 |
-
- type: contains-all
|
| 674 |
-
value: "<1>"
|
| 675 |
-
- type: not-contains
|
| 676 |
-
value: "<0>"
|
| 677 |
-
options:
|
| 678 |
-
cache: false
|
| 679 |
-
runSerially: true
|
| 680 |
-
|
| 681 |
-
# Selecting and showing only CA atoms
|
| 682 |
-
- vars:
|
| 683 |
-
question: |
|
| 684 |
-
Show only CA (alpha carbon) atoms as Van-der-Waals spheres colored by chain.
|
| 685 |
-
Take a screenshot to validate whether only alpha carbons are visible.
|
| 686 |
-
Respond with <1> if only alpha carbon atoms are visible as spheres colored by chain, or <0> if it failed. Only respond with <1> or <0>.
|
| 687 |
-
assert:
|
| 688 |
-
- type: contains-all
|
| 689 |
-
value: "<1>"
|
| 690 |
-
- type: not-contains
|
| 691 |
-
value: "<0>"
|
| 692 |
-
options:
|
| 693 |
-
cache: false
|
| 694 |
-
runSerially: true
|
| 695 |
-
|
| 696 |
-
# Selecting and showing only heteroatoms
|
| 697 |
-
- vars:
|
| 698 |
-
question: |
|
| 699 |
-
Show only heteroatoms (non-standard atoms like water, ions, ligands) as Van-der-Waals spheres colored by element.
|
| 700 |
-
Take a screenshot to validate whether only heteroatoms are visible.
|
| 701 |
-
Respond with <1> if only heteroatoms (non-standard atoms) are visible as spheres colored by element, or <0> if it failed. Only respond with <1> or <0>.
|
| 702 |
-
assert:
|
| 703 |
-
- type: contains-all
|
| 704 |
-
value: "<1>"
|
| 705 |
-
- type: not-contains
|
| 706 |
-
value: "<0>"
|
| 707 |
-
options:
|
| 708 |
-
cache: false
|
| 709 |
-
runSerially: true
|
| 710 |
-
|
| 711 |
-
# Selecting and coloring by atom selection - multiple element types
|
| 712 |
-
- vars:
|
| 713 |
-
question: |
|
| 714 |
-
Select all carbon, nitrogen, and oxygen atoms and color them by element (carbon gray, nitrogen blue, oxygen red). Hide all other atoms.
|
| 715 |
-
Take a screenshot to validate whether the selection and coloring has been applied.
|
| 716 |
-
Respond with <1> if only carbon (gray), nitrogen (blue), and oxygen (red) atoms are visible and all other atoms are hidden, or <0> if it failed. Only respond with <1> or <0>.
|
| 717 |
-
assert:
|
| 718 |
-
- type: contains-all
|
| 719 |
-
value: "<1>"
|
| 720 |
-
- type: not-contains
|
| 721 |
-
value: "<0>"
|
| 722 |
-
options:
|
| 723 |
-
cache: false
|
| 724 |
-
runSerially: true
|
| 725 |
-
|
| 726 |
-
# END OF TASK 13: 1CRN - Multi-Criteria Selection
|
| 727 |
-
# Operations: Multi-representation with element-specific coloring (backbone cartoon + side chain licorice by element), complex distance and element queries (carbon near nitrogen atoms), Boolean logic selection (OR criteria), complex multi-criteria with distance, CA-only visualization, heteroatom isolation, multiple element type filtering
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval_cases/molecular_vis/{workflows/eval_analysis_workflows.yaml → eval_analysis_workflows.yaml}
RENAMED
|
@@ -2,6 +2,161 @@
|
|
| 2 |
# This test evaluates the ability to complete molecular visualization tasks
|
| 3 |
# with detailed requirements and evaluation criteria
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
# 1. Curved membrane simulation
|
| 6 |
# As part of a protocol paper for building membrane using the coarse-grained Martini 3 force field, https://doi.org/10.1016/bs.mie.2024.03.010, a tutorial was developed: https://bbs.llnl.gov/data/building-membranes-data
|
| 7 |
# Tutorial 4 is on curved membranes which is used here as an example of bilayer visualization.
|
|
@@ -74,4 +229,4 @@
|
|
| 74 |
# Q1 reason: quite some gray dots from cholesterol ROH headgroup bead can be seen in the center of the bilayer, so the answer is YES.
|
| 75 |
# Q2 reason: if you run the flowing VMD selection command (name PO4 ROH) and within 15 of (index 3457 to 35009 and resid 188 to 329)
|
| 76 |
# You will find 4 lipids head group beads, so the answer is C. 3-5
|
| 77 |
-
# Note here it’s important to only count each lipid once, e.g. either use a single reference bead per lipid or center of mass, also selecting the protein can be tricky as the lipids and water also if resid’s in the 188 to 329 range so either exclude other molecule or sub select only the protein residues
|
|
|
|
| 2 |
# This test evaluates the ability to complete molecular visualization tasks
|
| 3 |
# with detailed requirements and evaluation criteria
|
| 4 |
|
| 5 |
+
#simple licorice visualization of a protein
|
| 6 |
+
- vars:
|
| 7 |
+
question: |
|
| 8 |
+
1. I want you to visualize a molecular structure from a CIF file.
|
| 9 |
+
2. Load the data/1CRN.cif.
|
| 10 |
+
3. Visualize the molecular using a licorice representation.
|
| 11 |
+
4. Take a screenshot of the visualization.
|
| 12 |
+
Q1. Does it show a licorice representation of the protein? (yes/no)
|
| 13 |
+
5. Answer Q1 in a plain text file "md_analysis/results/answers_basic_vis.txt".
|
| 14 |
+
assert:
|
| 15 |
+
- type: llm-rubric
|
| 16 |
+
subtype: text
|
| 17 |
+
value: |
|
| 18 |
+
1. Q1 correct answer: Yes
|
| 19 |
+
rs-file: "md_analysis/results/answers_basic_vis.txt"
|
| 20 |
+
|
| 21 |
+
#simple coloring by element of a protein
|
| 22 |
+
- vars:
|
| 23 |
+
question: |
|
| 24 |
+
1. I want you to visualize a molecular structure from a CIF file.
|
| 25 |
+
2. Load the data/1CRN.cif.
|
| 26 |
+
3. Visualize the molecular using a CPK or similar representation where atoms are colored by their chemical element.
|
| 27 |
+
4. Take a screenshot of the visualization.
|
| 28 |
+
Q1. Is the molecule colored according to the chemical element of its atoms (e.g., CPK coloring)? (yes/no)
|
| 29 |
+
5. Answer Q1 in a plain text file "md_analysis/results/answers_element_coloring.txt".
|
| 30 |
+
assert:
|
| 31 |
+
- type: llm-rubric
|
| 32 |
+
subtype: text
|
| 33 |
+
value: |
|
| 34 |
+
1. Q1 correct answer: Yes
|
| 35 |
+
rs-file: "md_analysis/results/answers_element_coloring.txt"
|
| 36 |
+
|
| 37 |
+
#simple selection and coloring of a protein
|
| 38 |
+
- vars:
|
| 39 |
+
question: |
|
| 40 |
+
1. I want you to visualize a molecular structure from a CIF file.
|
| 41 |
+
2. Load the data/1CRN.cif.
|
| 42 |
+
3. Select all carbon atoms and color them cyan.
|
| 43 |
+
4. Take a screenshot of the visualization.
|
| 44 |
+
Q1. Are all carbon atoms colored cyan? (yes/no)
|
| 45 |
+
5. Answer Q1 in a plain text file "md_analysis/results/answers_selection_coloring.txt".
|
| 46 |
+
assert:
|
| 47 |
+
- type: llm-rubric
|
| 48 |
+
subtype: text
|
| 49 |
+
value: |
|
| 50 |
+
1. Q1 correct answer: Yes
|
| 51 |
+
rs-file: "md_analysis/results/answers_selection_coloring.txt"
|
| 52 |
+
|
| 53 |
+
#simple coloring by charge of a protein
|
| 54 |
+
- vars:
|
| 55 |
+
question: |
|
| 56 |
+
1. I want you to visualize a molecular structure from a CIF file.
|
| 57 |
+
2. Load the data/1CRN.cif.
|
| 58 |
+
3. Color the molecule according to atomic charge: use one color for positive charges, another for negative charges, and a third for neutral atoms.
|
| 59 |
+
4. Take a screenshot of the visualization.
|
| 60 |
+
Q1. Is the molecule colored by atomic charge (differentiating positive, negative, and neutral)? (yes/no)
|
| 61 |
+
5. Answer Q1 in a plain text file "md_analysis/results/answers_charge_coloring.txt".
|
| 62 |
+
assert:
|
| 63 |
+
- type: llm-rubric
|
| 64 |
+
subtype: text
|
| 65 |
+
value: |
|
| 66 |
+
1. Q1 correct answer: Yes
|
| 67 |
+
rs-file: "md_analysis/results/answers_charge_coloring.txt"
|
| 68 |
+
|
| 69 |
+
#simple selection and coloring of specific atoms
|
| 70 |
+
- vars:
|
| 71 |
+
question: |
|
| 72 |
+
1. I want you to visualize a molecular structure from a CIF file.
|
| 73 |
+
2. Load the data/1CRN.cif.
|
| 74 |
+
3. Select all oxygen atoms in residues 1 to 20 and color them red.
|
| 75 |
+
4. Take a screenshot of the visualization.
|
| 76 |
+
Q1. Are all oxygen atoms in residues 1 to 20 colored red? (yes/no)
|
| 77 |
+
5. Answer Q1 in a plain text file "md_analysis/results/answers_complex_selection.txt".
|
| 78 |
+
assert:
|
| 79 |
+
- type: llm-rubric
|
| 80 |
+
subtype: text
|
| 81 |
+
value: |
|
| 82 |
+
1. Q1 correct answer: Yes
|
| 83 |
+
rs-file: "md_analysis/results/answers_complex_selection.txt"
|
| 84 |
+
|
| 85 |
+
#simple selection and coloring of aromatic residues
|
| 86 |
+
- vars:
|
| 87 |
+
question: |
|
| 88 |
+
1. I want you to visualize a molecular structure from a CIF file.
|
| 89 |
+
2. Load the data/1CRN.cif.
|
| 90 |
+
3. Select all aromatic residues (PHE, TYR, TRP) and color them purple.
|
| 91 |
+
4. Take a screenshot of the visualization.
|
| 92 |
+
Q1. Are all aromatic residues (PHE, TYR, TRP) colored purple? (yes/no)
|
| 93 |
+
5. Answer Q1 in a plain text file "md_analysis/results/answers_aromatic_selection.txt".
|
| 94 |
+
assert:
|
| 95 |
+
- type: llm-rubric
|
| 96 |
+
subtype: text
|
| 97 |
+
value: |
|
| 98 |
+
1. Q1 correct answer: Yes
|
| 99 |
+
rs-file: "md_analysis/results/answers_aromatic_selection.txt"
|
| 100 |
+
|
| 101 |
+
#simple RMSD and RMSF calculation of a protein
|
| 102 |
+
- vars:
|
| 103 |
+
question: |
|
| 104 |
+
1. I want you to perform a structural analysis on a molecular structure from a CIF file.
|
| 105 |
+
2. Load the data/1CRN.cif.
|
| 106 |
+
3. Calculate the Root Mean Square Deviation (RMSD) of the structure against itself.
|
| 107 |
+
4. Calculate the Root Mean Square Fluctuation (RMSF) for the structure.
|
| 108 |
+
5. Save the computed RMSD and RMSF values as plain text to "md_analysis/results/answers_rmsd_rmsf.txt".
|
| 109 |
+
assert:
|
| 110 |
+
- type: llm-rubric
|
| 111 |
+
subtype: text
|
| 112 |
+
value: |
|
| 113 |
+
1. Does the output report the calculated RMSD?
|
| 114 |
+
2. Does the output report the calculated RMSF values or state that it requires a trajectory?
|
| 115 |
+
rs-file: "md_analysis/results/answers_rmsd_rmsf.txt"
|
| 116 |
+
|
| 117 |
+
#simple radius of gyration calculation of a protein
|
| 118 |
+
- vars:
|
| 119 |
+
question: |
|
| 120 |
+
1. I want you to calculate the compactness of a protein from a CIF file.
|
| 121 |
+
2. Load the data/1CRN.cif.
|
| 122 |
+
3. Calculate the Radius of Gyration (Rg) of the protein structure.
|
| 123 |
+
4. Save the calculated Radius of Gyration as plain text to "md_analysis/results/answers_rg.txt".
|
| 124 |
+
assert:
|
| 125 |
+
- type: llm-rubric
|
| 126 |
+
subtype: text
|
| 127 |
+
value: |
|
| 128 |
+
1. Does the output report a numeric value for the calculated Radius of Gyration?
|
| 129 |
+
rs-file: "md_analysis/results/answers_rg.txt"
|
| 130 |
+
|
| 131 |
+
- vars:
|
| 132 |
+
question: |
|
| 133 |
+
1. I want you to calculate specific geometric properties of a molecular structure from a CIF file.
|
| 134 |
+
2. Load the data/1CRN.cif.
|
| 135 |
+
3. Calculate the distance between the alpha carbons of residue 1 and residue 10.
|
| 136 |
+
4. Calculate the backbone dihedral angles (phi and psi) for residue 5.
|
| 137 |
+
5. Save the computed distance and angles as plain text to "md_analysis/results/answers_distances_angles.txt".
|
| 138 |
+
assert:
|
| 139 |
+
- type: llm-rubric
|
| 140 |
+
subtype: text
|
| 141 |
+
value: |
|
| 142 |
+
1. Does the output report the calculated distance between the alpha carbons of residue 1 and 10?
|
| 143 |
+
2. Does the output report the calculated phi and psi dihedral angles for residue 5?
|
| 144 |
+
rs-file: "md_analysis/results/answers_distances_angles.txt"
|
| 145 |
+
|
| 146 |
+
#simple contact calculation of a protein
|
| 147 |
+
- vars:
|
| 148 |
+
question: |
|
| 149 |
+
1. I want you to calculate the number of contacts in a folded protein from a CIF file.
|
| 150 |
+
2. Load the data/1CRN.cif.
|
| 151 |
+
3. Calculate the number of contacts within an 8 Angstrom cutoff.
|
| 152 |
+
4. Save the total count of contacts as plain text to "md_analysis/results/answers_native_contacts.txt".
|
| 153 |
+
assert:
|
| 154 |
+
- type: llm-rubric
|
| 155 |
+
subtype: text
|
| 156 |
+
value: |
|
| 157 |
+
1. Does the output report a numeric count of contacts?
|
| 158 |
+
rs-file: "md_analysis/results/answers_native_contacts.txt"
|
| 159 |
+
|
| 160 |
# 1. Curved membrane simulation
|
| 161 |
# As part of a protocol paper for building membrane using the coarse-grained Martini 3 force field, https://doi.org/10.1016/bs.mie.2024.03.010, a tutorial was developed: https://bbs.llnl.gov/data/building-membranes-data
|
| 162 |
# Tutorial 4 is on curved membranes which is used here as an example of bilayer visualization.
|
|
|
|
| 229 |
# Q1 reason: quite some gray dots from cholesterol ROH headgroup bead can be seen in the center of the bilayer, so the answer is YES.
|
| 230 |
# Q2 reason: if you run the flowing VMD selection command (name PO4 ROH) and within 15 of (index 3457 to 35009 and resid 188 to 329)
|
| 231 |
# You will find 4 lipids head group beads, so the answer is C. 3-5
|
| 232 |
+
# Note here it’s important to only count each lipid once, e.g. either use a single reference bead per lipid or center of mass, also selecting the protein can be tricky as the lipids and water also if resid’s in the 188 to 329 range so either exclude other molecule or sub select only the protein residues
|
eval_cases/napari/0_actions/eval_basic_napari_functions.yaml
DELETED
|
@@ -1,566 +0,0 @@
|
|
| 1 |
-
# Basic Napari Function Tests - Action Level
|
| 2 |
-
# These tests evaluate individual server functions with simple, single-function calls
|
| 3 |
-
# Each test focuses on testing one specific function with appropriate parameters
|
| 4 |
-
# We suggest using https://www.ebi.ac.uk/bioimage-archive/galleries/S-BIAD7.html IM1 as dataset_001
|
| 5 |
-
# We suggest using https://uk1s3.embassy.ebi.ac.uk/bia-integrator-data/pages/S-BIAD573.html IM1 as dataset_002
|
| 6 |
-
#
|
| 7 |
-
# Taxonomy Level: Task (small-scale visualization task involving a few operations)
|
| 8 |
-
# Each task is marked with a comment indicating the end of the task and the task name
|
| 9 |
-
|
| 10 |
-
# ============================================================
|
| 11 |
-
# TASK 1: Napari - Load & Layer Management
|
| 12 |
-
# ============================================================
|
| 13 |
-
|
| 14 |
-
# Test: open_file - Load a multi-dimensional image file (T, Z, Y, X, C)
|
| 15 |
-
- vars:
|
| 16 |
-
question: |
|
| 17 |
-
Load the file "data/dataset_001/dataset_001.tiff" into the viewer.
|
| 18 |
-
Respond with <1> if the file was successfully loaded, or <0> if it failed. Only respond with <1> or <0>.
|
| 19 |
-
assert:
|
| 20 |
-
- type: contains-all
|
| 21 |
-
value: "<1>"
|
| 22 |
-
- type: not-contains
|
| 23 |
-
value: "<0>"
|
| 24 |
-
options:
|
| 25 |
-
cache: false
|
| 26 |
-
runSerially: true
|
| 27 |
-
|
| 28 |
-
# Test: delete layers - Delete all loaded layers from the viewer
|
| 29 |
-
- vars:
|
| 30 |
-
question: |
|
| 31 |
-
Delete the all currently loaded layers.
|
| 32 |
-
Respond with <1> if all layers were successfully deleted, or <0> if the operation failed. Only respond with <1> or <0>.
|
| 33 |
-
assert:
|
| 34 |
-
- type: contains-all
|
| 35 |
-
value: "<1>"
|
| 36 |
-
- type: not-contains
|
| 37 |
-
value: "<0>"
|
| 38 |
-
options:
|
| 39 |
-
cache: false
|
| 40 |
-
runSerially: true
|
| 41 |
-
|
| 42 |
-
# Test: open_file - Load a single image file
|
| 43 |
-
- vars:
|
| 44 |
-
question: |
|
| 45 |
-
Load the file "data/dataset_002/dataset_002.tif" into the viewer.
|
| 46 |
-
Respond with <1> if the file was successfully loaded, or <0> if it failed. Only respond with <1> or <0>.
|
| 47 |
-
assert:
|
| 48 |
-
- type: contains-all
|
| 49 |
-
value: "<1>"
|
| 50 |
-
- type: not-contains
|
| 51 |
-
value: "<0>"
|
| 52 |
-
options:
|
| 53 |
-
cache: false
|
| 54 |
-
runSerially: true
|
| 55 |
-
|
| 56 |
-
# Test: list_layers - Get information about loaded layers
|
| 57 |
-
- vars:
|
| 58 |
-
question: |
|
| 59 |
-
Retrieve information about all currently loaded layers in the viewer.
|
| 60 |
-
Respond with <1> if you successfully retrieved layer information, or <0> if it failed. Only respond with <1> or <0>.
|
| 61 |
-
assert:
|
| 62 |
-
- type: contains-all
|
| 63 |
-
value: "<1>"
|
| 64 |
-
- type: not-contains
|
| 65 |
-
value: "<0>"
|
| 66 |
-
options:
|
| 67 |
-
cache: false
|
| 68 |
-
runSerially: true
|
| 69 |
-
|
| 70 |
-
# END OF TASK 1: Napari - Load & Layer Management
|
| 71 |
-
# Operations: Load multi-dimensional file, delete layers, load single image file, retrieve layer information
|
| 72 |
-
|
| 73 |
-
# ============================================================
|
| 74 |
-
# TASK 2: Napari - 3D/4D Navigation
|
| 75 |
-
# ============================================================
|
| 76 |
-
|
| 77 |
-
# Test: Z-stack Navigation - Scroll through different depths
|
| 78 |
-
- vars:
|
| 79 |
-
question: |
|
| 80 |
-
Navigate through the z-stack of the loaded image. Use set_z_slice to jump to at least z-slice 0 to examine structures at different depths.
|
| 81 |
-
Take a screenshot at each z-slice to verify navigation.
|
| 82 |
-
Respond with <1> if you successfully navigated through different z-slices and could see structural changes, or <0> if it failed. Only respond with <1> or <0>.
|
| 83 |
-
assert:
|
| 84 |
-
- type: contains-all
|
| 85 |
-
value: "<1>"
|
| 86 |
-
- type: not-contains
|
| 87 |
-
value: "<0>"
|
| 88 |
-
options:
|
| 89 |
-
cache: false
|
| 90 |
-
runSerially: true
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
# Test: Time Series Navigation - Navigate through time points
|
| 94 |
-
- vars:
|
| 95 |
-
question: |
|
| 96 |
-
If the data has time dimensions, use set_timestep to navigate through different time points.
|
| 97 |
-
Take screenshots at different time points to show temporal changes.
|
| 98 |
-
If no time dimension exists, simulate time navigation by adjusting the current view and taking multiple screenshots.
|
| 99 |
-
Respond with <1> if you successfully navigated through time points or simulated time navigation, or <0> if it failed. Only respond with <1> or <0>.
|
| 100 |
-
assert:
|
| 101 |
-
- type: contains-all
|
| 102 |
-
value: "<1>"
|
| 103 |
-
- type: not-contains
|
| 104 |
-
value: "<0>"
|
| 105 |
-
options:
|
| 106 |
-
cache: false
|
| 107 |
-
runSerially: true
|
| 108 |
-
|
| 109 |
-
# END OF TASK 2: Napari - 3D/4D Navigation
|
| 110 |
-
# Operations: Z-stack navigation, time series navigation
|
| 111 |
-
|
| 112 |
-
# ============================================================
|
| 113 |
-
# TASK 3: Napari - Color & Opacity
|
| 114 |
-
# ============================================================
|
| 115 |
-
|
| 116 |
-
# Test: set_colormap - Change layer colormap
|
| 117 |
-
- vars:
|
| 118 |
-
question: |
|
| 119 |
-
Change the colormap of the active image layer (dataset_002_ch1) to 'viridis'.
|
| 120 |
-
Respond with <1> if the colormap was successfully changed, or <0> if it failed. Only respond with <1> or <0>.
|
| 121 |
-
assert:
|
| 122 |
-
- type: contains-all
|
| 123 |
-
value: "<1>"
|
| 124 |
-
- type: not-contains
|
| 125 |
-
value: "<0>"
|
| 126 |
-
options:
|
| 127 |
-
cache: false
|
| 128 |
-
runSerially: true
|
| 129 |
-
|
| 130 |
-
# Test: set_opacity - Adjust layer transparency
|
| 131 |
-
- vars:
|
| 132 |
-
question: |
|
| 133 |
-
Set the opacity of the active layer (dataset_002_ch1) to 0.5 (50% transparent).
|
| 134 |
-
Respond with <1> if the opacity was successfully changed, or <0> if it failed. Only respond with <1> or <0>.
|
| 135 |
-
assert:
|
| 136 |
-
- type: contains-all
|
| 137 |
-
value: "<1>"
|
| 138 |
-
- type: not-contains
|
| 139 |
-
value: "<0>"
|
| 140 |
-
options:
|
| 141 |
-
cache: false
|
| 142 |
-
runSerially: true
|
| 143 |
-
|
| 144 |
-
# Test: set_blending - Change layer blending mode
|
| 145 |
-
- vars:
|
| 146 |
-
question: |
|
| 147 |
-
Change the blending mode of the active layer to 'additive'.
|
| 148 |
-
Respond with <1> if the blending mode was successfully changed, or <0> if it failed. Only respond with <1> or <0>.
|
| 149 |
-
assert:
|
| 150 |
-
- type: contains-all
|
| 151 |
-
value: "<1>"
|
| 152 |
-
- type: not-contains
|
| 153 |
-
value: "<0>"
|
| 154 |
-
options:
|
| 155 |
-
cache: false
|
| 156 |
-
runSerially: true
|
| 157 |
-
|
| 158 |
-
# END OF TASK 3: Napari - Color & Opacity
|
| 159 |
-
# Operations: Set colormap, adjust opacity, change blending mode
|
| 160 |
-
|
| 161 |
-
# ============================================================
|
| 162 |
-
# TASK 4: Napari - Contrast Adjustment
|
| 163 |
-
# ============================================================
|
| 164 |
-
|
| 165 |
-
# Test: auto_contrast - Auto-adjust contrast
|
| 166 |
-
- vars:
|
| 167 |
-
question: |
|
| 168 |
-
Automatically adjust the contrast of the active image layer.
|
| 169 |
-
Respond with <1> if the contrast was successfully auto-adjusted, or <0> if it failed. Only respond with <1> or <0>.
|
| 170 |
-
assert:
|
| 171 |
-
- type: contains-all
|
| 172 |
-
value: "<1>"
|
| 173 |
-
- type: not-contains
|
| 174 |
-
value: "<0>"
|
| 175 |
-
options:
|
| 176 |
-
cache: false
|
| 177 |
-
runSerially: true
|
| 178 |
-
|
| 179 |
-
# Test: set_contrast_limits - Set specific contrast limits
|
| 180 |
-
- vars:
|
| 181 |
-
question: |
|
| 182 |
-
Set the contrast limits of the active layer to min=0.1 and max=0.9.
|
| 183 |
-
Respond with <1> if the contrast limits were successfully set, or <0> if it failed. Only respond with <1> or <0>.
|
| 184 |
-
assert:
|
| 185 |
-
- type: contains-all
|
| 186 |
-
value: "<1>"
|
| 187 |
-
- type: not-contains
|
| 188 |
-
value: "<0>"
|
| 189 |
-
options:
|
| 190 |
-
cache: false
|
| 191 |
-
runSerially: true
|
| 192 |
-
|
| 193 |
-
# Test: set_gamma - Adjust gamma correction
|
| 194 |
-
- vars:
|
| 195 |
-
question: |
|
| 196 |
-
Set the gamma correction of the active layer to 1.5.
|
| 197 |
-
Respond with <1> if the gamma was successfully adjusted, or <0> if it failed. Only respond with <1> or <0>.
|
| 198 |
-
assert:
|
| 199 |
-
- type: contains-all
|
| 200 |
-
value: "<1>"
|
| 201 |
-
- type: not-contains
|
| 202 |
-
value: "<0>"
|
| 203 |
-
options:
|
| 204 |
-
cache: false
|
| 205 |
-
runSerially: true
|
| 206 |
-
|
| 207 |
-
# Test: set_interpolation - Change interpolation mode - doesn't work
|
| 208 |
-
- vars:
|
| 209 |
-
question: |
|
| 210 |
-
Change the interpolation mode of the active layer to 'linear'.
|
| 211 |
-
Respond with <1> if the interpolation mode was successfully changed, or <0> if it failed. Only respond with <1> or <0>.
|
| 212 |
-
assert:
|
| 213 |
-
- type: contains-all
|
| 214 |
-
value: "<1>"
|
| 215 |
-
- type: not-contains
|
| 216 |
-
value: "<0>"
|
| 217 |
-
options:
|
| 218 |
-
cache: false
|
| 219 |
-
runSerially: true
|
| 220 |
-
|
| 221 |
-
# END OF TASK 4: Napari - Contrast Adjustment
|
| 222 |
-
# Operations: Auto-adjust contrast, set specific contrast limits, adjust gamma correction, change interpolation mode
|
| 223 |
-
|
| 224 |
-
# ============================================================
|
| 225 |
-
# TASK 5: Napari - Camera Control
|
| 226 |
-
# ============================================================
|
| 227 |
-
|
| 228 |
-
# Test: toggle_view - Switch between 2D and 3D view
|
| 229 |
-
- vars:
|
| 230 |
-
question: |
|
| 231 |
-
Switch the viewer to 3D mode.
|
| 232 |
-
Respond with <1> if the view was successfully switched to 3D, or <0> if it failed. Only respond with <1> or <0>.
|
| 233 |
-
assert:
|
| 234 |
-
- type: contains-all
|
| 235 |
-
value: "<1>"
|
| 236 |
-
- type: not-contains
|
| 237 |
-
value: "<0>"
|
| 238 |
-
options:
|
| 239 |
-
cache: false
|
| 240 |
-
runSerially: true
|
| 241 |
-
|
| 242 |
-
# Test: get_dims_info - Get dimension information
|
| 243 |
-
- vars:
|
| 244 |
-
question: |
|
| 245 |
-
Get information about the viewer's current dimension settings.
|
| 246 |
-
Respond with <1> if you successfully retrieved dimension information, or <0> if it failed. Only respond with <1> or <0>.
|
| 247 |
-
assert:
|
| 248 |
-
- type: contains-all
|
| 249 |
-
value: "<1>"
|
| 250 |
-
- type: not-contains
|
| 251 |
-
value: "<0>"
|
| 252 |
-
options:
|
| 253 |
-
cache: false
|
| 254 |
-
runSerially: true
|
| 255 |
-
|
| 256 |
-
# Test: get_camera - Get current camera settings
|
| 257 |
-
- vars:
|
| 258 |
-
question: |
|
| 259 |
-
Retrieve the current camera settings of the viewer.
|
| 260 |
-
Respond with <1> if you successfully retrieved camera settings, or <0> if it failed. Only respond with <1> or <0>.
|
| 261 |
-
assert:
|
| 262 |
-
- type: contains-all
|
| 263 |
-
value: "<1>"
|
| 264 |
-
- type: not-contains
|
| 265 |
-
value: "<0>"
|
| 266 |
-
options:
|
| 267 |
-
cache: false
|
| 268 |
-
runSerially: true
|
| 269 |
-
|
| 270 |
-
# Test: reset_camera - Reset camera to default view
|
| 271 |
-
- vars:
|
| 272 |
-
question: |
|
| 273 |
-
Reset the camera to the default view.
|
| 274 |
-
Respond with <1> if the camera was successfully reset, or <0> if it failed. Only respond with <1> or <0>.
|
| 275 |
-
assert:
|
| 276 |
-
- type: contains-all
|
| 277 |
-
value: "<1>"
|
| 278 |
-
- type: not-contains
|
| 279 |
-
value: "<0>"
|
| 280 |
-
options:
|
| 281 |
-
cache: false
|
| 282 |
-
runSerially: true
|
| 283 |
-
|
| 284 |
-
# Test: set_camera - Adjust camera settings
|
| 285 |
-
- vars:
|
| 286 |
-
question: |
|
| 287 |
-
Set the camera zoom to 2.0.
|
| 288 |
-
Respond with <1> if the camera zoom was successfully set, or <0> if it failed. Only respond with <1> or <0>.
|
| 289 |
-
assert:
|
| 290 |
-
- type: contains-all
|
| 291 |
-
value: "<1>"
|
| 292 |
-
- type: not-contains
|
| 293 |
-
value: "<0>"
|
| 294 |
-
options:
|
| 295 |
-
cache: false
|
| 296 |
-
runSerially: true
|
| 297 |
-
|
| 298 |
-
# END OF TASK 5: Napari - Camera Control
|
| 299 |
-
# Operations: Switch 2D/3D view, get dimension info, get camera settings, reset camera, adjust camera zoom
|
| 300 |
-
|
| 301 |
-
# ============================================================
|
| 302 |
-
# TASK 6: Napari - Visibility & Screenshot
|
| 303 |
-
# ============================================================
|
| 304 |
-
|
| 305 |
-
# Test: set_layer_visibility - Toggle layer visibility
|
| 306 |
-
- vars:
|
| 307 |
-
question: |
|
| 308 |
-
Hide the active layer (set visible to false).
|
| 309 |
-
Respond with <1> if the layer visibility was successfully changed, or <0> if it failed. Only respond with <1> or <0>.
|
| 310 |
-
assert:
|
| 311 |
-
- type: contains-all
|
| 312 |
-
value: "<1>"
|
| 313 |
-
- type: not-contains
|
| 314 |
-
value: "<0>"
|
| 315 |
-
options:
|
| 316 |
-
cache: false
|
| 317 |
-
runSerially: true
|
| 318 |
-
|
| 319 |
-
# Test: set_layer_visibility - Show layer again
|
| 320 |
-
- vars:
|
| 321 |
-
question: |
|
| 322 |
-
Show the active layer again (set visible to true).
|
| 323 |
-
Respond with <1> if the layer visibility was successfully changed, or <0> if it failed. Only respond with <1> or <0>.
|
| 324 |
-
assert:
|
| 325 |
-
- type: contains-all
|
| 326 |
-
value: "<1>"
|
| 327 |
-
- type: not-contains
|
| 328 |
-
value: "<0>"
|
| 329 |
-
options:
|
| 330 |
-
cache: false
|
| 331 |
-
runSerially: true
|
| 332 |
-
|
| 333 |
-
# Test: screenshot - Take a screenshot
|
| 334 |
-
- vars:
|
| 335 |
-
question: |
|
| 336 |
-
Take a screenshot of the current view.
|
| 337 |
-
Respond with <1> if the screenshot was successfully taken, or <0> if it failed. Only respond with <1> or <0>.
|
| 338 |
-
assert:
|
| 339 |
-
- type: contains-all
|
| 340 |
-
value: "<1>"
|
| 341 |
-
- type: not-contains
|
| 342 |
-
value: "<0>"
|
| 343 |
-
options:
|
| 344 |
-
cache: false
|
| 345 |
-
runSerially: true
|
| 346 |
-
|
| 347 |
-
# END OF TASK 6: Napari - Visibility & Screenshot
|
| 348 |
-
# Operations: Hide layer, show layer, take screenshot
|
| 349 |
-
|
| 350 |
-
# ============================================================
|
| 351 |
-
# TASK 7: Napari - Annotations
|
| 352 |
-
# ============================================================
|
| 353 |
-
|
| 354 |
-
# # Test: get_layer_statistics - Get layer statistics
|
| 355 |
-
# - vars:
|
| 356 |
-
# question: |
|
| 357 |
-
# Retrieve basic statistics (min, max, mean, std) for the active layer.
|
| 358 |
-
# Respond with <1> if you successfully retrieved layer statistics, or <0> if it failed. Only respond with <1> or <0>.
|
| 359 |
-
# assert:
|
| 360 |
-
# - type: contains-all
|
| 361 |
-
# value: "<1>"
|
| 362 |
-
# - type: not-contains
|
| 363 |
-
# value: "<0>"
|
| 364 |
-
# options:
|
| 365 |
-
# cache: false
|
| 366 |
-
# runSerially: true
|
| 367 |
-
|
| 368 |
-
# # Test: add_points - Add point annotations - doesn't work
|
| 369 |
-
# - vars:
|
| 370 |
-
# question: |
|
| 371 |
-
# Add two point markers at coordinates [[100, 100], [200, 200]] with the name "test_points".
|
| 372 |
-
# Respond with <1> if the points were successfully added, or <0> if it failed. Only respond with <1> or <0>.
|
| 373 |
-
# assert:
|
| 374 |
-
# - type: contains-all
|
| 375 |
-
# value: "<1>"
|
| 376 |
-
# - type: not-contains
|
| 377 |
-
# value: "<0>"
|
| 378 |
-
# options:
|
| 379 |
-
# cache: false
|
| 380 |
-
# runSerially: true
|
| 381 |
-
|
| 382 |
-
# Test: add_shapes - Add shape annotations
|
| 383 |
-
- vars:
|
| 384 |
-
question: |
|
| 385 |
-
Add a rectangle shape with coordinates [[[50, 50], [150, 50], [150, 150], [50, 150]]] and name "test_rectangle".
|
| 386 |
-
Respond with <1> if the shape was successfully added, or <0> if it failed. Only respond with <1> or <0>.
|
| 387 |
-
assert:
|
| 388 |
-
- type: contains-all
|
| 389 |
-
value: "<1>"
|
| 390 |
-
- type: not-contains
|
| 391 |
-
value: "<0>"
|
| 392 |
-
options:
|
| 393 |
-
cache: false
|
| 394 |
-
runSerially: true
|
| 395 |
-
|
| 396 |
-
# END OF TASK 7: Napari - Annotations
|
| 397 |
-
# Operations: Add shape annotations
|
| 398 |
-
|
| 399 |
-
# ============================================================
|
| 400 |
-
# TASK 8: Napari - Scale Bar & Export
|
| 401 |
-
# ============================================================
|
| 402 |
-
|
| 403 |
-
# # Test: measure_distance - Measure distance between points - doesn't work
|
| 404 |
-
# - vars:
|
| 405 |
-
# question: |
|
| 406 |
-
# Measure the distance between point [100, 100] and point [200, 200].
|
| 407 |
-
# Respond with <1> if the distance was successfully measured, or <0> if it failed. Only respond with <1> or <0>.
|
| 408 |
-
# assert:
|
| 409 |
-
# - type: contains-all
|
| 410 |
-
# value: "<1>"
|
| 411 |
-
# - type: not-contains
|
| 412 |
-
# value: "<0>"
|
| 413 |
-
# options:
|
| 414 |
-
# cache: false
|
| 415 |
-
# runSerially: true
|
| 416 |
-
|
| 417 |
-
# Test: set_scale_bar - Show scale bar
|
| 418 |
-
- vars:
|
| 419 |
-
question: |
|
| 420 |
-
Show the scale bar with unit 'um'.
|
| 421 |
-
Respond with <1> if the scale bar was successfully shown, or <0> if it failed. Only respond with <1> or <0>.
|
| 422 |
-
assert:
|
| 423 |
-
- type: contains-all
|
| 424 |
-
value: "<1>"
|
| 425 |
-
- type: not-contains
|
| 426 |
-
value: "<0>"
|
| 427 |
-
options:
|
| 428 |
-
cache: false
|
| 429 |
-
runSerially: true
|
| 430 |
-
|
| 431 |
-
# # Test: set_axis_labels - Set axis labels - doesn't work
|
| 432 |
-
# - vars:
|
| 433 |
-
# question: |
|
| 434 |
-
# Set axis labels to ['y', 'x'] for the 2D data.
|
| 435 |
-
# Respond with <1> if the axis labels were successfully set, or <0> if it failed. Only respond with <1> or <0>.
|
| 436 |
-
# assert:
|
| 437 |
-
# - type: contains-all
|
| 438 |
-
# value: "<1>"
|
| 439 |
-
# - type: not-contains
|
| 440 |
-
# value: "<0>"
|
| 441 |
-
# options:
|
| 442 |
-
# cache: false
|
| 443 |
-
# runSerially: true
|
| 444 |
-
|
| 445 |
-
# Test: screenshot - Save screenshot to file
|
| 446 |
-
- vars:
|
| 447 |
-
question: |
|
| 448 |
-
Save a screenshot.
|
| 449 |
-
Respond with <1> if the screenshot was successfully exported, or <0> if it failed. Only respond with <1> or <0>.
|
| 450 |
-
assert:
|
| 451 |
-
- type: contains-all
|
| 452 |
-
value: "<1>"
|
| 453 |
-
- type: not-contains
|
| 454 |
-
value: "<0>"
|
| 455 |
-
options:
|
| 456 |
-
cache: false
|
| 457 |
-
runSerially: true
|
| 458 |
-
|
| 459 |
-
# END OF TASK 8: Napari - Scale Bar & Export
|
| 460 |
-
# Operations: Show scale bar with units, save screenshot to file
|
| 461 |
-
|
| 462 |
-
# ============================================================
|
| 463 |
-
# TASK 9: Napari - Export & Cleanup
|
| 464 |
-
# ============================================================
|
| 465 |
-
|
| 466 |
-
# Test: save_layers - Save layer to file
|
| 467 |
-
- vars:
|
| 468 |
-
question: |
|
| 469 |
-
Save the active layer to the file "test_layer.tif".
|
| 470 |
-
Respond with <1> if the layer was successfully saved, or <0> if it failed. Only respond with <1> or <0>.
|
| 471 |
-
assert:
|
| 472 |
-
- type: contains-all
|
| 473 |
-
value: "<1>"
|
| 474 |
-
- type: not-contains
|
| 475 |
-
value: "<0>"
|
| 476 |
-
options:
|
| 477 |
-
cache: false
|
| 478 |
-
runSerially: true
|
| 479 |
-
|
| 480 |
-
# Test: remove_layer - Remove a layer
|
| 481 |
-
- vars:
|
| 482 |
-
question: |
|
| 483 |
-
Remove the layer named "test_rectangle".
|
| 484 |
-
Respond with <1> if the layer was successfully removed, or <0> if it failed. Only respond with <1> or <0>.
|
| 485 |
-
assert:
|
| 486 |
-
- type: contains-all
|
| 487 |
-
value: "<1>"
|
| 488 |
-
- type: not-contains
|
| 489 |
-
value: "<0>"
|
| 490 |
-
options:
|
| 491 |
-
cache: false
|
| 492 |
-
runSerially: true
|
| 493 |
-
|
| 494 |
-
# END OF TASK 9: Napari - Export & Cleanup
|
| 495 |
-
# Operations: Save layer to file, remove layer
|
| 496 |
-
|
| 497 |
-
# ============================================================
|
| 498 |
-
# TASK 10: Napari - Error Handling
|
| 499 |
-
# ============================================================
|
| 500 |
-
|
| 501 |
-
# Test: Error handling - Try to load non-existent file
|
| 502 |
-
- vars:
|
| 503 |
-
question: |
|
| 504 |
-
Try to load the non-existent file "nonexistent.tif" and handle the error gracefully.
|
| 505 |
-
Respond with <1> if the error was handled gracefully (no crash), or <0> if it crashed. Only respond with <1> or <0>.
|
| 506 |
-
assert:
|
| 507 |
-
- type: contains-all
|
| 508 |
-
value: "<1>"
|
| 509 |
-
- type: not-contains
|
| 510 |
-
value: "<0>"
|
| 511 |
-
options:
|
| 512 |
-
cache: false
|
| 513 |
-
runSerially: true
|
| 514 |
-
|
| 515 |
-
# Test: Error handling - Try to remove non-existent layer
|
| 516 |
-
- vars:
|
| 517 |
-
question: |
|
| 518 |
-
Try to remove a layer that doesn't exist named "nonexistent_layer" and handle the error gracefully.
|
| 519 |
-
Respond with <1> if the error was handled gracefully (no crash), or <0> if it crashed. Only respond with <1> or <0>.
|
| 520 |
-
assert:
|
| 521 |
-
- type: contains-all
|
| 522 |
-
value: "<1>"
|
| 523 |
-
- type: not-contains
|
| 524 |
-
value: "<0>"
|
| 525 |
-
options:
|
| 526 |
-
cache: false
|
| 527 |
-
runSerially: true
|
| 528 |
-
|
| 529 |
-
# END OF TASK 10: Napari - Error Handling
|
| 530 |
-
# Operations: Handle non-existent file, handle non-existent layer removal
|
| 531 |
-
|
| 532 |
-
# ============================================================
|
| 533 |
-
# TASK 11: Napari - 3D Rendering
|
| 534 |
-
# ============================================================
|
| 535 |
-
|
| 536 |
-
# Test: 3D View and Iso-surface Rendering
|
| 537 |
-
- vars:
|
| 538 |
-
question: |
|
| 539 |
-
Enable iso-surface rendering for the loaded layer.
|
| 540 |
-
Take a screenshot to verify the 3D iso-surface rendering.
|
| 541 |
-
Respond with <1> if the 3D iso-surface rendering was successfully set up, or <0> if it failed. Only respond with <1> or <0>.
|
| 542 |
-
assert:
|
| 543 |
-
- type: contains-all
|
| 544 |
-
value: "<1>"
|
| 545 |
-
- type: not-contains
|
| 546 |
-
value: "<0>"
|
| 547 |
-
options:
|
| 548 |
-
cache: false
|
| 549 |
-
runSerially: true
|
| 550 |
-
|
| 551 |
-
# Test: Cleanup - Remove remaining test layers
|
| 552 |
-
- vars:
|
| 553 |
-
question: |
|
| 554 |
-
Remove the layer named "test_rectangle" to clean up test annotations.
|
| 555 |
-
Respond with <1> if the layer was successfully removed, or <0> if it failed. Only respond with <1> or <0>.
|
| 556 |
-
assert:
|
| 557 |
-
- type: contains-all
|
| 558 |
-
value: "<1>"
|
| 559 |
-
- type: not-contains
|
| 560 |
-
value: "<0>"
|
| 561 |
-
options:
|
| 562 |
-
cache: false
|
| 563 |
-
runSerially: true
|
| 564 |
-
|
| 565 |
-
# END OF TASK 11: Napari - 3D Rendering
|
| 566 |
-
# Operations: Enable iso-surface rendering in 3D, remove test layers for cleanup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval_cases/napari/1_workflows/eval_analysis_workflows.yaml
DELETED
|
@@ -1,104 +0,0 @@
|
|
| 1 |
-
# Analysis Workflow Tests for napari-mcp
|
| 2 |
-
# These tests evaluate complex analysis workflows that combine multiple napari functions
|
| 3 |
-
# Each test focuses on performing specific analysis tasks
|
| 4 |
-
|
| 5 |
-
# Test: Cell Counting and Measurement Analysis
|
| 6 |
-
- vars:
|
| 7 |
-
question: |
|
| 8 |
-
Load the image "data/dataset_001/dataset_001.tiff" and set it to magenta colormap.
|
| 9 |
-
Take a screenshot and analyze it to count how many complete cells are visible (not cut off by edges).
|
| 10 |
-
Add point annotations to mark the center of each counted cell.
|
| 11 |
-
Measure the distance between the two most distant cells.
|
| 12 |
-
Q1: answer with the number of complete cells you counted, for example "5" if you see 5 complete cells.
|
| 13 |
-
Save the answer of Q1 to the questions in plain text as "eval_analysis_workflows/Q1_answer.txt".
|
| 14 |
-
assert:
|
| 15 |
-
- type: llm-rubric
|
| 16 |
-
subtype: text
|
| 17 |
-
value: |
|
| 18 |
-
1. Q1 correct answer: 2
|
| 19 |
-
rs-file: eval_analysis_workflows/Q1_answer.txt
|
| 20 |
-
options:
|
| 21 |
-
cache: false
|
| 22 |
-
runSerially: true
|
| 23 |
-
|
| 24 |
-
# Test: Statistical Analysis and Data Export
|
| 25 |
-
- vars:
|
| 26 |
-
question: |
|
| 27 |
-
Get basic statistics (min, max, mean, std) for the loaded layer.
|
| 28 |
-
Extract the raw layer data and examine its properties.
|
| 29 |
-
Save the current layer to a file for further analysis.
|
| 30 |
-
Export a screenshot of the current view for documentation.
|
| 31 |
-
Respond with <1> if the statistical analysis and data export were successful, or <0> if it failed. Only respond with <1> or <0>.
|
| 32 |
-
assert:
|
| 33 |
-
- type: contains-all
|
| 34 |
-
value: "<1>"
|
| 35 |
-
- type: not-contains
|
| 36 |
-
value: "<0>"
|
| 37 |
-
options:
|
| 38 |
-
cache: false
|
| 39 |
-
runSerially: true
|
| 40 |
-
|
| 41 |
-
# Test: Annotation and Measurement Workflow
|
| 42 |
-
- vars:
|
| 43 |
-
question: |
|
| 44 |
-
1. Add point annotations to mark specific features of interest in the image.
|
| 45 |
-
2. Add shape annotations (rectangles or circles) to highlight regions of interest.
|
| 46 |
-
3. Measure distances between multiple pairs of points.
|
| 47 |
-
4. Take a screenshot showing all annotations and measurements, save it to "eval_analysis_workflows/screenshot_1.png".
|
| 48 |
-
assert:
|
| 49 |
-
- type: llm-rubric
|
| 50 |
-
value: |
|
| 51 |
-
1. The screenshot shows the point and shape annotations, and measurements
|
| 52 |
-
rs-file: eval_analysis_workflows/screenshot_1.png
|
| 53 |
-
options:
|
| 54 |
-
cache: false
|
| 55 |
-
runSerially: true
|
| 56 |
-
|
| 57 |
-
# Test: Time Series Analysis (if applicable)
|
| 58 |
-
- vars:
|
| 59 |
-
question: |
|
| 60 |
-
If the data has time dimensions, navigate through different time points.
|
| 61 |
-
Compare cellular structures between different time points.
|
| 62 |
-
Take screenshots at different time points to show temporal changes.
|
| 63 |
-
If no time dimension exists, simulate time series analysis by adjusting the current view and taking multiple screenshots.
|
| 64 |
-
Respond with <1> if the time series analysis was successful, or <0> if it failed. Only respond with <1> or <0>.
|
| 65 |
-
assert:
|
| 66 |
-
- type: contains-all
|
| 67 |
-
value: "<1>"
|
| 68 |
-
- type: not-contains
|
| 69 |
-
value: "<0>"
|
| 70 |
-
options:
|
| 71 |
-
cache: false
|
| 72 |
-
runSerially: true
|
| 73 |
-
|
| 74 |
-
# Test: Data Cropping and Region of Interest Analysis
|
| 75 |
-
- vars:
|
| 76 |
-
question: |
|
| 77 |
-
1. Define a region of interest by cropping the layer to a specific area.
|
| 78 |
-
2. Analyze the cropped region separately from the full dataset.
|
| 79 |
-
3. Compare statistics between the full dataset and the cropped region.
|
| 80 |
-
4. Take a screenshot of the full view and save it to "eval_analysis_workflows/screenshot_2.png".
|
| 81 |
-
5. Take a screenshot of the cropped region and save it to "eval_analysis_workflows/screenshot_3.png".
|
| 82 |
-
assert:
|
| 83 |
-
- type: llm-rubric
|
| 84 |
-
subtype: vision
|
| 85 |
-
value: |
|
| 86 |
-
1. This screenshot shows the full dataset with the cropped region highlighted.
|
| 87 |
-
rs-file: eval_analysis_workflows/screenshot_2.png
|
| 88 |
-
options:
|
| 89 |
-
cache: false
|
| 90 |
-
runSerially: true
|
| 91 |
-
|
| 92 |
-
# Test: Cleanup - Reset for next test run
|
| 93 |
-
- vars:
|
| 94 |
-
question: |
|
| 95 |
-
Delete all loaded layers and remove any annotations to prepare for the next test run.
|
| 96 |
-
Respond with <1> if all layers and annotations were successfully removed, or <0> if it failed. Only respond with <1> or <0>.
|
| 97 |
-
assert:
|
| 98 |
-
- type: contains-all
|
| 99 |
-
value: "<1>"
|
| 100 |
-
- type: not-contains
|
| 101 |
-
value: "<0>"
|
| 102 |
-
options:
|
| 103 |
-
cache: false
|
| 104 |
-
runSerially: true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval_cases/napari/1_workflows/eval_figure_recreation.yaml
DELETED
|
@@ -1,28 +0,0 @@
|
|
| 1 |
-
# Figure Recreation Tests for napari-mcp
|
| 2 |
-
# These tests evaluate the agent's ability to recreate scientific figures from papers
|
| 3 |
-
# Focus: Loading data, applying appropriate visualization settings, and matching target figures
|
| 4 |
-
|
| 5 |
-
#Test: Recreate a figure from a dataset.
|
| 6 |
-
- vars:
|
| 7 |
-
question: |
|
| 8 |
-
1. Load the dataset into napari: data/dataset_001/dataset_001.tiff
|
| 9 |
-
2. Read the target figure: data/dataset_001/dataset_001.png but don't load it into napari.
|
| 10 |
-
3. Read the dataset description: data/dataset_001/dataset_001.yaml.
|
| 11 |
-
4. Set the same colormaps and blending modes as the target figure.
|
| 12 |
-
5. Adjust contrast and gamma as needed to match the target figure.
|
| 13 |
-
6. Take a screenshot of your recreation.
|
| 14 |
-
7. If the recreation does not match the target figure, adjust the visualization settings and take a screenshot again.
|
| 15 |
-
8. Stop when the recreation matches the target figure or you have tried five different visualization settings.
|
| 16 |
-
9. Save the final screenshot to "eval_figure_recreation/screenshot.png".
|
| 17 |
-
assert:
|
| 18 |
-
- type: llm-rubric
|
| 19 |
-
subtype: vision
|
| 20 |
-
value: |
|
| 21 |
-
1. Does the result screenshot look similar to the ground truth image?
|
| 22 |
-
2. Are the same colormaps and blending modes used as in the target figure?
|
| 23 |
-
3. Is the contrast and gamma adjusted to match the target figure?
|
| 24 |
-
gs-file: GS/dataset_001.png
|
| 25 |
-
rs-file: eval_figure_recreation/screenshot.png
|
| 26 |
-
options:
|
| 27 |
-
cache: false
|
| 28 |
-
runSerially: true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval_cases/napari/1_workflows/eval_iso_surface_determination.yaml
DELETED
|
@@ -1,25 +0,0 @@
|
|
| 1 |
-
# finding iso surface value for a dataset
|
| 2 |
-
# These tests evaluate the agent's ability to recreate scientific figures from papers
|
| 3 |
-
|
| 4 |
-
# Test: Iso surface determination for a target
|
| 5 |
-
- vars:
|
| 6 |
-
question: |
|
| 7 |
-
1. Read the file "data/dataset_003/eval_iso_surface_determination_target_1.txt" to get the target iso-surface values for different tooth structures.
|
| 8 |
-
2. Load data/dataset_003/dataset_003.tif into napari.
|
| 9 |
-
3. Switch to 3D view mode and set the rendering to iso.
|
| 10 |
-
4. Find the iso surface value that shows the target clearly.
|
| 11 |
-
5. Rotate the camera to several angles and take a screenshot of the result each time to check if the target structure is clearly visible from different angles.
|
| 12 |
-
6. If the target structure is not clearly visible, adjust the iso surface value and take a screenshot again.
|
| 13 |
-
7. Stop when the target structure is clearly visible or you have tried five different iso surface values.
|
| 14 |
-
8. Save the final screenshot to "eval_iso_surface_determination/screenshot.png".
|
| 15 |
-
assert:
|
| 16 |
-
- type: llm-rubric
|
| 17 |
-
subtype: vision
|
| 18 |
-
value: |
|
| 19 |
-
1. Does the result rendering look similar to ground truth?
|
| 20 |
-
2. Does the visualization show the target structure clearly?
|
| 21 |
-
gs-file: GS/dataset_003.png
|
| 22 |
-
rs-file: eval_iso_surface_determination/screenshot.png
|
| 23 |
-
options:
|
| 24 |
-
cache: false
|
| 25 |
-
runSerially: true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval_cases/napari/1_workflows/eval_visualization_workflows.yaml
DELETED
|
@@ -1,79 +0,0 @@
|
|
| 1 |
-
# Basic Visualization Workflow Tests
|
| 2 |
-
# Use https://www.ebi.ac.uk/bioimage-archive/galleries/S-BIAD573.html IM1 to test the workflows.
|
| 3 |
-
|
| 4 |
-
# Test: Multi-channel Overlay with Colormaps with channels
|
| 5 |
-
- vars:
|
| 6 |
-
question: |
|
| 7 |
-
1. Load the "data/dataset_002/dataset_002.tif" dataset into napari.
|
| 8 |
-
2. Depending on the number of channels, set the colormap for the first channel 0 to red and channel 1 to green.
|
| 9 |
-
3. Switch to the 3D view.
|
| 10 |
-
4. Use additive blending for all channels to create an overlay visualization.
|
| 11 |
-
5. Go the timestep 14.
|
| 12 |
-
Q1: Does the cell show protrusions? (Yes/No)
|
| 13 |
-
6. Take a screenshot of the result, save it to "eval_visualization_workflows/screenshot_1.png"
|
| 14 |
-
7. Answer Q1 in a plain text file "eval_visualization_workflows/Q1_answer.txt".
|
| 15 |
-
assert:
|
| 16 |
-
- type: llm-rubric
|
| 17 |
-
subtype: vision
|
| 18 |
-
value: |
|
| 19 |
-
1. Does the visualization show a green cell with red blobs on the inside?
|
| 20 |
-
2. Does the result rendering look similar to ground truth?
|
| 21 |
-
gs-file: GS/dataset_002_1.png
|
| 22 |
-
rs-file: eval_visualization_workflows/screenshot_1.png
|
| 23 |
-
- type: llm-rubric
|
| 24 |
-
subtype: text
|
| 25 |
-
value: |
|
| 26 |
-
1. Q1 correct answer: Yes
|
| 27 |
-
rs-file: eval_visualization_workflows/Q1_answer.txt
|
| 28 |
-
options:
|
| 29 |
-
cache: false
|
| 30 |
-
runSerially: true
|
| 31 |
-
|
| 32 |
-
# Test: Hide All Channels Except for the Channel with the Cells
|
| 33 |
-
- vars:
|
| 34 |
-
question: |
|
| 35 |
-
1. Set all layers invisible except for the layer that contains the individual cells.
|
| 36 |
-
2. Take a screenshots of the result, save it to "eval_visualization_workflows/screenshot_2.png".
|
| 37 |
-
assert:
|
| 38 |
-
- type: llm-rubric
|
| 39 |
-
subtype: vision
|
| 40 |
-
value: |
|
| 41 |
-
1. Are there only the green cells visible with no red blobs on the inside?
|
| 42 |
-
rs-file: eval_visualization_workflows/screenshot_2.png
|
| 43 |
-
options:
|
| 44 |
-
cache: false
|
| 45 |
-
runSerially: true
|
| 46 |
-
|
| 47 |
-
# Test: Advanced 3D Camera Control and Navigation
|
| 48 |
-
- vars:
|
| 49 |
-
question: |
|
| 50 |
-
1. Start in the 3D view
|
| 51 |
-
2. Zoom into the cell with protrusions until the cell fills up the entire viewport.
|
| 52 |
-
3. Rotate the camera to show the 3D data from a different perspective (side view).
|
| 53 |
-
4. Take a screenshot of the result, save it to "eval_visualization_workflows/screenshot_3.png".
|
| 54 |
-
assert:
|
| 55 |
-
- type: llm-rubric
|
| 56 |
-
subtype: vision
|
| 57 |
-
value: |
|
| 58 |
-
1. Does the visualization show the green cell from the side?
|
| 59 |
-
2. Does the result rendering look similar to the ground truth image?
|
| 60 |
-
gs-file: GS/dataset_002_2.jpg
|
| 61 |
-
rs-file: eval_visualization_workflows/screenshot_3.png
|
| 62 |
-
|
| 63 |
-
options:
|
| 64 |
-
cache: false
|
| 65 |
-
runSerially: true
|
| 66 |
-
|
| 67 |
-
# Test: Cleanup - Reset for next test run
|
| 68 |
-
- vars:
|
| 69 |
-
question: |
|
| 70 |
-
Delete all loaded layers and reset the view to 2D mode to prepare for the next test run.
|
| 71 |
-
Respond with <1> if all layers were successfully deleted and the view was reset, or <0> if it failed. Only respond with <1> or <0>.
|
| 72 |
-
assert:
|
| 73 |
-
- type: contains-all
|
| 74 |
-
value: "<1>"
|
| 75 |
-
- type: not-contains
|
| 76 |
-
value: "<0>"
|
| 77 |
-
options:
|
| 78 |
-
cache: false
|
| 79 |
-
runSerially: true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval_cases/napari/eval_visualization_workflows.yaml
ADDED
|
@@ -0,0 +1,236 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Basic Visualization Workflow Tests
|
| 2 |
+
# Use https://www.ebi.ac.uk/bioimage-archive/galleries/S-BIAD573.html IM1 to test the workflows.
|
| 3 |
+
|
| 4 |
+
# Test: Multi-channel Overlay with Colormaps with channels
|
| 5 |
+
- vars:
|
| 6 |
+
question: |
|
| 7 |
+
1. Load the "data/dataset_002/dataset_002_ch0.tif" dataset into napari as channel 0 and "data/dataset_002/dataset_002_ch1.tif" as channel 1.
|
| 8 |
+
2. Set the colormap for channel 0 to red and channel 1 to green.
|
| 9 |
+
3. Switch to the 3D view.
|
| 10 |
+
4. Use additive blending for all channels to create an overlay visualization.
|
| 11 |
+
5. Go the timestep 14.
|
| 12 |
+
Q1: Does the cell show protrusions? (Yes/No)
|
| 13 |
+
6. Take a screenshot of the result, save it to "eval_visualization_workflows/screenshot_1.png"
|
| 14 |
+
7. Answer Q1 in a plain text file "eval_visualization_workflows/multi_channel_answer.txt".
|
| 15 |
+
assert:
|
| 16 |
+
- type: llm-rubric
|
| 17 |
+
subtype: vision
|
| 18 |
+
value: |
|
| 19 |
+
1. Does the visualization show a green cell with red blobs on the inside?
|
| 20 |
+
2. Does the result rendering look similar to ground truth?
|
| 21 |
+
gs-file: GS/dataset_002_1.png
|
| 22 |
+
rs-file: eval_visualization_workflows/screenshot_1.png
|
| 23 |
+
- type: llm-rubric
|
| 24 |
+
subtype: text
|
| 25 |
+
value: |
|
| 26 |
+
1. Q1 correct answer: Yes
|
| 27 |
+
rs-file: eval_visualization_workflows/multi_channel_answer.txt
|
| 28 |
+
options:
|
| 29 |
+
cache: false
|
| 30 |
+
runSerially: true
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
# Test: ingesting points
|
| 34 |
+
- vars:
|
| 35 |
+
question: |
|
| 36 |
+
1. Load the "data/dataset_002/Points.csv" dataset into napari.
|
| 37 |
+
2. Check if the points layer has been created.
|
| 38 |
+
Q1: Was the points layer created successfully? (Yes/No)
|
| 39 |
+
3. Answer Q1 in a plain text file "eval_visualization_workflows/points_answer.txt".
|
| 40 |
+
assert:
|
| 41 |
+
- type: llm-rubric
|
| 42 |
+
subtype: text
|
| 43 |
+
value: |
|
| 44 |
+
1. Q1 correct answer: Yes
|
| 45 |
+
rs-file: eval_visualization_workflows/points_answer.txt
|
| 46 |
+
options:
|
| 47 |
+
cache: false
|
| 48 |
+
runSerially: true
|
| 49 |
+
|
| 50 |
+
# Test: ingesting shapes
|
| 51 |
+
- vars:
|
| 52 |
+
question: |
|
| 53 |
+
1. Load the "data/dataset_002/Shapes.csv" dataset into napari.
|
| 54 |
+
2. Check if the shapes layer has been created.
|
| 55 |
+
Q1: Was the shapes layer created successfully? (Yes/No)
|
| 56 |
+
3. Answer Q1 in a plain text file "eval_visualization_workflows/shapes_answer.txt".
|
| 57 |
+
assert:
|
| 58 |
+
- type: llm-rubric
|
| 59 |
+
subtype: text
|
| 60 |
+
value: |
|
| 61 |
+
1. Q1 correct answer: Yes
|
| 62 |
+
rs-file: eval_visualization_workflows/shapes_answer.txt
|
| 63 |
+
options:
|
| 64 |
+
cache: false
|
| 65 |
+
runSerially: true
|
| 66 |
+
|
| 67 |
+
# Test: ingesting labels
|
| 68 |
+
- vars:
|
| 69 |
+
question: |
|
| 70 |
+
1. Load the "data/dataset_002/Labels.tif" dataset into napari.
|
| 71 |
+
2. Check if a new layer called "Labels" has been created.
|
| 72 |
+
Q1: Was the layer created successfully? (Yes/No)
|
| 73 |
+
3. Answer Q1 in a plain text file "eval_visualization_workflows/labels_answer.txt".
|
| 74 |
+
assert:
|
| 75 |
+
- type: llm-rubric
|
| 76 |
+
subtype: text
|
| 77 |
+
value: |
|
| 78 |
+
1. Q1 correct answer: Yes
|
| 79 |
+
rs-file: eval_visualization_workflows/labels_answer.txt
|
| 80 |
+
options:
|
| 81 |
+
cache: false
|
| 82 |
+
runSerially: true
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
#Test: Recreate a figure from a dataset.
|
| 86 |
+
- vars:
|
| 87 |
+
question: |
|
| 88 |
+
1. Load the dataset into napari: data/dataset_001/dataset_001.tiff
|
| 89 |
+
2. Read the target figure: data/dataset_001/dataset_001.png but don't load it into napari.
|
| 90 |
+
3. Read the dataset description: data/dataset_001/dataset_001.yaml.
|
| 91 |
+
4. Set the same colormaps and blending modes as the target figure.
|
| 92 |
+
5. Adjust contrast and gamma as needed to match the target figure.
|
| 93 |
+
6. Take a screenshot of your recreation.
|
| 94 |
+
7. If the recreation does not match the target figure, adjust the visualization settings and take a screenshot again.
|
| 95 |
+
8. Stop when the recreation matches the target figure or you have tried five different visualization settings.
|
| 96 |
+
9. Save the final screenshot to "eval_figure_recreation/screenshot.png".
|
| 97 |
+
assert:
|
| 98 |
+
- type: llm-rubric
|
| 99 |
+
subtype: vision
|
| 100 |
+
value: |
|
| 101 |
+
1. Does the result screenshot look similar to the ground truth image?
|
| 102 |
+
2. Are the same colormaps and blending modes used as in the target figure?
|
| 103 |
+
3. Is the contrast and gamma adjusted to match the target figure?
|
| 104 |
+
gs-file: GS/dataset_001.png
|
| 105 |
+
rs-file: eval_figure_recreation/screenshot.png
|
| 106 |
+
options:
|
| 107 |
+
cache: false
|
| 108 |
+
runSerially: true
|
| 109 |
+
|
| 110 |
+
# Test: Iso surface determination for a target
|
| 111 |
+
- vars:
|
| 112 |
+
question: |
|
| 113 |
+
1. Read the file "data/dataset_003/eval_iso_surface_determination_target_1.txt" to get the target iso-surface values for different tooth structures.
|
| 114 |
+
2. Load data/dataset_003/dataset_003.tif into napari.
|
| 115 |
+
3. Switch to 3D view mode and set the rendering to iso.
|
| 116 |
+
4. Find the iso surface value that shows the target clearly.
|
| 117 |
+
5. Rotate the camera to several angles and take a screenshot of the result each time to check if the target structure is clearly visible from different angles.
|
| 118 |
+
6. If the target structure is not clearly visible, adjust the iso surface value and take a screenshot again.
|
| 119 |
+
7. Stop when the target structure is clearly visible or you have tried five different iso surface values.
|
| 120 |
+
8. Save the final screenshot to "eval_iso_surface_determination/screenshot.png".
|
| 121 |
+
assert:
|
| 122 |
+
- type: llm-rubric
|
| 123 |
+
subtype: vision
|
| 124 |
+
value: |
|
| 125 |
+
1. Does the result rendering look similar to ground truth?
|
| 126 |
+
2. Does the visualization show the target structure clearly?
|
| 127 |
+
gs-file: GS/dataset_003.png
|
| 128 |
+
rs-file: eval_iso_surface_determination/screenshot.png
|
| 129 |
+
options:
|
| 130 |
+
cache: false
|
| 131 |
+
runSerially: true
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
# Test: Cell Counting and Measurement Analysis
|
| 135 |
+
- vars:
|
| 136 |
+
question: |
|
| 137 |
+
1. Load the image "data/dataset_002/dataset_002_ch0.tif" and set channel 0 to a magenta colormap.
|
| 138 |
+
2. Switch to a 3D MIP view.
|
| 139 |
+
3. Take a screenshot and analyze it to count how many complete cells are visible (not cut off by edges).
|
| 140 |
+
Q1: answer with the number of complete cells you counted, for example "5" if you see 5 complete cells.
|
| 141 |
+
4. Save the answer of Q1 to the questions in plain text as "eval_analysis_workflows/Q1_answer.txt".
|
| 142 |
+
assert:
|
| 143 |
+
- type: llm-rubric
|
| 144 |
+
subtype: text
|
| 145 |
+
value: |
|
| 146 |
+
1. Q1 correct answer: 2
|
| 147 |
+
rs-file: eval_analysis_workflows/Q1_answer.txt
|
| 148 |
+
options:
|
| 149 |
+
cache: false
|
| 150 |
+
runSerially: true
|
| 151 |
+
|
| 152 |
+
# Test: Statistical Analysis and Data Export
|
| 153 |
+
- vars:
|
| 154 |
+
question: |
|
| 155 |
+
1. Load the image "data/dataset_001/dataset_001.tiff".
|
| 156 |
+
2. Get basic statistics (min, max, mean, std) for the loaded layer.
|
| 157 |
+
3. Extract the raw layer data and examine its properties.
|
| 158 |
+
4. Save the current layer to a file for further analysis.
|
| 159 |
+
Q1: Was the statistical analysis and data export successful? (Yes/No)
|
| 160 |
+
6. Save the answer of Q1 in plain text as "eval_analysis_workflows/layer_statistics_answer.txt".
|
| 161 |
+
assert:
|
| 162 |
+
- type: llm-rubric
|
| 163 |
+
subtype: text
|
| 164 |
+
value: |
|
| 165 |
+
1. Q1 correct answer: Yes
|
| 166 |
+
rs-file: eval_analysis_workflows/layer_statistics_answer.txt
|
| 167 |
+
options:
|
| 168 |
+
cache: false
|
| 169 |
+
runSerially: true
|
| 170 |
+
|
| 171 |
+
# Test: Annotation Workflow
|
| 172 |
+
- vars:
|
| 173 |
+
question: |
|
| 174 |
+
1. Load the image "data/dataset_001/dataset_001.tiff".
|
| 175 |
+
2. Add point annotations at random locations on the image.
|
| 176 |
+
3. Add shape annotations (rectangles or circles) at random locations on the image.
|
| 177 |
+
Q1: Check if layers have been generated. (Yes/No)
|
| 178 |
+
4. Save the answer of Q1 in plain text as "eval_analysis_workflows/annotation_answer.txt".
|
| 179 |
+
assert:
|
| 180 |
+
- type: llm-rubric
|
| 181 |
+
subtype: text
|
| 182 |
+
value: |
|
| 183 |
+
1. Q1 correct answer: Yes
|
| 184 |
+
rs-file: eval_analysis_workflows/annotation_answer.txt
|
| 185 |
+
options:
|
| 186 |
+
cache: false
|
| 187 |
+
runSerially: true
|
| 188 |
+
|
| 189 |
+
# Test: Advanced Annotation Workflow: Cell Surface Trace (This will likely fail)
|
| 190 |
+
- vars:
|
| 191 |
+
question: |
|
| 192 |
+
1. Load the image "data/dataset_002/dataset_002_ch0.tif" into napari.
|
| 193 |
+
2. Trace the cell surface on the current slice by adding a polygon shape in a new shape layer.
|
| 194 |
+
3. Use a screenshot to validate whether the polygon correctly traces the cell surface.
|
| 195 |
+
4. If the trace is not accurate, adjust the polygon and take a new screenshot to validate.
|
| 196 |
+
5. Stop when the trace is accurate or you have tried five different attempts.
|
| 197 |
+
6. Save the results and the final screenshot to "eval_annotation_workflows/cell_surface_trace.png".
|
| 198 |
+
assert:
|
| 199 |
+
- type: llm-rubric
|
| 200 |
+
subtype: vision
|
| 201 |
+
value: |
|
| 202 |
+
1. Does the final screenshot show a polygon shape that accurately traces the outline of the cell surface?
|
| 203 |
+
2. Is the polygon layer correctly overlaid on the image?
|
| 204 |
+
rs-file: eval_annotation_workflows/cell_surface_trace.png
|
| 205 |
+
options:
|
| 206 |
+
cache: false
|
| 207 |
+
runSerially: true
|
| 208 |
+
|
| 209 |
+
# Test: Camera Operations (Zoom and Rotate)
|
| 210 |
+
- vars:
|
| 211 |
+
question: |
|
| 212 |
+
1. Load the "data/dataset_002/dataset_002_ch0.tif" dataset into napari as channel 0 and "data/dataset_002/dataset_002_ch1.tif" as channel 1.
|
| 213 |
+
2. Depending on the number of channels, set the colormap for the first channel 0 to red and channel 1 to green.
|
| 214 |
+
3. Switch to the 3D view.
|
| 215 |
+
4. Zoom in to the cell in the middle.
|
| 216 |
+
5. Rotate the camera to a side view.
|
| 217 |
+
6. Take a screenshot of the zoomed-in view and save it to "eval_camera_operations/zoom_screenshot.png".
|
| 218 |
+
7. Take a screenshot of the side view and save it to "eval_camera_operations/rotate_screenshot.png".
|
| 219 |
+
assert:
|
| 220 |
+
- type: llm-rubric
|
| 221 |
+
subtype: vision
|
| 222 |
+
value: |
|
| 223 |
+
1. Does the visualization show a zoomed-in view of the cell in the middle?
|
| 224 |
+
2. Does the result rendering look similar to ground truth?
|
| 225 |
+
gs-file: GS/dataset_002_zoom.jpg
|
| 226 |
+
rs-file: eval_camera_operations/zoom_screenshot.png
|
| 227 |
+
- type: llm-rubric
|
| 228 |
+
subtype: vision
|
| 229 |
+
value: |
|
| 230 |
+
1. Does the visualization show a side view of the cell?
|
| 231 |
+
2. Does the result rendering look similar to ground truth?
|
| 232 |
+
gs-file: GS/dataset_002_camera_side.png
|
| 233 |
+
rs-file: eval_camera_operations/rotate_screenshot.png
|
| 234 |
+
options:
|
| 235 |
+
cache: false
|
| 236 |
+
runSerially: true
|
eval_cases/selected_15_cases.yaml
DELETED
|
@@ -1,87 +0,0 @@
|
|
| 1 |
-
# Selected 15 Cases for Human Evaluation
|
| 2 |
-
# These cases represent diverse visualization capabilities across the benchmark
|
| 3 |
-
#
|
| 4 |
-
# Each case specifies:
|
| 5 |
-
# - name: The case directory name
|
| 6 |
-
# - path: Path to the case directory (relative to workspace root)
|
| 7 |
-
# - yaml: Path to the YAML file containing evaluation criteria
|
| 8 |
-
# - description: Brief description of what the case tests
|
| 9 |
-
|
| 10 |
-
cases:
|
| 11 |
-
# From main benchmark (7 cases)
|
| 12 |
-
- name: argon-bubble
|
| 13 |
-
path: SciVisAgentBench-tasks/main/argon-bubble
|
| 14 |
-
yaml: benchmark/eval_cases/paraview/main_cases.yaml
|
| 15 |
-
description: Color & Opacity Mapping, Volume Rendering
|
| 16 |
-
|
| 17 |
-
- name: bonsai
|
| 18 |
-
path: SciVisAgentBench-tasks/main/bonsai
|
| 19 |
-
yaml: benchmark/eval_cases/paraview/main_cases.yaml
|
| 20 |
-
description: Volume Rendering
|
| 21 |
-
|
| 22 |
-
- name: trl-velocity_streamline
|
| 23 |
-
path: SciVisAgentBench-tasks/main/trl-velocity_streamline
|
| 24 |
-
yaml: benchmark/eval_cases/paraview/main_cases.yaml
|
| 25 |
-
description: Temporal Processing (Streamline)
|
| 26 |
-
|
| 27 |
-
- name: tornado
|
| 28 |
-
path: SciVisAgentBench-tasks/main/tornado
|
| 29 |
-
yaml: benchmark/eval_cases/paraview/main_cases.yaml
|
| 30 |
-
description: Glyph & Marker Placement
|
| 31 |
-
|
| 32 |
-
- name: tgc-velocity_contour
|
| 33 |
-
path: SciVisAgentBench-tasks/main/tgc-velocity_contour
|
| 34 |
-
yaml: benchmark/eval_cases/paraview/main_cases.yaml
|
| 35 |
-
description: Surface & Contour Extraction
|
| 36 |
-
|
| 37 |
-
- name: rti-velocity_slices
|
| 38 |
-
path: SciVisAgentBench-tasks/main/rti-velocity_slices
|
| 39 |
-
yaml: benchmark/eval_cases/paraview/main_cases.yaml
|
| 40 |
-
description: View & Camera Control, Data Subsetting & Extraction
|
| 41 |
-
|
| 42 |
-
- name: supernova-velocity_isosurface
|
| 43 |
-
path: SciVisAgentBench-tasks/main/supernova-velocity_isosurface
|
| 44 |
-
yaml: benchmark/eval_cases/paraview/main_cases.yaml
|
| 45 |
-
description: Surface & Contour Extraction (isosurface)
|
| 46 |
-
|
| 47 |
-
# From chatvis_bench (6 cases)
|
| 48 |
-
- name: time-varying
|
| 49 |
-
path: SciVisAgentBench-tasks/chatvis_bench/time-varying
|
| 50 |
-
yaml: benchmark/eval_cases/paraview/chatvis_bench_cases.yaml
|
| 51 |
-
description: Temporal Processing
|
| 52 |
-
|
| 53 |
-
- name: chart-opacity
|
| 54 |
-
path: SciVisAgentBench-tasks/chatvis_bench/chart-opacity
|
| 55 |
-
yaml: benchmark/eval_cases/paraview/chatvis_bench_cases.yaml
|
| 56 |
-
description: Plot & Chart Generation
|
| 57 |
-
|
| 58 |
-
- name: climate
|
| 59 |
-
path: SciVisAgentBench-tasks/chatvis_bench/climate
|
| 60 |
-
yaml: benchmark/eval_cases/paraview/chatvis_bench_cases.yaml
|
| 61 |
-
description: Field Computation
|
| 62 |
-
|
| 63 |
-
- name: materials
|
| 64 |
-
path: SciVisAgentBench-tasks/chatvis_bench/materials
|
| 65 |
-
yaml: benchmark/eval_cases/paraview/chatvis_bench_cases.yaml
|
| 66 |
-
description: Scientific Insight Derivation
|
| 67 |
-
|
| 68 |
-
- name: subseries-of-time-series
|
| 69 |
-
path: SciVisAgentBench-tasks/chatvis_bench/subseries-of-time-series
|
| 70 |
-
yaml: benchmark/eval_cases/paraview/chatvis_bench_cases.yaml
|
| 71 |
-
description: Dataset Restructuring
|
| 72 |
-
|
| 73 |
-
- name: shrink-sphere
|
| 74 |
-
path: SciVisAgentBench-tasks/chatvis_bench/shrink-sphere
|
| 75 |
-
yaml: benchmark/eval_cases/paraview/chatvis_bench_cases.yaml
|
| 76 |
-
description: Geometric & Topological Transformation
|
| 77 |
-
|
| 78 |
-
# From molecular_vis/workflows (2 cases)
|
| 79 |
-
- name: curved-membrane
|
| 80 |
-
path: SciVisAgentBench-tasks/molecular_vis/workflows/curved-membrane
|
| 81 |
-
yaml: benchmark/eval_cases/molecular_vis/workflows/eval_analysis_workflows.yaml
|
| 82 |
-
description: Data Subsetting & Extraction
|
| 83 |
-
|
| 84 |
-
- name: ras-raf-membrane
|
| 85 |
-
path: SciVisAgentBench-tasks/molecular_vis/workflows/ras-raf-membrane
|
| 86 |
-
yaml: benchmark/eval_cases/molecular_vis/workflows/eval_analysis_workflows.yaml
|
| 87 |
-
description: View & Camera Control
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eval_cases/selected_cases.yaml
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Selected 15 Cases for Human Evaluation
|
| 2 |
+
# These cases represent diverse visualization capabilities across the benchmark
|
| 3 |
+
#
|
| 4 |
+
# Each case specifies:
|
| 5 |
+
# - name: The case directory name
|
| 6 |
+
# - path: Path to the case directory (relative to workspace root)
|
| 7 |
+
# - yaml: Path to the YAML file containing evaluation criteria
|
| 8 |
+
# - description: Brief description of what the case tests
|
| 9 |
+
|
| 10 |
+
cases:
|
| 11 |
+
- name: argon-bubble
|
| 12 |
+
path: SciVisAgentBench-tasks/paraview/argon-bubble
|
| 13 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 14 |
+
description: Color & Opacity Mapping, Volume Rendering
|
| 15 |
+
agent_mode: paraview_mcp_claude-sonnet-4-5_exp1
|
| 16 |
+
|
| 17 |
+
- name: richtmyer
|
| 18 |
+
path: SciVisAgentBench-tasks/paraview/richtmyer
|
| 19 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 20 |
+
description: Color & Opacity Mapping, Volume Rendering
|
| 21 |
+
agent_mode: paraview_mcp_claude-sonnet-4-5_exp1
|
| 22 |
+
|
| 23 |
+
- name: foot
|
| 24 |
+
path: SciVisAgentBench-tasks/paraview/foot
|
| 25 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 26 |
+
description: Volume Rendering
|
| 27 |
+
agent_mode: paraview_mcp_claude-sonnet-4-5_exp1
|
| 28 |
+
|
| 29 |
+
- name: crayfish_streamline
|
| 30 |
+
path: SciVisAgentBench-tasks/paraview/crayfish_streamline
|
| 31 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 32 |
+
description: Surface & Contour Extraction
|
| 33 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 34 |
+
|
| 35 |
+
- name: twoswirls_streamribbon
|
| 36 |
+
path: SciVisAgentBench-tasks/paraview/twoswirls_streamribbon
|
| 37 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 38 |
+
description: Surface & Contour Extraction
|
| 39 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 40 |
+
|
| 41 |
+
- name: tornado
|
| 42 |
+
path: SciVisAgentBench-tasks/paraview/tornado
|
| 43 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 44 |
+
description: Surface & Contour Extraction, Glyph & Marker Placement
|
| 45 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 46 |
+
|
| 47 |
+
- name: tgc-velocity_contour
|
| 48 |
+
path: SciVisAgentBench-tasks/paraview/tgc-velocity_contour
|
| 49 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 50 |
+
description: Surface & Contour Extraction
|
| 51 |
+
agent_mode: paraview_mcp_claude-sonnet-4-5_exp1
|
| 52 |
+
|
| 53 |
+
- name: rti-velocity_slices
|
| 54 |
+
path: SciVisAgentBench-tasks/paraview/rti-velocity_slices
|
| 55 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 56 |
+
description: View & Camera Control, Data Subsetting & Extraction
|
| 57 |
+
agent_mode: paraview_mcp_claude-sonnet-4-5_exp1
|
| 58 |
+
|
| 59 |
+
- name: rti-velocity_glyph
|
| 60 |
+
path: SciVisAgentBench-tasks/paraview/rti-velocity_glyph
|
| 61 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 62 |
+
description: Glyph & Marker Placement, Data Subsetting & Extraction
|
| 63 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 64 |
+
|
| 65 |
+
- name: supernova_isosurface
|
| 66 |
+
path: SciVisAgentBench-tasks/paraview/supernova_isosurface
|
| 67 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 68 |
+
description: Surface & Contour Extraction (isosurface)
|
| 69 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 70 |
+
|
| 71 |
+
- name: time-varying
|
| 72 |
+
path: SciVisAgentBench-tasks/paraview/time-varying
|
| 73 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 74 |
+
description: Temporal Processing
|
| 75 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 76 |
+
|
| 77 |
+
- name: chart-opacity
|
| 78 |
+
path: SciVisAgentBench-tasks/paraview/chart-opacity
|
| 79 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 80 |
+
description: Plot & Chart Generation
|
| 81 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 82 |
+
|
| 83 |
+
- name: climate
|
| 84 |
+
path: SciVisAgentBench-tasks/paraview/climate
|
| 85 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 86 |
+
description: Field Computation
|
| 87 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 88 |
+
|
| 89 |
+
# - name: subseries-of-time-series
|
| 90 |
+
# path: SciVisAgentBench-tasks/paraview/subseries-of-time-series
|
| 91 |
+
# yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 92 |
+
# description: Dataset Restructuring
|
| 93 |
+
# agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 94 |
+
|
| 95 |
+
- name: shrink-sphere
|
| 96 |
+
path: SciVisAgentBench-tasks/paraview/shrink-sphere
|
| 97 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 98 |
+
description: Geometric & Topological Transformation
|
| 99 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 100 |
+
|
| 101 |
+
- name: import-gltf
|
| 102 |
+
path: SciVisAgentBench-tasks/paraview/import-gltf
|
| 103 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 104 |
+
description: Dataset Restructuring, View & Camera Control
|
| 105 |
+
agent_mode: paraview_mcp_claude-sonnet-4-5_exp1
|
| 106 |
+
|
| 107 |
+
- name: render-histogram
|
| 108 |
+
path: SciVisAgentBench-tasks/paraview/render-histogram
|
| 109 |
+
yaml: benchmark/eval_cases/paraview/paraview_cases.yaml
|
| 110 |
+
description: Plot & Chart Generation, Color & Opacity Mapping
|
| 111 |
+
agent_mode: chatvis_claude-sonnet-4-5_exp1
|
| 112 |
+
|
| 113 |
+
# From molecular_vis/workflows (2 cases)
|
| 114 |
+
- name: curved-membrane
|
| 115 |
+
path: SciVisAgentBench-tasks/molecular_vis/workflows/curved-membrane
|
| 116 |
+
yaml: benchmark/eval_cases/molecular_vis/workflows/eval_analysis_workflows.yaml
|
| 117 |
+
description: Data Subsetting & Extraction
|
| 118 |
+
agent_mode: gmx_vmd_mcp_claude-sonnet-4-5_exp1
|
| 119 |
+
|
| 120 |
+
- name: ras-raf-membrane
|
| 121 |
+
path: SciVisAgentBench-tasks/molecular_vis/workflows/ras-raf-membrane
|
| 122 |
+
yaml: benchmark/eval_cases/molecular_vis/workflows/eval_analysis_workflows.yaml
|
| 123 |
+
description: View & Camera Control
|
| 124 |
+
agent_mode: gmx_vmd_mcp_claude-sonnet-4-5_exp1
|
| 125 |
+
|
| 126 |
+
- name: bio_isosurface-determination
|
| 127 |
+
path: SciVisAgentBench-tasks\bioimage_data\eval_iso_surface_determination\operation_1
|
| 128 |
+
yaml: benchmark\eval_cases\napari\1_workflows\eval_iso_surface_determination.yaml
|
| 129 |
+
description: Surface & Contour Extraction (isosurface)
|
| 130 |
+
agent_mode: napari_mcp_claude-sonnet-4-5_exp_default
|
| 131 |
+
task_description:
|
| 132 |
+
1. Read the file "data/dataset_003/eval_iso_surface_determination_target_1.txt" to get the target iso-surface values for different tooth structures.
|
| 133 |
+
|
| 134 |
+
2. Load data/dataset_003/dataset_003.tif into napari.
|
| 135 |
+
|
| 136 |
+
3. Switch to 3D view mode and set the rendering to iso.
|
| 137 |
+
|
| 138 |
+
4. Find the iso surface value that shows the target clearly.
|
| 139 |
+
|
| 140 |
+
5. Rotate the camera to several angles and take a screenshot of the result each time to check if the target structure is clearly visible from different angles.
|
| 141 |
+
|
| 142 |
+
6. If the target structure is not clearly visible, adjust the iso surface value and take a screenshot again.
|
| 143 |
+
|
| 144 |
+
7. Stop when the target structure is clearly visible or you have tried five different iso surface values.
|
| 145 |
+
|
| 146 |
+
8. Save the final screenshot to "eval_iso_surface_determination/screenshot.png".
|
| 147 |
+
vision-rubrics:
|
| 148 |
+
1. Does the result rendering look similar to ground truth?
|
| 149 |
+
2. Does the visualization show the target structure clearly?
|
| 150 |
+
|
| 151 |
+
- name: bio_visualization-workflows
|
| 152 |
+
path: SciVisAgentBench-tasks\bioimage_data\eval_visualization_workflows\operation_1
|
| 153 |
+
yaml: benchmark\eval_cases\napari\1_workflows\eval_visualization_workflows.yaml
|
| 154 |
+
description: Color & Opacity Mapping, Volume Rendering, Temporal Processing
|
| 155 |
+
agent_mode: napari_mcp_claude-sonnet-4-5_exp_default
|
| 156 |
+
task_description:
|
| 157 |
+
1. Load the "data/dataset_002/dataset_002.tif" dataset into napari.
|
| 158 |
+
|
| 159 |
+
2. Depending on the number of channels, set the colormap for the first channel 0 to red and channel 1 to green.
|
| 160 |
+
|
| 161 |
+
3. Switch to the 3D view.
|
| 162 |
+
|
| 163 |
+
4. Use additive blending for all channels to create an overlay visualization.
|
| 164 |
+
|
| 165 |
+
5. Go the timestep 14.
|
| 166 |
+
Q1. Does the cell show protrusions? (Yes/No)
|
| 167 |
+
|
| 168 |
+
6. Take a screenshot of the result, save it to "eval_visualization_workflows/screenshot_1.png"
|
| 169 |
+
|
| 170 |
+
7. Answer Q1 in a plain text file "eval_visualization_workflows/Q1_answer.txt".
|
| 171 |
+
vision-rubrics:
|
| 172 |
+
1. Does the visualization show a green cell with red blobs on the inside?
|
| 173 |
+
2. Does the result rendering look similar to ground truth?
|
| 174 |
+
|
| 175 |
+
- name: bio_figure-recreation
|
| 176 |
+
path: SciVisAgentBench-tasks\bioimage_data\eval_figure_recreation\operation_1
|
| 177 |
+
yaml: benchmark\eval_cases\napari\1_workflows\eval_figure_recreation.yaml
|
| 178 |
+
description: Color & Opacity Mapping, Volume Rendering
|
| 179 |
+
agent_mode: napari_mcp_claude-sonnet-4-5_exp_default
|
| 180 |
+
task_description:
|
| 181 |
+
1. Load the dataset into napari "data/dataset_001/dataset_001.tiff"
|
| 182 |
+
|
| 183 |
+
2. Read the target figure "data/dataset_001/dataset_001.png" but don't load it into napari.
|
| 184 |
+
|
| 185 |
+
3. Read the dataset description "data/dataset_001/dataset_001.yaml".
|
| 186 |
+
|
| 187 |
+
4. Set the same colormaps and blending modes as the target figure.
|
| 188 |
+
|
| 189 |
+
5. Adjust contrast and gamma as needed to match the target figure.
|
| 190 |
+
|
| 191 |
+
6. Take a screenshot of your recreation.
|
| 192 |
+
|
| 193 |
+
7. If the recreation does not match the target figure, adjust the visualization settings and take a screenshot again.
|
| 194 |
+
|
| 195 |
+
8. Stop when the recreation matches the target figure or you have tried five different visualization settings.
|
| 196 |
+
|
| 197 |
+
9. Save the final screenshot to "eval_figure_recreation/screenshot.png".
|
| 198 |
+
vision-rubrics:
|
| 199 |
+
1. Does the visualization show a green cell with red blobs on the inside?
|
| 200 |
+
2. Does the result rendering look similar to ground truth?
|