uermel commited on
Commit ·
dbe69ee
1
Parent(s): 67027b5
initial yeast + motorbench
Browse files- .gitignore +2 -1
- README.md +120 -28
- bacterial/Croissant/metadata.json +1 -1
- phantom/Croissant/metadata.json +1 -1
- yeast/Croissant/features.csv +1 -0
- yeast/Croissant/meshes.csv +1 -0
- yeast/Croissant/metadata.json +1075 -0
- yeast/Croissant/objects.csv +1 -0
- yeast/Croissant/picks.csv +1 -0
- yeast/Croissant/runs.csv +21 -0
- yeast/Croissant/segmentations.csv +81 -0
- yeast/Croissant/tomograms.csv +21 -0
- yeast/Croissant/voxel_spacings.csv +21 -0
.gitignore
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
-
scripts/
|
|
|
|
|
|
| 1 |
+
scripts/
|
| 2 |
+
.idea/
|
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
pretty_name: POPSICLE
|
|
@@ -23,6 +23,8 @@ configs:
|
|
| 23 |
data_files: phantom/Croissant/runs.csv
|
| 24 |
- config_name: bacterial
|
| 25 |
data_files: bacterial/Croissant/runs.csv
|
|
|
|
|
|
|
| 26 |
---
|
| 27 |
|
| 28 |
# Dataset Card for POPSICLE
|
|
@@ -54,27 +56,28 @@ protocol) so models can be trained and compared under one roof.
|
|
| 54 |
| Sub-benchmark | Task | Organism / sample | # train | # test | Status |
|
| 55 |
|---------------|---------------|--------------------------|--------:|-------:|-------------|
|
| 56 |
| **Phantom** | Localization | Lysate / synthetic | 7 | 485 | ✅ released |
|
| 57 |
-
| Yeast
|
| 58 |
| **Bacterial** | Segmentation | Prokaryote (8 genera) | 68 | 12 | ✅ released |
|
| 59 |
| MotorBench | Localization | *V. cholerae* | 1,288 | 844 | 🚧 pending |
|
| 60 |
|
| 61 |
- **Curated by:** Authors of the POPSICLE benchmark paper (NeurIPS 2026, under review).
|
| 62 |
-
- **Shared by:**
|
| 63 |
-
- **License:**
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
|
|
|
| 67 |
|
| 68 |
### Dataset Sources
|
| 69 |
|
| 70 |
- **Repository:** https://huggingface.co/datasets/uermel/popsicle
|
| 71 |
-
- **Paper:** POPSICLE (
|
| 72 |
- **Underlying datasets:**
|
| 73 |
[DS-10440](https://cryoetdataportal.czscience.com/datasets/10440) (Phantom train),
|
| 74 |
[DS-10445](https://cryoetdataportal.czscience.com/datasets/10445) (Phantom public test),
|
| 75 |
[DS-10446](https://cryoetdataportal.czscience.com/datasets/10446) (Phantom private test),
|
| 76 |
[CZCDP-10350](https://cryoetdataportal.czscience.com/depositions/10350) (Bacterial),
|
| 77 |
-
[
|
| 78 |
[CZCDP-10332](https://cryoetdataportal.czscience.com/depositions/10332)/[CZCDP-10347](https://cryoetdataportal.czscience.com/depositions/10347) (MotorBench train/test).
|
| 79 |
- **Data Portal:** https://cryoetdataportal.czscience.com (Ermel et al.,
|
| 80 |
*Nature Methods* 21:2200–2202, 2024).
|
|
@@ -124,7 +127,7 @@ popsicle/
|
|
| 124 |
segmentations.csv
|
| 125 |
objects.csv # name, url
|
| 126 |
bacterial/ # ✅ released — segmentation across 8 bacterial genera
|
| 127 |
-
yeast/ #
|
| 128 |
motorbench/ # 🚧 pending
|
| 129 |
```
|
| 130 |
|
|
@@ -158,8 +161,7 @@ methods that generalize across particle scale and morphology.
|
|
| 158 |
| `val` | DS-10445 | 121 | CZII Kaggle "public test" set |
|
| 159 |
| `test` | DS-10446 | 364 | CZII Kaggle "private test" set |
|
| 160 |
|
| 161 |
-
Picks are **restricted to the original ground-truth annotations**
|
| 162 |
-
(author: Ariana Peck). Community-derived submissions hosted on the same
|
| 163 |
CDP datasets — including Kaggle challenge entries — are intentionally
|
| 164 |
excluded so the benchmark scores against the canonical reference labels.
|
| 165 |
|
|
@@ -239,6 +241,69 @@ for seg in run.segmentations:
|
|
| 239 |
print(seg.name, seg.voxel_size)
|
| 240 |
```
|
| 241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
## Dataset Creation
|
| 243 |
|
| 244 |
### Curation Rationale
|
|
@@ -266,8 +331,8 @@ annotations become available rather than being a static challenge release
|
|
| 266 |
#### Data Collection and Processing
|
| 267 |
|
| 268 |
All source tomograms were acquired by tilt-series cryoET on vitrified
|
| 269 |
-
biological samples and reconstructed via standard
|
| 270 |
-
|
| 271 |
[AreTomo3](https://doi.org/10.1101/2025.03.11.642690) for motion
|
| 272 |
correction, tilt-series alignment, CTF correction, and weighted
|
| 273 |
back-projection, with optional self-supervised denoising via DenoisET.
|
|
@@ -276,28 +341,55 @@ pipeline and ingested into the portal as DS-10440/10445/10446.
|
|
| 276 |
|
| 277 |
#### Who are the source data producers?
|
| 278 |
|
| 279 |
-
|
| 280 |
-
|
| 281 |
-
|
| 282 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 283 |
|
| 284 |
### Annotations
|
| 285 |
|
| 286 |
#### Annotation process
|
| 287 |
|
| 288 |
-
|
| 289 |
-
macromolecules was prepared in lysate-like conditions and imaged by
|
| 290 |
-
cryoET;
|
| 291 |
-
classes per tomogram (Peck et al. 2025).
|
| 292 |
-
on the
|
| 293 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 294 |
|
| 295 |
#### Who are the annotators?
|
| 296 |
|
| 297 |
-
Phantom
|
| 298 |
-
|
| 299 |
-
|
| 300 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
|
| 302 |
#### Personal and Sensitive Information
|
| 303 |
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc0-1.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
pretty_name: POPSICLE
|
|
|
|
| 23 |
data_files: phantom/Croissant/runs.csv
|
| 24 |
- config_name: bacterial
|
| 25 |
data_files: bacterial/Croissant/runs.csv
|
| 26 |
+
- config_name: yeast
|
| 27 |
+
data_files: yeast/Croissant/runs.csv
|
| 28 |
---
|
| 29 |
|
| 30 |
# Dataset Card for POPSICLE
|
|
|
|
| 56 |
| Sub-benchmark | Task | Organism / sample | # train | # test | Status |
|
| 57 |
|---------------|---------------|--------------------------|--------:|-------:|-------------|
|
| 58 |
| **Phantom** | Localization | Lysate / synthetic | 7 | 485 | ✅ released |
|
| 59 |
+
| **Yeast** | Segmentation | *S. pombe* | 16 | 4 | ✅ released |
|
| 60 |
| **Bacterial** | Segmentation | Prokaryote (8 genera) | 68 | 12 | ✅ released |
|
| 61 |
| MotorBench | Localization | *V. cholerae* | 1,288 | 844 | 🚧 pending |
|
| 62 |
|
| 63 |
- **Curated by:** Authors of the POPSICLE benchmark paper (NeurIPS 2026, under review).
|
| 64 |
+
- **Shared by:** Biohub Dynamic Structural Biology / CryoET Data Portal community.
|
| 65 |
+
- **License:** **CC0-1.0** (Public Domain Dedication) — covers both the
|
| 66 |
+
manifests + CSVs in this repo and the underlying tomograms and
|
| 67 |
+
annotations on the CryoET Data Portal depositions linked above. No
|
| 68 |
+
attribution requirement; we still appreciate citation of the POPSICLE
|
| 69 |
+
paper and the benchmark publication.
|
| 70 |
|
| 71 |
### Dataset Sources
|
| 72 |
|
| 73 |
- **Repository:** https://huggingface.co/datasets/uermel/popsicle
|
| 74 |
+
- **Paper:** POPSICLE (NeurIPS 2026 submission).
|
| 75 |
- **Underlying datasets:**
|
| 76 |
[DS-10440](https://cryoetdataportal.czscience.com/datasets/10440) (Phantom train),
|
| 77 |
[DS-10445](https://cryoetdataportal.czscience.com/datasets/10445) (Phantom public test),
|
| 78 |
[DS-10446](https://cryoetdataportal.czscience.com/datasets/10446) (Phantom private test),
|
| 79 |
[CZCDP-10350](https://cryoetdataportal.czscience.com/depositions/10350) (Bacterial),
|
| 80 |
+
[CZCDP-10351](https://cryoetdataportal.czscience.com/depositions/10351) (Yeast; underlying tomograms in DS-10000/DS-10001),
|
| 81 |
[CZCDP-10332](https://cryoetdataportal.czscience.com/depositions/10332)/[CZCDP-10347](https://cryoetdataportal.czscience.com/depositions/10347) (MotorBench train/test).
|
| 82 |
- **Data Portal:** https://cryoetdataportal.czscience.com (Ermel et al.,
|
| 83 |
*Nature Methods* 21:2200–2202, 2024).
|
|
|
|
| 127 |
segmentations.csv
|
| 128 |
objects.csv # name, url
|
| 129 |
bacterial/ # ✅ released — segmentation across 8 bacterial genera
|
| 130 |
+
yeast/ # ✅ released — segmentation in *S. pombe*
|
| 131 |
motorbench/ # 🚧 pending
|
| 132 |
```
|
| 133 |
|
|
|
|
| 161 |
| `val` | DS-10445 | 121 | CZII Kaggle "public test" set |
|
| 162 |
| `test` | DS-10446 | 364 | CZII Kaggle "private test" set |
|
| 163 |
|
| 164 |
+
Picks are **restricted to the original ground-truth annotations**. Community-derived submissions hosted on the same
|
|
|
|
| 165 |
CDP datasets — including Kaggle challenge entries — are intentionally
|
| 166 |
excluded so the benchmark scores against the canonical reference labels.
|
| 167 |
|
|
|
|
| 241 |
print(seg.name, seg.voxel_size)
|
| 242 |
```
|
| 243 |
|
| 244 |
+
### Yeast — multi-class organelle segmentation
|
| 245 |
+
|
| 246 |
+
Dense voxel-wise segmentation of organelles in cryoET tomograms of
|
| 247 |
+
*Schizosaccharomyces pombe* (fission yeast) — a low-data, high-variance
|
| 248 |
+
eukaryotic counterpart to the well-sampled bacterial setting. 20
|
| 249 |
+
tomograms from the two CryoET Data Portal *S. pombe* datasets
|
| 250 |
+
([DS-10000](https://cryoetdataportal.czscience.com/datasets/10000),
|
| 251 |
+
[DS-10001](https://cryoetdataportal.czscience.com/datasets/10001)),
|
| 252 |
+
annotated with up to six organelle classes per run. Annotations are
|
| 253 |
+
sourced from the POPSICLE Yeast Segmentation Dataset deposition
|
| 254 |
+
([CZCDP-10351](https://cryoetdataportal.czscience.com/depositions/10351)).
|
| 255 |
+
|
| 256 |
+
| Class | Portal `object_name` |
|
| 257 |
+
|----------------------|-----------------------------|
|
| 258 |
+
| `cytoplasm` | `cytoplasm` |
|
| 259 |
+
| `nucleus` | `nucleus` |
|
| 260 |
+
| `nuclear-envelope` | `nuclear envelope` |
|
| 261 |
+
| `vesicle` | `vesicle` |
|
| 262 |
+
| `endomembrane` | `membrane-enclosed lumen` |
|
| 263 |
+
| `mitochondrion` | `mitochondrion` |
|
| 264 |
+
|
| 265 |
+
#### Splits
|
| 266 |
+
|
| 267 |
+
| Split | # tomograms | Notes |
|
| 268 |
+
|---------|------------:|-----------------------------------|
|
| 269 |
+
| `train` | 16 | All 16 from the user-supplied list|
|
| 270 |
+
| `test` | 4 | Held out from training |
|
| 271 |
+
|
| 272 |
+
Class distribution is uneven — large structures like `cytoplasm` are
|
| 273 |
+
present in nearly every run, while small organelles (`vesicle`,
|
| 274 |
+
`endomembrane`) are sparse and `mitochondrion` / `nucleus` are present
|
| 275 |
+
in only a subset:
|
| 276 |
+
|
| 277 |
+
| Class | Total runs |
|
| 278 |
+
|---------------------|-----------:|
|
| 279 |
+
| `cytoplasm` | 19 |
|
| 280 |
+
| `endomembrane` | 18 |
|
| 281 |
+
| `vesicle` | 18 |
|
| 282 |
+
| `mitochondrion` | 9 |
|
| 283 |
+
| `nuclear-envelope` | 8 |
|
| 284 |
+
| `nucleus` | 8 |
|
| 285 |
+
|
| 286 |
+
This unevenness — together with the small total tomogram count — makes
|
| 287 |
+
yeast a challenging low-data, class-imbalanced regime, complementary to
|
| 288 |
+
the better-sampled bacterial benchmark (paper §4, §6, Table 2).
|
| 289 |
+
|
| 290 |
+
#### Loading with copick
|
| 291 |
+
|
| 292 |
+
```python
|
| 293 |
+
import copick
|
| 294 |
+
|
| 295 |
+
root = copick.from_croissant(
|
| 296 |
+
"https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/metadata.json",
|
| 297 |
+
static_fs_args={"anon": True}, # public portal bucket
|
| 298 |
+
)
|
| 299 |
+
|
| 300 |
+
print(root.splits) # {'train': [16 names], 'test': [4 names]}
|
| 301 |
+
|
| 302 |
+
run = root.get_runs_in_split("train")[0]
|
| 303 |
+
for seg in run.segmentations:
|
| 304 |
+
print(seg.name, seg.voxel_size)
|
| 305 |
+
```
|
| 306 |
+
|
| 307 |
## Dataset Creation
|
| 308 |
|
| 309 |
### Curation Rationale
|
|
|
|
| 331 |
#### Data Collection and Processing
|
| 332 |
|
| 333 |
All source tomograms were acquired by tilt-series cryoET on vitrified
|
| 334 |
+
biological samples and reconstructed via standard pipelines
|
| 335 |
+
described on the CryoET Data Portal (paper §C). Biohub DSB uses
|
| 336 |
[AreTomo3](https://doi.org/10.1101/2025.03.11.642690) for motion
|
| 337 |
correction, tilt-series alignment, CTF correction, and weighted
|
| 338 |
back-projection, with optional self-supervised denoising via DenoisET.
|
|
|
|
| 341 |
|
| 342 |
#### Who are the source data producers?
|
| 343 |
|
| 344 |
+
Provenance differs per sub-benchmark and is summarized below. Authoritative
|
| 345 |
+
credits live on each portal deposition page linked under
|
| 346 |
+
[Dataset Sources](#dataset-sources).
|
| 347 |
+
|
| 348 |
+
| Sub-benchmark | Tomogram source | Annotation source |
|
| 349 |
+
|---------------|-----------------------------------------------------|----------------------------------------------------|
|
| 350 |
+
| **Phantom** | Acquired and reconstructed by Biohub DSB. | Created by Biohub DSB (Peck et al. 2025). |
|
| 351 |
+
| **Bacterial** | Contributed by external labs (8 bacterial genera). | **Created by the POPSICLE authors.** |
|
| 352 |
+
| **Yeast** | Acquired by external labs (de Teresa-Trueba et al.).| Curated/refined by Biohub DSB from prior releases. |
|
| 353 |
+
| **MotorBench**| Contributed by external labs (BYU + collaborators). | Contributed by the BYU Kaggle community . |
|
| 354 |
+
|
| 355 |
+
In short: POPSICLE produces some new annotations (Bacterial), curates
|
| 356 |
+
others (Yeast), and indexes the rest (Phantom, MotorBench) — none of
|
| 357 |
+
the underlying tomograms are re-acquired by this project.
|
| 358 |
|
| 359 |
### Annotations
|
| 360 |
|
| 361 |
#### Annotation process
|
| 362 |
|
| 363 |
+
- **Phantom**: a sample of recombinantly expressed and purified
|
| 364 |
+
macromolecules was prepared in lysate-like conditions and imaged by
|
| 365 |
+
cryoET; Biohub DSB annotators identified the 3D centers of all six
|
| 366 |
+
target classes per tomogram (Peck et al. 2025). Annotations are stored
|
| 367 |
+
on the portal as point picks.
|
| 368 |
+
- **Bacterial**: POPSICLE authors generated dense voxel-wise
|
| 369 |
+
segmentations across five compartment classes (cytosole, flagellum,
|
| 370 |
+
inclusion, intermembrane-space, membrane) on 80 cellular tomograms
|
| 371 |
+
from 8 bacterial genera, deposited as
|
| 372 |
+
[CZCDP-10350](https://cryoetdataportal.czscience.com/depositions/10350).
|
| 373 |
+
- **Yeast** *(pending)*: organelle segmentations originally produced by
|
| 374 |
+
de Teresa-Trueba et al. 2023; curated and standardized by Biohub DSB
|
| 375 |
+
for inclusion in POPSICLE.
|
| 376 |
+
- **MotorBench** *(pending)*: bacterial flagellar motor centers picked
|
| 377 |
+
by the BYU Kaggle competition contributors (training corpus expanded
|
| 378 |
+
by the first-place team and MIC-DKFZ); the held-out test set was
|
| 379 |
+
authored by Owens et al. 2025.
|
| 380 |
|
| 381 |
#### Who are the annotators?
|
| 382 |
|
| 383 |
+
- **Phantom**: Ariana Peck and Biohub DSB co-authors of Peck et al.
|
| 384 |
+
2025 (point picks restricted to author "Ariana Peck" in this release
|
| 385 |
+
to exclude community Kaggle submissions hosted on the same datasets).
|
| 386 |
+
- **Bacterial**: POPSICLE author team (CZCDP-10350 contributors —
|
| 387 |
+
Peck, Ermel, Schwartz, Owens, Carragher, Kimanius, and others).
|
| 388 |
+
- **Yeast** *(pending)*: de Teresa-Trueba et al. 2023, with curatorial
|
| 389 |
+
refinement by Biohub DSB.
|
| 390 |
+
- **MotorBench** *(pending)*: BYU competition + first-place team
|
| 391 |
+
(Brenden Artley) + MIC-DKFZ (Fabian Isensee et al.) for the training
|
| 392 |
+
corpus; Owens et al. 2025 (V. cholerae) for the held-out test set.
|
| 393 |
|
| 394 |
#### Personal and Sensitive Information
|
| 395 |
|
bacterial/Croissant/metadata.json
CHANGED
|
@@ -57,7 +57,7 @@
|
|
| 57 |
"description": "Multi-class compartment segmentation benchmark for bacterial cryo-electron tomograms, from the POPSICLE suite. 80 tomograms across 8 bacterial species (bdellovibrio, coxiella, hylemonella, hyphomonas, legionella, pseudomonas, salmonella, vibrio), split 68/12 train/test. Five segmentation classes: cytosole, flagellum, inclusion, intermembrane-space, membrane. Annotations sourced from CryoET Data Portal deposition CZCDP-10350 (POPSICLE Bacterial Segmentation Dataset).",
|
| 58 |
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 59 |
"version": "1.23.4",
|
| 60 |
-
"license": "
|
| 61 |
"citeAs": "POPSICLE: Benchmark Datasets for Segmentation and Localization in CryoET (NeurIPS 2026, under review). Bacterial annotations: CryoET Data Portal deposition CZCDP-10350.",
|
| 62 |
"datePublished": "2026-05-05",
|
| 63 |
"copick:baseUrl": "s3://cryoet-data-portal-public/",
|
|
|
|
| 57 |
"description": "Multi-class compartment segmentation benchmark for bacterial cryo-electron tomograms, from the POPSICLE suite. 80 tomograms across 8 bacterial species (bdellovibrio, coxiella, hylemonella, hyphomonas, legionella, pseudomonas, salmonella, vibrio), split 68/12 train/test. Five segmentation classes: cytosole, flagellum, inclusion, intermembrane-space, membrane. Annotations sourced from CryoET Data Portal deposition CZCDP-10350 (POPSICLE Bacterial Segmentation Dataset).",
|
| 58 |
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 59 |
"version": "1.23.4",
|
| 60 |
+
"license": "CC0-1.0",
|
| 61 |
"citeAs": "POPSICLE: Benchmark Datasets for Segmentation and Localization in CryoET (NeurIPS 2026, under review). Bacterial annotations: CryoET Data Portal deposition CZCDP-10350.",
|
| 62 |
"datePublished": "2026-05-05",
|
| 63 |
"copick:baseUrl": "s3://cryoet-data-portal-public/",
|
phantom/Croissant/metadata.json
CHANGED
|
@@ -57,7 +57,7 @@
|
|
| 57 |
"description": "Multi-class macromolecular localization benchmark from the POPSICLE suite. Aggregates the three CryoET Data Portal Phantom datasets (DS-10440 train, DS-10445 public test, DS-10446 private test) into a single Croissant manifest with train/val/test splits. Six particle classes spanning ~270-4300 kDa. Picks are restricted to original ground-truth annotations (Peck et al. 2025), excluding community Kaggle submissions hosted on the same datasets. https://doi.org/10.1038/s41592-025-02800-5.",
|
| 58 |
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 59 |
"version": "1.23.4",
|
| 60 |
-
"license": "
|
| 61 |
"citeAs": "Peck A et al. (2025). A realistic phantom dataset for benchmarking cryo-ET data annotation. Nature Methods 22:1819-1823. doi:10.1038/s41592-025-02800-5",
|
| 62 |
"datePublished": "2026-05-05",
|
| 63 |
"copick:baseUrl": "s3://cryoet-data-portal-public/",
|
|
|
|
| 57 |
"description": "Multi-class macromolecular localization benchmark from the POPSICLE suite. Aggregates the three CryoET Data Portal Phantom datasets (DS-10440 train, DS-10445 public test, DS-10446 private test) into a single Croissant manifest with train/val/test splits. Six particle classes spanning ~270-4300 kDa. Picks are restricted to original ground-truth annotations (Peck et al. 2025), excluding community Kaggle submissions hosted on the same datasets. https://doi.org/10.1038/s41592-025-02800-5.",
|
| 58 |
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 59 |
"version": "1.23.4",
|
| 60 |
+
"license": "CC0-1.0",
|
| 61 |
"citeAs": "Peck A et al. (2025). A realistic phantom dataset for benchmarking cryo-ET data annotation. Nature Methods 22:1819-1823. doi:10.1038/s41592-025-02800-5",
|
| 62 |
"datePublished": "2026-05-05",
|
| 63 |
"copick:baseUrl": "s3://cryoet-data-portal-public/",
|
yeast/Croissant/features.csv
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
run,voxel_size,tomo_type,feature_type,url
|
yeast/Croissant/meshes.csv
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
run,user_id,session_id,object_name,url,sha256
|
yeast/Croissant/metadata.json
ADDED
|
@@ -0,0 +1,1075 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"@context": {
|
| 3 |
+
"@language": "en",
|
| 4 |
+
"@vocab": "https://schema.org/",
|
| 5 |
+
"citeAs": "cr:citeAs",
|
| 6 |
+
"column": "cr:column",
|
| 7 |
+
"conformsTo": "dct:conformsTo",
|
| 8 |
+
"containedIn": "cr:containedIn",
|
| 9 |
+
"copick": "https://copick.org/schema/",
|
| 10 |
+
"copick:baseUrl": "copick:baseUrl",
|
| 11 |
+
"copick:config": {
|
| 12 |
+
"@id": "copick:config",
|
| 13 |
+
"@type": "@json"
|
| 14 |
+
},
|
| 15 |
+
"cr": "http://mlcommons.org/croissant/",
|
| 16 |
+
"rai": "http://mlcommons.org/croissant/RAI/",
|
| 17 |
+
"data": {
|
| 18 |
+
"@id": "cr:data",
|
| 19 |
+
"@type": "@json"
|
| 20 |
+
},
|
| 21 |
+
"dataType": {
|
| 22 |
+
"@id": "cr:dataType",
|
| 23 |
+
"@type": "@vocab"
|
| 24 |
+
},
|
| 25 |
+
"dct": "http://purl.org/dc/terms/",
|
| 26 |
+
"examples": {
|
| 27 |
+
"@id": "cr:examples",
|
| 28 |
+
"@type": "@json"
|
| 29 |
+
},
|
| 30 |
+
"extract": "cr:extract",
|
| 31 |
+
"field": "cr:field",
|
| 32 |
+
"fileProperty": "cr:fileProperty",
|
| 33 |
+
"fileObject": "cr:fileObject",
|
| 34 |
+
"fileSet": "cr:fileSet",
|
| 35 |
+
"format": "cr:format",
|
| 36 |
+
"includes": "cr:includes",
|
| 37 |
+
"isLiveDataset": "cr:isLiveDataset",
|
| 38 |
+
"jsonPath": "cr:jsonPath",
|
| 39 |
+
"key": "cr:key",
|
| 40 |
+
"md5": "cr:md5",
|
| 41 |
+
"parentField": "cr:parentField",
|
| 42 |
+
"path": "cr:path",
|
| 43 |
+
"recordSet": "cr:recordSet",
|
| 44 |
+
"references": "cr:references",
|
| 45 |
+
"regex": "cr:regex",
|
| 46 |
+
"repeated": "cr:repeated",
|
| 47 |
+
"replace": "cr:replace",
|
| 48 |
+
"samplingRate": "cr:samplingRate",
|
| 49 |
+
"sc": "https://schema.org/",
|
| 50 |
+
"separator": "cr:separator",
|
| 51 |
+
"source": "cr:source",
|
| 52 |
+
"subField": "cr:subField",
|
| 53 |
+
"transform": "cr:transform"
|
| 54 |
+
},
|
| 55 |
+
"@type": "sc:Dataset",
|
| 56 |
+
"name": "POPSICLE Yeast Segmentation",
|
| 57 |
+
"description": "Multi-class organelle segmentation benchmark for Schizosaccharomyces pombe (fission yeast) cryo-electron tomograms, from the POPSICLE suite. 20 tomograms drawn from CryoET Data Portal datasets DS-10000 and DS-10001, split 16/4 train/test. Six segmentation classes: cytoplasm, nucleus, nuclear-envelope, vesicle, endomembrane, mitochondrion. Annotations sourced from deposition CZCDP-10351 (POPSICLE Yeast Segmentation Dataset).",
|
| 58 |
+
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 59 |
+
"version": "1.23.4",
|
| 60 |
+
"license": "CC0-1.0",
|
| 61 |
+
"citeAs": "POPSICLE: Benchmark Datasets for Segmentation and Localization in CryoET (NeurIPS 2026, under review). Yeast annotations: CryoET Data Portal deposition CZCDP-10351.",
|
| 62 |
+
"datePublished": "2026-05-05",
|
| 63 |
+
"copick:baseUrl": "s3://cryoet-data-portal-public/",
|
| 64 |
+
"copick:config": {
|
| 65 |
+
"name": "CZ cryoET Data Portal Dataset",
|
| 66 |
+
"description": "This copick project contains data from datasets [10000, 10001].",
|
| 67 |
+
"version": "1.23.4",
|
| 68 |
+
"user_id": null,
|
| 69 |
+
"session_id": null,
|
| 70 |
+
"pickable_objects": [
|
| 71 |
+
{
|
| 72 |
+
"name": "golgi-apparatus",
|
| 73 |
+
"is_particle": false,
|
| 74 |
+
"label": 1,
|
| 75 |
+
"color": [
|
| 76 |
+
0,
|
| 77 |
+
255,
|
| 78 |
+
0,
|
| 79 |
+
255
|
| 80 |
+
],
|
| 81 |
+
"emdb_id": "EMD-14412",
|
| 82 |
+
"pdb_id": null,
|
| 83 |
+
"identifier": "GO:0005794",
|
| 84 |
+
"map_threshold": null,
|
| 85 |
+
"radius": 50.0,
|
| 86 |
+
"metadata": {}
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"name": "vesicle",
|
| 90 |
+
"is_particle": false,
|
| 91 |
+
"label": 2,
|
| 92 |
+
"color": [
|
| 93 |
+
255,
|
| 94 |
+
0,
|
| 95 |
+
255,
|
| 96 |
+
255
|
| 97 |
+
],
|
| 98 |
+
"emdb_id": null,
|
| 99 |
+
"pdb_id": null,
|
| 100 |
+
"identifier": "GO:0031982",
|
| 101 |
+
"map_threshold": null,
|
| 102 |
+
"radius": 50.0,
|
| 103 |
+
"metadata": {}
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"name": "nuclear-envelope",
|
| 107 |
+
"is_particle": false,
|
| 108 |
+
"label": 3,
|
| 109 |
+
"color": [
|
| 110 |
+
0,
|
| 111 |
+
127,
|
| 112 |
+
255,
|
| 113 |
+
255
|
| 114 |
+
],
|
| 115 |
+
"emdb_id": null,
|
| 116 |
+
"pdb_id": null,
|
| 117 |
+
"identifier": "GO:0005635",
|
| 118 |
+
"map_threshold": null,
|
| 119 |
+
"radius": 50.0,
|
| 120 |
+
"metadata": {}
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"name": "nucleus",
|
| 124 |
+
"is_particle": false,
|
| 125 |
+
"label": 4,
|
| 126 |
+
"color": [
|
| 127 |
+
255,
|
| 128 |
+
127,
|
| 129 |
+
0,
|
| 130 |
+
255
|
| 131 |
+
],
|
| 132 |
+
"emdb_id": null,
|
| 133 |
+
"pdb_id": null,
|
| 134 |
+
"identifier": "GO:0005634",
|
| 135 |
+
"map_threshold": null,
|
| 136 |
+
"radius": 50.0,
|
| 137 |
+
"metadata": {}
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"name": "endoplasmic-reticulum",
|
| 141 |
+
"is_particle": false,
|
| 142 |
+
"label": 5,
|
| 143 |
+
"color": [
|
| 144 |
+
127,
|
| 145 |
+
191,
|
| 146 |
+
127,
|
| 147 |
+
255
|
| 148 |
+
],
|
| 149 |
+
"emdb_id": "EMD-14412",
|
| 150 |
+
"pdb_id": null,
|
| 151 |
+
"identifier": "GO:0005783",
|
| 152 |
+
"map_threshold": null,
|
| 153 |
+
"radius": 50.0,
|
| 154 |
+
"metadata": {}
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"name": "lipid-droplet",
|
| 158 |
+
"is_particle": false,
|
| 159 |
+
"label": 6,
|
| 160 |
+
"color": [
|
| 161 |
+
94,
|
| 162 |
+
6,
|
| 163 |
+
164,
|
| 164 |
+
255
|
| 165 |
+
],
|
| 166 |
+
"emdb_id": "EMD-14412",
|
| 167 |
+
"pdb_id": null,
|
| 168 |
+
"identifier": "GO:0005811",
|
| 169 |
+
"map_threshold": null,
|
| 170 |
+
"radius": 50.0,
|
| 171 |
+
"metadata": {}
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"name": "mitochondrion",
|
| 175 |
+
"is_particle": false,
|
| 176 |
+
"label": 7,
|
| 177 |
+
"color": [
|
| 178 |
+
233,
|
| 179 |
+
1,
|
| 180 |
+
56,
|
| 181 |
+
255
|
| 182 |
+
],
|
| 183 |
+
"emdb_id": null,
|
| 184 |
+
"pdb_id": null,
|
| 185 |
+
"identifier": "GO:0005739",
|
| 186 |
+
"map_threshold": null,
|
| 187 |
+
"radius": 50.0,
|
| 188 |
+
"metadata": {}
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"name": "vacuole",
|
| 192 |
+
"is_particle": false,
|
| 193 |
+
"label": 8,
|
| 194 |
+
"color": [
|
| 195 |
+
211,
|
| 196 |
+
254,
|
| 197 |
+
9,
|
| 198 |
+
255
|
| 199 |
+
],
|
| 200 |
+
"emdb_id": "EMD-14412",
|
| 201 |
+
"pdb_id": null,
|
| 202 |
+
"identifier": "GO:0005773",
|
| 203 |
+
"map_threshold": null,
|
| 204 |
+
"radius": 50.0,
|
| 205 |
+
"metadata": {}
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"name": "multivesicular-body",
|
| 209 |
+
"is_particle": false,
|
| 210 |
+
"label": 9,
|
| 211 |
+
"color": [
|
| 212 |
+
0,
|
| 213 |
+
255,
|
| 214 |
+
255,
|
| 215 |
+
255
|
| 216 |
+
],
|
| 217 |
+
"emdb_id": "EMD-14412",
|
| 218 |
+
"pdb_id": null,
|
| 219 |
+
"identifier": "GO:0005771",
|
| 220 |
+
"map_threshold": null,
|
| 221 |
+
"radius": 50.0,
|
| 222 |
+
"metadata": {}
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"name": "fatty-acid-synthase-complex",
|
| 226 |
+
"is_particle": true,
|
| 227 |
+
"label": 10,
|
| 228 |
+
"color": [
|
| 229 |
+
193,
|
| 230 |
+
119,
|
| 231 |
+
247,
|
| 232 |
+
255
|
| 233 |
+
],
|
| 234 |
+
"emdb_id": "EMD-14412",
|
| 235 |
+
"pdb_id": null,
|
| 236 |
+
"identifier": "GO:0005835",
|
| 237 |
+
"map_threshold": null,
|
| 238 |
+
"radius": 50.0,
|
| 239 |
+
"metadata": {}
|
| 240 |
+
},
|
| 241 |
+
{
|
| 242 |
+
"name": "membrane",
|
| 243 |
+
"is_particle": false,
|
| 244 |
+
"label": 11,
|
| 245 |
+
"color": [
|
| 246 |
+
3,
|
| 247 |
+
112,
|
| 248 |
+
74,
|
| 249 |
+
255
|
| 250 |
+
],
|
| 251 |
+
"emdb_id": null,
|
| 252 |
+
"pdb_id": null,
|
| 253 |
+
"identifier": "GO:0016020",
|
| 254 |
+
"map_threshold": null,
|
| 255 |
+
"radius": 50.0,
|
| 256 |
+
"metadata": {}
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"name": "endomembrane",
|
| 260 |
+
"is_particle": false,
|
| 261 |
+
"label": 12,
|
| 262 |
+
"color": [
|
| 263 |
+
128,
|
| 264 |
+
66,
|
| 265 |
+
8,
|
| 266 |
+
255
|
| 267 |
+
],
|
| 268 |
+
"emdb_id": null,
|
| 269 |
+
"pdb_id": null,
|
| 270 |
+
"identifier": "GO:0031974",
|
| 271 |
+
"map_threshold": null,
|
| 272 |
+
"radius": 50.0,
|
| 273 |
+
"metadata": {
|
| 274 |
+
"portal_original_name": "membrane-enclosed-lumen"
|
| 275 |
+
}
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"name": "microtubule",
|
| 279 |
+
"is_particle": false,
|
| 280 |
+
"label": 13,
|
| 281 |
+
"color": [
|
| 282 |
+
0,
|
| 283 |
+
255,
|
| 284 |
+
127,
|
| 285 |
+
255
|
| 286 |
+
],
|
| 287 |
+
"emdb_id": "EMD-14412",
|
| 288 |
+
"pdb_id": null,
|
| 289 |
+
"identifier": "GO:0005874",
|
| 290 |
+
"map_threshold": null,
|
| 291 |
+
"radius": 50.0,
|
| 292 |
+
"metadata": {}
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"name": "cytosolic-ribosome",
|
| 296 |
+
"is_particle": true,
|
| 297 |
+
"label": 14,
|
| 298 |
+
"color": [
|
| 299 |
+
0,
|
| 300 |
+
0,
|
| 301 |
+
255,
|
| 302 |
+
255
|
| 303 |
+
],
|
| 304 |
+
"emdb_id": "EMD-14412",
|
| 305 |
+
"pdb_id": null,
|
| 306 |
+
"identifier": "GO:0022626",
|
| 307 |
+
"map_threshold": null,
|
| 308 |
+
"radius": 50.0,
|
| 309 |
+
"metadata": {}
|
| 310 |
+
},
|
| 311 |
+
{
|
| 312 |
+
"name": "cytoplasm",
|
| 313 |
+
"is_particle": false,
|
| 314 |
+
"label": 15,
|
| 315 |
+
"color": [
|
| 316 |
+
250,
|
| 317 |
+
187,
|
| 318 |
+
117,
|
| 319 |
+
255
|
| 320 |
+
],
|
| 321 |
+
"emdb_id": null,
|
| 322 |
+
"pdb_id": null,
|
| 323 |
+
"identifier": "GO:0005737",
|
| 324 |
+
"map_threshold": null,
|
| 325 |
+
"radius": 50.0,
|
| 326 |
+
"metadata": {}
|
| 327 |
+
}
|
| 328 |
+
]
|
| 329 |
+
},
|
| 330 |
+
"distribution": [
|
| 331 |
+
{
|
| 332 |
+
"@type": "cr:FileObject",
|
| 333 |
+
"@id": "runs-csv",
|
| 334 |
+
"name": "runs-csv",
|
| 335 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/runs.csv",
|
| 336 |
+
"encodingFormat": "text/csv",
|
| 337 |
+
"sha256": "23a770615566b4028652dfe47b00e818c6cb324576ed4cedcc461c5da763882a"
|
| 338 |
+
},
|
| 339 |
+
{
|
| 340 |
+
"@type": "cr:FileObject",
|
| 341 |
+
"@id": "voxel-spacings-csv",
|
| 342 |
+
"name": "voxel-spacings-csv",
|
| 343 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/voxel_spacings.csv",
|
| 344 |
+
"encodingFormat": "text/csv",
|
| 345 |
+
"sha256": "f9075077c6a80d3df684ab0785c8bd1bdf69fd25c40b1b4c207fa3bd0e86147b"
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"@type": "cr:FileObject",
|
| 349 |
+
"@id": "tomograms-csv",
|
| 350 |
+
"name": "tomograms-csv",
|
| 351 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/tomograms.csv",
|
| 352 |
+
"encodingFormat": "text/csv",
|
| 353 |
+
"sha256": "44a330872b4bbfd5a6ef3ca43025cfdcbac58cf320d8c37d8cc5633db1d54e1a"
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"@type": "cr:FileObject",
|
| 357 |
+
"@id": "features-csv",
|
| 358 |
+
"name": "features-csv",
|
| 359 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/features.csv",
|
| 360 |
+
"encodingFormat": "text/csv",
|
| 361 |
+
"sha256": "c9d12b09cd878090929fa4e0909e2459257d7b0ec796848d62a90a275d3874ca"
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"@type": "cr:FileObject",
|
| 365 |
+
"@id": "picks-csv",
|
| 366 |
+
"name": "picks-csv",
|
| 367 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/picks.csv",
|
| 368 |
+
"encodingFormat": "text/csv",
|
| 369 |
+
"sha256": "7d8e2df67bbd69386d88417a04eb08a0cad43a87af0c1cc627e945ce37341675"
|
| 370 |
+
},
|
| 371 |
+
{
|
| 372 |
+
"@type": "cr:FileObject",
|
| 373 |
+
"@id": "meshes-csv",
|
| 374 |
+
"name": "meshes-csv",
|
| 375 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/meshes.csv",
|
| 376 |
+
"encodingFormat": "text/csv",
|
| 377 |
+
"sha256": "236509be0c96d8bc5d7dd79d778dc0343cf79aa0af56ec8b05bfe34c544873e9"
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"@type": "cr:FileObject",
|
| 381 |
+
"@id": "segmentations-csv",
|
| 382 |
+
"name": "segmentations-csv",
|
| 383 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/segmentations.csv",
|
| 384 |
+
"encodingFormat": "text/csv",
|
| 385 |
+
"sha256": "d3c608a5da0db651b488adc86f6a8f849c0f0723a8b99cbe68d120eac13c720c"
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"@type": "cr:FileObject",
|
| 389 |
+
"@id": "objects-csv",
|
| 390 |
+
"name": "objects-csv",
|
| 391 |
+
"contentUrl": "https://huggingface.co/datasets/uermel/popsicle/resolve/main/yeast/Croissant/objects.csv",
|
| 392 |
+
"encodingFormat": "text/csv",
|
| 393 |
+
"sha256": "86c3b172779c26cb56e1d64eaf039c5bb3e3d7e70977ff2da537a84cbb71a485"
|
| 394 |
+
}
|
| 395 |
+
],
|
| 396 |
+
"recordSet": [
|
| 397 |
+
{
|
| 398 |
+
"@type": "cr:RecordSet",
|
| 399 |
+
"@id": "copick/runs",
|
| 400 |
+
"name": "runs",
|
| 401 |
+
"field": [
|
| 402 |
+
{
|
| 403 |
+
"@type": "cr:Field",
|
| 404 |
+
"@id": "copick/runs/name",
|
| 405 |
+
"dataType": "sc:Text",
|
| 406 |
+
"source": {
|
| 407 |
+
"fileObject": {
|
| 408 |
+
"@id": "runs-csv"
|
| 409 |
+
},
|
| 410 |
+
"extract": {
|
| 411 |
+
"column": "name"
|
| 412 |
+
}
|
| 413 |
+
}
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"@type": "cr:Field",
|
| 417 |
+
"@id": "copick/runs/portal_run_id",
|
| 418 |
+
"dataType": "sc:Text",
|
| 419 |
+
"source": {
|
| 420 |
+
"fileObject": {
|
| 421 |
+
"@id": "runs-csv"
|
| 422 |
+
},
|
| 423 |
+
"extract": {
|
| 424 |
+
"column": "portal_run_id"
|
| 425 |
+
}
|
| 426 |
+
}
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"@type": "cr:Field",
|
| 430 |
+
"@id": "copick/runs/split",
|
| 431 |
+
"dataType": "sc:Text",
|
| 432 |
+
"source": {
|
| 433 |
+
"fileObject": {
|
| 434 |
+
"@id": "runs-csv"
|
| 435 |
+
},
|
| 436 |
+
"extract": {
|
| 437 |
+
"column": "split"
|
| 438 |
+
}
|
| 439 |
+
},
|
| 440 |
+
"references": {
|
| 441 |
+
"field": {
|
| 442 |
+
"@id": "copick/splits/name"
|
| 443 |
+
}
|
| 444 |
+
}
|
| 445 |
+
}
|
| 446 |
+
]
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"@type": "cr:RecordSet",
|
| 450 |
+
"@id": "copick/voxel_spacings",
|
| 451 |
+
"name": "voxel_spacings",
|
| 452 |
+
"field": [
|
| 453 |
+
{
|
| 454 |
+
"@type": "cr:Field",
|
| 455 |
+
"@id": "copick/voxel_spacings/run",
|
| 456 |
+
"dataType": "sc:Text",
|
| 457 |
+
"source": {
|
| 458 |
+
"fileObject": {
|
| 459 |
+
"@id": "voxel-spacings-csv"
|
| 460 |
+
},
|
| 461 |
+
"extract": {
|
| 462 |
+
"column": "run"
|
| 463 |
+
}
|
| 464 |
+
}
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"@type": "cr:Field",
|
| 468 |
+
"@id": "copick/voxel_spacings/voxel_size",
|
| 469 |
+
"dataType": "sc:Float",
|
| 470 |
+
"source": {
|
| 471 |
+
"fileObject": {
|
| 472 |
+
"@id": "voxel-spacings-csv"
|
| 473 |
+
},
|
| 474 |
+
"extract": {
|
| 475 |
+
"column": "voxel_size"
|
| 476 |
+
}
|
| 477 |
+
}
|
| 478 |
+
}
|
| 479 |
+
]
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"@type": "cr:RecordSet",
|
| 483 |
+
"@id": "copick/tomograms",
|
| 484 |
+
"name": "tomograms",
|
| 485 |
+
"field": [
|
| 486 |
+
{
|
| 487 |
+
"@type": "cr:Field",
|
| 488 |
+
"@id": "copick/tomograms/run",
|
| 489 |
+
"dataType": "sc:Text",
|
| 490 |
+
"source": {
|
| 491 |
+
"fileObject": {
|
| 492 |
+
"@id": "tomograms-csv"
|
| 493 |
+
},
|
| 494 |
+
"extract": {
|
| 495 |
+
"column": "run"
|
| 496 |
+
}
|
| 497 |
+
}
|
| 498 |
+
},
|
| 499 |
+
{
|
| 500 |
+
"@type": "cr:Field",
|
| 501 |
+
"@id": "copick/tomograms/voxel_size",
|
| 502 |
+
"dataType": "sc:Float",
|
| 503 |
+
"source": {
|
| 504 |
+
"fileObject": {
|
| 505 |
+
"@id": "tomograms-csv"
|
| 506 |
+
},
|
| 507 |
+
"extract": {
|
| 508 |
+
"column": "voxel_size"
|
| 509 |
+
}
|
| 510 |
+
}
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"@type": "cr:Field",
|
| 514 |
+
"@id": "copick/tomograms/tomo_type",
|
| 515 |
+
"dataType": "sc:Text",
|
| 516 |
+
"source": {
|
| 517 |
+
"fileObject": {
|
| 518 |
+
"@id": "tomograms-csv"
|
| 519 |
+
},
|
| 520 |
+
"extract": {
|
| 521 |
+
"column": "tomo_type"
|
| 522 |
+
}
|
| 523 |
+
}
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"@type": "cr:Field",
|
| 527 |
+
"@id": "copick/tomograms/url",
|
| 528 |
+
"dataType": "sc:Text",
|
| 529 |
+
"source": {
|
| 530 |
+
"fileObject": {
|
| 531 |
+
"@id": "tomograms-csv"
|
| 532 |
+
},
|
| 533 |
+
"extract": {
|
| 534 |
+
"column": "url"
|
| 535 |
+
}
|
| 536 |
+
}
|
| 537 |
+
},
|
| 538 |
+
{
|
| 539 |
+
"@type": "cr:Field",
|
| 540 |
+
"@id": "copick/tomograms/portal_tomo_type",
|
| 541 |
+
"dataType": "sc:Text",
|
| 542 |
+
"source": {
|
| 543 |
+
"fileObject": {
|
| 544 |
+
"@id": "tomograms-csv"
|
| 545 |
+
},
|
| 546 |
+
"extract": {
|
| 547 |
+
"column": "portal_tomo_type"
|
| 548 |
+
}
|
| 549 |
+
}
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"@type": "cr:Field",
|
| 553 |
+
"@id": "copick/tomograms/portal_tomogram_id",
|
| 554 |
+
"dataType": "sc:Text",
|
| 555 |
+
"source": {
|
| 556 |
+
"fileObject": {
|
| 557 |
+
"@id": "tomograms-csv"
|
| 558 |
+
},
|
| 559 |
+
"extract": {
|
| 560 |
+
"column": "portal_tomogram_id"
|
| 561 |
+
}
|
| 562 |
+
}
|
| 563 |
+
}
|
| 564 |
+
]
|
| 565 |
+
},
|
| 566 |
+
{
|
| 567 |
+
"@type": "cr:RecordSet",
|
| 568 |
+
"@id": "copick/features",
|
| 569 |
+
"name": "features",
|
| 570 |
+
"field": [
|
| 571 |
+
{
|
| 572 |
+
"@type": "cr:Field",
|
| 573 |
+
"@id": "copick/features/run",
|
| 574 |
+
"dataType": "sc:Text",
|
| 575 |
+
"source": {
|
| 576 |
+
"fileObject": {
|
| 577 |
+
"@id": "features-csv"
|
| 578 |
+
},
|
| 579 |
+
"extract": {
|
| 580 |
+
"column": "run"
|
| 581 |
+
}
|
| 582 |
+
}
|
| 583 |
+
},
|
| 584 |
+
{
|
| 585 |
+
"@type": "cr:Field",
|
| 586 |
+
"@id": "copick/features/voxel_size",
|
| 587 |
+
"dataType": "sc:Float",
|
| 588 |
+
"source": {
|
| 589 |
+
"fileObject": {
|
| 590 |
+
"@id": "features-csv"
|
| 591 |
+
},
|
| 592 |
+
"extract": {
|
| 593 |
+
"column": "voxel_size"
|
| 594 |
+
}
|
| 595 |
+
}
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"@type": "cr:Field",
|
| 599 |
+
"@id": "copick/features/tomo_type",
|
| 600 |
+
"dataType": "sc:Text",
|
| 601 |
+
"source": {
|
| 602 |
+
"fileObject": {
|
| 603 |
+
"@id": "features-csv"
|
| 604 |
+
},
|
| 605 |
+
"extract": {
|
| 606 |
+
"column": "tomo_type"
|
| 607 |
+
}
|
| 608 |
+
}
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"@type": "cr:Field",
|
| 612 |
+
"@id": "copick/features/feature_type",
|
| 613 |
+
"dataType": "sc:Text",
|
| 614 |
+
"source": {
|
| 615 |
+
"fileObject": {
|
| 616 |
+
"@id": "features-csv"
|
| 617 |
+
},
|
| 618 |
+
"extract": {
|
| 619 |
+
"column": "feature_type"
|
| 620 |
+
}
|
| 621 |
+
}
|
| 622 |
+
},
|
| 623 |
+
{
|
| 624 |
+
"@type": "cr:Field",
|
| 625 |
+
"@id": "copick/features/url",
|
| 626 |
+
"dataType": "sc:Text",
|
| 627 |
+
"source": {
|
| 628 |
+
"fileObject": {
|
| 629 |
+
"@id": "features-csv"
|
| 630 |
+
},
|
| 631 |
+
"extract": {
|
| 632 |
+
"column": "url"
|
| 633 |
+
}
|
| 634 |
+
}
|
| 635 |
+
}
|
| 636 |
+
]
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"@type": "cr:RecordSet",
|
| 640 |
+
"@id": "copick/picks",
|
| 641 |
+
"name": "picks",
|
| 642 |
+
"field": [
|
| 643 |
+
{
|
| 644 |
+
"@type": "cr:Field",
|
| 645 |
+
"@id": "copick/picks/run",
|
| 646 |
+
"dataType": "sc:Text",
|
| 647 |
+
"source": {
|
| 648 |
+
"fileObject": {
|
| 649 |
+
"@id": "picks-csv"
|
| 650 |
+
},
|
| 651 |
+
"extract": {
|
| 652 |
+
"column": "run"
|
| 653 |
+
}
|
| 654 |
+
}
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"@type": "cr:Field",
|
| 658 |
+
"@id": "copick/picks/user_id",
|
| 659 |
+
"dataType": "sc:Text",
|
| 660 |
+
"source": {
|
| 661 |
+
"fileObject": {
|
| 662 |
+
"@id": "picks-csv"
|
| 663 |
+
},
|
| 664 |
+
"extract": {
|
| 665 |
+
"column": "user_id"
|
| 666 |
+
}
|
| 667 |
+
}
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"@type": "cr:Field",
|
| 671 |
+
"@id": "copick/picks/session_id",
|
| 672 |
+
"dataType": "sc:Text",
|
| 673 |
+
"source": {
|
| 674 |
+
"fileObject": {
|
| 675 |
+
"@id": "picks-csv"
|
| 676 |
+
},
|
| 677 |
+
"extract": {
|
| 678 |
+
"column": "session_id"
|
| 679 |
+
}
|
| 680 |
+
}
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"@type": "cr:Field",
|
| 684 |
+
"@id": "copick/picks/object_name",
|
| 685 |
+
"dataType": "sc:Text",
|
| 686 |
+
"source": {
|
| 687 |
+
"fileObject": {
|
| 688 |
+
"@id": "picks-csv"
|
| 689 |
+
},
|
| 690 |
+
"extract": {
|
| 691 |
+
"column": "object_name"
|
| 692 |
+
}
|
| 693 |
+
}
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"@type": "cr:Field",
|
| 697 |
+
"@id": "copick/picks/url",
|
| 698 |
+
"dataType": "sc:Text",
|
| 699 |
+
"source": {
|
| 700 |
+
"fileObject": {
|
| 701 |
+
"@id": "picks-csv"
|
| 702 |
+
},
|
| 703 |
+
"extract": {
|
| 704 |
+
"column": "url"
|
| 705 |
+
}
|
| 706 |
+
}
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"@type": "cr:Field",
|
| 710 |
+
"@id": "copick/picks/sha256",
|
| 711 |
+
"dataType": "sc:Text",
|
| 712 |
+
"source": {
|
| 713 |
+
"fileObject": {
|
| 714 |
+
"@id": "picks-csv"
|
| 715 |
+
},
|
| 716 |
+
"extract": {
|
| 717 |
+
"column": "sha256"
|
| 718 |
+
}
|
| 719 |
+
}
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"@type": "cr:Field",
|
| 723 |
+
"@id": "copick/picks/portal_object_name",
|
| 724 |
+
"dataType": "sc:Text",
|
| 725 |
+
"source": {
|
| 726 |
+
"fileObject": {
|
| 727 |
+
"@id": "picks-csv"
|
| 728 |
+
},
|
| 729 |
+
"extract": {
|
| 730 |
+
"column": "portal_object_name"
|
| 731 |
+
}
|
| 732 |
+
}
|
| 733 |
+
},
|
| 734 |
+
{
|
| 735 |
+
"@type": "cr:Field",
|
| 736 |
+
"@id": "copick/picks/portal_session_id",
|
| 737 |
+
"dataType": "sc:Text",
|
| 738 |
+
"source": {
|
| 739 |
+
"fileObject": {
|
| 740 |
+
"@id": "picks-csv"
|
| 741 |
+
},
|
| 742 |
+
"extract": {
|
| 743 |
+
"column": "portal_session_id"
|
| 744 |
+
}
|
| 745 |
+
}
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"@type": "cr:Field",
|
| 749 |
+
"@id": "copick/picks/portal_annotation_id",
|
| 750 |
+
"dataType": "sc:Text",
|
| 751 |
+
"source": {
|
| 752 |
+
"fileObject": {
|
| 753 |
+
"@id": "picks-csv"
|
| 754 |
+
},
|
| 755 |
+
"extract": {
|
| 756 |
+
"column": "portal_annotation_id"
|
| 757 |
+
}
|
| 758 |
+
}
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"@type": "cr:Field",
|
| 762 |
+
"@id": "copick/picks/portal_annotation_file_id",
|
| 763 |
+
"dataType": "sc:Text",
|
| 764 |
+
"source": {
|
| 765 |
+
"fileObject": {
|
| 766 |
+
"@id": "picks-csv"
|
| 767 |
+
},
|
| 768 |
+
"extract": {
|
| 769 |
+
"column": "portal_annotation_file_id"
|
| 770 |
+
}
|
| 771 |
+
}
|
| 772 |
+
}
|
| 773 |
+
]
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"@type": "cr:RecordSet",
|
| 777 |
+
"@id": "copick/meshes",
|
| 778 |
+
"name": "meshes",
|
| 779 |
+
"field": [
|
| 780 |
+
{
|
| 781 |
+
"@type": "cr:Field",
|
| 782 |
+
"@id": "copick/meshes/run",
|
| 783 |
+
"dataType": "sc:Text",
|
| 784 |
+
"source": {
|
| 785 |
+
"fileObject": {
|
| 786 |
+
"@id": "meshes-csv"
|
| 787 |
+
},
|
| 788 |
+
"extract": {
|
| 789 |
+
"column": "run"
|
| 790 |
+
}
|
| 791 |
+
}
|
| 792 |
+
},
|
| 793 |
+
{
|
| 794 |
+
"@type": "cr:Field",
|
| 795 |
+
"@id": "copick/meshes/user_id",
|
| 796 |
+
"dataType": "sc:Text",
|
| 797 |
+
"source": {
|
| 798 |
+
"fileObject": {
|
| 799 |
+
"@id": "meshes-csv"
|
| 800 |
+
},
|
| 801 |
+
"extract": {
|
| 802 |
+
"column": "user_id"
|
| 803 |
+
}
|
| 804 |
+
}
|
| 805 |
+
},
|
| 806 |
+
{
|
| 807 |
+
"@type": "cr:Field",
|
| 808 |
+
"@id": "copick/meshes/session_id",
|
| 809 |
+
"dataType": "sc:Text",
|
| 810 |
+
"source": {
|
| 811 |
+
"fileObject": {
|
| 812 |
+
"@id": "meshes-csv"
|
| 813 |
+
},
|
| 814 |
+
"extract": {
|
| 815 |
+
"column": "session_id"
|
| 816 |
+
}
|
| 817 |
+
}
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"@type": "cr:Field",
|
| 821 |
+
"@id": "copick/meshes/object_name",
|
| 822 |
+
"dataType": "sc:Text",
|
| 823 |
+
"source": {
|
| 824 |
+
"fileObject": {
|
| 825 |
+
"@id": "meshes-csv"
|
| 826 |
+
},
|
| 827 |
+
"extract": {
|
| 828 |
+
"column": "object_name"
|
| 829 |
+
}
|
| 830 |
+
}
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"@type": "cr:Field",
|
| 834 |
+
"@id": "copick/meshes/url",
|
| 835 |
+
"dataType": "sc:Text",
|
| 836 |
+
"source": {
|
| 837 |
+
"fileObject": {
|
| 838 |
+
"@id": "meshes-csv"
|
| 839 |
+
},
|
| 840 |
+
"extract": {
|
| 841 |
+
"column": "url"
|
| 842 |
+
}
|
| 843 |
+
}
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"@type": "cr:Field",
|
| 847 |
+
"@id": "copick/meshes/sha256",
|
| 848 |
+
"dataType": "sc:Text",
|
| 849 |
+
"source": {
|
| 850 |
+
"fileObject": {
|
| 851 |
+
"@id": "meshes-csv"
|
| 852 |
+
},
|
| 853 |
+
"extract": {
|
| 854 |
+
"column": "sha256"
|
| 855 |
+
}
|
| 856 |
+
}
|
| 857 |
+
}
|
| 858 |
+
]
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"@type": "cr:RecordSet",
|
| 862 |
+
"@id": "copick/segmentations",
|
| 863 |
+
"name": "segmentations",
|
| 864 |
+
"field": [
|
| 865 |
+
{
|
| 866 |
+
"@type": "cr:Field",
|
| 867 |
+
"@id": "copick/segmentations/run",
|
| 868 |
+
"dataType": "sc:Text",
|
| 869 |
+
"source": {
|
| 870 |
+
"fileObject": {
|
| 871 |
+
"@id": "segmentations-csv"
|
| 872 |
+
},
|
| 873 |
+
"extract": {
|
| 874 |
+
"column": "run"
|
| 875 |
+
}
|
| 876 |
+
}
|
| 877 |
+
},
|
| 878 |
+
{
|
| 879 |
+
"@type": "cr:Field",
|
| 880 |
+
"@id": "copick/segmentations/voxel_size",
|
| 881 |
+
"dataType": "sc:Float",
|
| 882 |
+
"source": {
|
| 883 |
+
"fileObject": {
|
| 884 |
+
"@id": "segmentations-csv"
|
| 885 |
+
},
|
| 886 |
+
"extract": {
|
| 887 |
+
"column": "voxel_size"
|
| 888 |
+
}
|
| 889 |
+
}
|
| 890 |
+
},
|
| 891 |
+
{
|
| 892 |
+
"@type": "cr:Field",
|
| 893 |
+
"@id": "copick/segmentations/user_id",
|
| 894 |
+
"dataType": "sc:Text",
|
| 895 |
+
"source": {
|
| 896 |
+
"fileObject": {
|
| 897 |
+
"@id": "segmentations-csv"
|
| 898 |
+
},
|
| 899 |
+
"extract": {
|
| 900 |
+
"column": "user_id"
|
| 901 |
+
}
|
| 902 |
+
}
|
| 903 |
+
},
|
| 904 |
+
{
|
| 905 |
+
"@type": "cr:Field",
|
| 906 |
+
"@id": "copick/segmentations/session_id",
|
| 907 |
+
"dataType": "sc:Text",
|
| 908 |
+
"source": {
|
| 909 |
+
"fileObject": {
|
| 910 |
+
"@id": "segmentations-csv"
|
| 911 |
+
},
|
| 912 |
+
"extract": {
|
| 913 |
+
"column": "session_id"
|
| 914 |
+
}
|
| 915 |
+
}
|
| 916 |
+
},
|
| 917 |
+
{
|
| 918 |
+
"@type": "cr:Field",
|
| 919 |
+
"@id": "copick/segmentations/name",
|
| 920 |
+
"dataType": "sc:Text",
|
| 921 |
+
"source": {
|
| 922 |
+
"fileObject": {
|
| 923 |
+
"@id": "segmentations-csv"
|
| 924 |
+
},
|
| 925 |
+
"extract": {
|
| 926 |
+
"column": "name"
|
| 927 |
+
}
|
| 928 |
+
}
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"@type": "cr:Field",
|
| 932 |
+
"@id": "copick/segmentations/is_multilabel",
|
| 933 |
+
"dataType": "sc:Boolean",
|
| 934 |
+
"source": {
|
| 935 |
+
"fileObject": {
|
| 936 |
+
"@id": "segmentations-csv"
|
| 937 |
+
},
|
| 938 |
+
"extract": {
|
| 939 |
+
"column": "is_multilabel"
|
| 940 |
+
}
|
| 941 |
+
}
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"@type": "cr:Field",
|
| 945 |
+
"@id": "copick/segmentations/url",
|
| 946 |
+
"dataType": "sc:Text",
|
| 947 |
+
"source": {
|
| 948 |
+
"fileObject": {
|
| 949 |
+
"@id": "segmentations-csv"
|
| 950 |
+
},
|
| 951 |
+
"extract": {
|
| 952 |
+
"column": "url"
|
| 953 |
+
}
|
| 954 |
+
}
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"@type": "cr:Field",
|
| 958 |
+
"@id": "copick/segmentations/portal_object_name",
|
| 959 |
+
"dataType": "sc:Text",
|
| 960 |
+
"source": {
|
| 961 |
+
"fileObject": {
|
| 962 |
+
"@id": "segmentations-csv"
|
| 963 |
+
},
|
| 964 |
+
"extract": {
|
| 965 |
+
"column": "portal_object_name"
|
| 966 |
+
}
|
| 967 |
+
}
|
| 968 |
+
},
|
| 969 |
+
{
|
| 970 |
+
"@type": "cr:Field",
|
| 971 |
+
"@id": "copick/segmentations/portal_session_id",
|
| 972 |
+
"dataType": "sc:Text",
|
| 973 |
+
"source": {
|
| 974 |
+
"fileObject": {
|
| 975 |
+
"@id": "segmentations-csv"
|
| 976 |
+
},
|
| 977 |
+
"extract": {
|
| 978 |
+
"column": "portal_session_id"
|
| 979 |
+
}
|
| 980 |
+
}
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"@type": "cr:Field",
|
| 984 |
+
"@id": "copick/segmentations/portal_annotation_id",
|
| 985 |
+
"dataType": "sc:Text",
|
| 986 |
+
"source": {
|
| 987 |
+
"fileObject": {
|
| 988 |
+
"@id": "segmentations-csv"
|
| 989 |
+
},
|
| 990 |
+
"extract": {
|
| 991 |
+
"column": "portal_annotation_id"
|
| 992 |
+
}
|
| 993 |
+
}
|
| 994 |
+
},
|
| 995 |
+
{
|
| 996 |
+
"@type": "cr:Field",
|
| 997 |
+
"@id": "copick/segmentations/portal_annotation_file_id",
|
| 998 |
+
"dataType": "sc:Text",
|
| 999 |
+
"source": {
|
| 1000 |
+
"fileObject": {
|
| 1001 |
+
"@id": "segmentations-csv"
|
| 1002 |
+
},
|
| 1003 |
+
"extract": {
|
| 1004 |
+
"column": "portal_annotation_file_id"
|
| 1005 |
+
}
|
| 1006 |
+
}
|
| 1007 |
+
}
|
| 1008 |
+
]
|
| 1009 |
+
},
|
| 1010 |
+
{
|
| 1011 |
+
"@type": "cr:RecordSet",
|
| 1012 |
+
"@id": "copick/objects",
|
| 1013 |
+
"name": "objects",
|
| 1014 |
+
"field": [
|
| 1015 |
+
{
|
| 1016 |
+
"@type": "cr:Field",
|
| 1017 |
+
"@id": "copick/objects/name",
|
| 1018 |
+
"dataType": "sc:Text",
|
| 1019 |
+
"source": {
|
| 1020 |
+
"fileObject": {
|
| 1021 |
+
"@id": "objects-csv"
|
| 1022 |
+
},
|
| 1023 |
+
"extract": {
|
| 1024 |
+
"column": "name"
|
| 1025 |
+
}
|
| 1026 |
+
}
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"@type": "cr:Field",
|
| 1030 |
+
"@id": "copick/objects/url",
|
| 1031 |
+
"dataType": "sc:Text",
|
| 1032 |
+
"source": {
|
| 1033 |
+
"fileObject": {
|
| 1034 |
+
"@id": "objects-csv"
|
| 1035 |
+
},
|
| 1036 |
+
"extract": {
|
| 1037 |
+
"column": "url"
|
| 1038 |
+
}
|
| 1039 |
+
}
|
| 1040 |
+
}
|
| 1041 |
+
]
|
| 1042 |
+
},
|
| 1043 |
+
{
|
| 1044 |
+
"@type": "cr:RecordSet",
|
| 1045 |
+
"@id": "copick/splits",
|
| 1046 |
+
"name": "splits",
|
| 1047 |
+
"description": "Maps split names to MLCommons definition URLs.",
|
| 1048 |
+
"key": {
|
| 1049 |
+
"@id": "copick/splits/name"
|
| 1050 |
+
},
|
| 1051 |
+
"field": [
|
| 1052 |
+
{
|
| 1053 |
+
"@type": "cr:Field",
|
| 1054 |
+
"@id": "copick/splits/name",
|
| 1055 |
+
"dataType": "sc:Text"
|
| 1056 |
+
},
|
| 1057 |
+
{
|
| 1058 |
+
"@type": "cr:Field",
|
| 1059 |
+
"@id": "copick/splits/url",
|
| 1060 |
+
"dataType": "sc:URL"
|
| 1061 |
+
}
|
| 1062 |
+
],
|
| 1063 |
+
"data": [
|
| 1064 |
+
{
|
| 1065 |
+
"copick/splits/name": "train",
|
| 1066 |
+
"copick/splits/url": "https://mlcommons.org/definitions/training_split"
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"copick/splits/name": "test",
|
| 1070 |
+
"copick/splits/url": "https://mlcommons.org/definitions/test_split"
|
| 1071 |
+
}
|
| 1072 |
+
]
|
| 1073 |
+
}
|
| 1074 |
+
]
|
| 1075 |
+
}
|
yeast/Croissant/objects.csv
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
name,url
|
yeast/Croissant/picks.csv
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
run,user_id,session_id,object_name,url,sha256,portal_object_name,portal_session_id,portal_annotation_id,portal_annotation_file_id
|
yeast/Croissant/runs.csv
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name,portal_run_id,split
|
| 2 |
+
249,249,train
|
| 3 |
+
241,241,train
|
| 4 |
+
242,242,train
|
| 5 |
+
243,243,train
|
| 6 |
+
244,244,train
|
| 7 |
+
245,245,train
|
| 8 |
+
246,246,train
|
| 9 |
+
247,247,test
|
| 10 |
+
248,248,test
|
| 11 |
+
250,250,test
|
| 12 |
+
253,253,train
|
| 13 |
+
252,252,train
|
| 14 |
+
254,254,train
|
| 15 |
+
255,255,train
|
| 16 |
+
256,256,train
|
| 17 |
+
257,257,train
|
| 18 |
+
258,258,train
|
| 19 |
+
259,259,train
|
| 20 |
+
260,260,train
|
| 21 |
+
251,251,test
|
yeast/Croissant/segmentations.csv
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run,voxel_size,user_id,session_id,name,is_multilabel,url,portal_object_name,portal_session_id,portal_annotation_id,portal_annotation_file_id
|
| 2 |
+
249,13.48,data-portal,246334,nuclear-envelope,false,10000/TS_043/Reconstructions/VoxelSpacing13.480/Annotations/116/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134609,246334
|
| 3 |
+
249,13.48,data-portal,246338,endomembrane,false,10000/TS_043/Reconstructions/VoxelSpacing13.480/Annotations/118/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134611,246338
|
| 4 |
+
249,13.48,data-portal,246336,vesicle,false,10000/TS_043/Reconstructions/VoxelSpacing13.480/Annotations/117/vesicle-1.0_segmentationmask.zarr,vesicle,,134610,246336
|
| 5 |
+
249,13.48,data-portal,246330,cytoplasm,false,10000/TS_043/Reconstructions/VoxelSpacing13.480/Annotations/114/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134607,246330
|
| 6 |
+
249,13.48,data-portal,246332,nucleus,false,10000/TS_043/Reconstructions/VoxelSpacing13.480/Annotations/115/nucleus-1.0_segmentationmask.zarr,nucleus,,134608,246332
|
| 7 |
+
241,13.48,data-portal,246272,cytoplasm,false,10000/TS_026/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134578,246272
|
| 8 |
+
241,13.48,data-portal,246276,endomembrane,false,10000/TS_026/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134580,246276
|
| 9 |
+
241,13.48,data-portal,246274,vesicle,false,10000/TS_026/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134579,246274
|
| 10 |
+
242,13.48,data-portal,246282,nuclear-envelope,false,10000/TS_027/Reconstructions/VoxelSpacing13.480/Annotations/116/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134583,246282
|
| 11 |
+
242,13.48,data-portal,246280,nucleus,false,10000/TS_027/Reconstructions/VoxelSpacing13.480/Annotations/115/nucleus-1.0_segmentationmask.zarr,nucleus,,134582,246280
|
| 12 |
+
242,13.48,data-portal,246278,cytoplasm,false,10000/TS_027/Reconstructions/VoxelSpacing13.480/Annotations/114/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134581,246278
|
| 13 |
+
242,13.48,data-portal,246286,endomembrane,false,10000/TS_027/Reconstructions/VoxelSpacing13.480/Annotations/118/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134585,246286
|
| 14 |
+
242,13.48,data-portal,246284,vesicle,false,10000/TS_027/Reconstructions/VoxelSpacing13.480/Annotations/117/vesicle-1.0_segmentationmask.zarr,vesicle,,134584,246284
|
| 15 |
+
243,13.48,data-portal,246290,vesicle,false,10000/TS_028/Reconstructions/VoxelSpacing13.480/Annotations/118/vesicle-1.0_segmentationmask.zarr,vesicle,,134587,246290
|
| 16 |
+
243,13.48,data-portal,246288,cytoplasm,false,10000/TS_028/Reconstructions/VoxelSpacing13.480/Annotations/115/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134586,246288
|
| 17 |
+
243,13.48,data-portal,246292,endomembrane,false,10000/TS_028/Reconstructions/VoxelSpacing13.480/Annotations/119/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134588,246292
|
| 18 |
+
244,13.48,data-portal,246300,mitochondrion,false,10000/TS_029/Reconstructions/VoxelSpacing13.480/Annotations/117/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134592,246300
|
| 19 |
+
244,13.48,data-portal,246298,endomembrane,false,10000/TS_029/Reconstructions/VoxelSpacing13.480/Annotations/116/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134591,246298
|
| 20 |
+
244,13.48,data-portal,246296,vesicle,false,10000/TS_029/Reconstructions/VoxelSpacing13.480/Annotations/115/vesicle-1.0_segmentationmask.zarr,vesicle,,134590,246296
|
| 21 |
+
244,13.48,data-portal,246294,cytoplasm,false,10000/TS_029/Reconstructions/VoxelSpacing13.480/Annotations/112/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134589,246294
|
| 22 |
+
245,13.48,data-portal,246302,cytoplasm,false,10000/TS_030/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134593,246302
|
| 23 |
+
245,13.48,data-portal,246306,endomembrane,false,10000/TS_030/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134595,246306
|
| 24 |
+
245,13.48,data-portal,246304,vesicle,false,10000/TS_030/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134594,246304
|
| 25 |
+
246,13.48,data-portal,246314,mitochondrion,false,10000/TS_034/Reconstructions/VoxelSpacing13.480/Annotations/122/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134599,246314
|
| 26 |
+
246,13.48,data-portal,246312,endomembrane,false,10000/TS_034/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134598,246312
|
| 27 |
+
246,13.48,data-portal,246308,cytoplasm,false,10000/TS_034/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134596,246308
|
| 28 |
+
246,13.48,data-portal,246310,vesicle,false,10000/TS_034/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134597,246310
|
| 29 |
+
247,13.48,data-portal,246316,cytoplasm,false,10000/TS_037/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134600,246316
|
| 30 |
+
247,13.48,data-portal,246322,vesicle,false,10000/TS_037/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134603,246322
|
| 31 |
+
247,13.48,data-portal,246320,nuclear-envelope,false,10000/TS_037/Reconstructions/VoxelSpacing13.480/Annotations/119/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134602,246320
|
| 32 |
+
247,13.48,data-portal,246318,nucleus,false,10000/TS_037/Reconstructions/VoxelSpacing13.480/Annotations/118/nucleus-1.0_segmentationmask.zarr,nucleus,,134601,246318
|
| 33 |
+
248,13.48,data-portal,246324,cytoplasm,false,10000/TS_041/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134604,246324
|
| 34 |
+
248,13.48,data-portal,246326,vesicle,false,10000/TS_041/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134605,246326
|
| 35 |
+
248,13.48,data-portal,246328,endomembrane,false,10000/TS_041/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134606,246328
|
| 36 |
+
250,13.48,data-portal,246344,nuclear-envelope,false,10000/TS_045/Reconstructions/VoxelSpacing13.480/Annotations/116/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134614,246344
|
| 37 |
+
250,13.48,data-portal,246348,endomembrane,false,10000/TS_045/Reconstructions/VoxelSpacing13.480/Annotations/118/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134616,246348
|
| 38 |
+
250,13.48,data-portal,246340,cytoplasm,false,10000/TS_045/Reconstructions/VoxelSpacing13.480/Annotations/114/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134612,246340
|
| 39 |
+
250,13.48,data-portal,246346,vesicle,false,10000/TS_045/Reconstructions/VoxelSpacing13.480/Annotations/117/vesicle-1.0_segmentationmask.zarr,vesicle,,134615,246346
|
| 40 |
+
250,13.48,data-portal,246350,mitochondrion,false,10000/TS_045/Reconstructions/VoxelSpacing13.480/Annotations/119/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134617,246350
|
| 41 |
+
250,13.48,data-portal,246342,nucleus,false,10000/TS_045/Reconstructions/VoxelSpacing13.480/Annotations/115/nucleus-1.0_segmentationmask.zarr,nucleus,,134613,246342
|
| 42 |
+
253,13.48,data-portal,246376,mitochondrion,false,10001/TS_0003/Reconstructions/VoxelSpacing13.480/Annotations/122/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134630,246376
|
| 43 |
+
253,13.48,data-portal,246372,vesicle,false,10001/TS_0003/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134628,246372
|
| 44 |
+
253,13.48,data-portal,246374,endomembrane,false,10001/TS_0003/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134629,246374
|
| 45 |
+
253,13.48,data-portal,246370,cytoplasm,false,10001/TS_0003/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134627,246370
|
| 46 |
+
252,13.48,data-portal,246360,cytoplasm,false,10001/TS_0002/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134622,246360
|
| 47 |
+
252,13.48,data-portal,246366,vesicle,false,10001/TS_0002/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134625,246366
|
| 48 |
+
252,13.48,data-portal,246362,nucleus,false,10001/TS_0002/Reconstructions/VoxelSpacing13.480/Annotations/118/nucleus-1.0_segmentationmask.zarr,nucleus,,134623,246362
|
| 49 |
+
252,13.48,data-portal,246364,nuclear-envelope,false,10001/TS_0002/Reconstructions/VoxelSpacing13.480/Annotations/119/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134624,246364
|
| 50 |
+
252,13.48,data-portal,246368,endomembrane,false,10001/TS_0002/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134626,246368
|
| 51 |
+
254,13.48,data-portal,246378,cytoplasm,false,10001/TS_0004/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134631,246378
|
| 52 |
+
254,13.48,data-portal,246382,endomembrane,false,10001/TS_0004/Reconstructions/VoxelSpacing13.480/Annotations/123/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134633,246382
|
| 53 |
+
254,13.48,data-portal,246384,mitochondrion,false,10001/TS_0004/Reconstructions/VoxelSpacing13.480/Annotations/124/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134634,246384
|
| 54 |
+
254,13.48,data-portal,246380,vesicle,false,10001/TS_0004/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134632,246380
|
| 55 |
+
255,13.48,data-portal,246388,vesicle,false,10001/TS_0005/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134636,246388
|
| 56 |
+
255,13.48,data-portal,246386,cytoplasm,false,10001/TS_0005/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134635,246386
|
| 57 |
+
255,13.48,data-portal,246390,endomembrane,false,10001/TS_0005/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134637,246390
|
| 58 |
+
256,13.48,data-portal,246400,endomembrane,false,10001/TS_0006/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134642,246400
|
| 59 |
+
256,13.48,data-portal,246402,mitochondrion,false,10001/TS_0006/Reconstructions/VoxelSpacing13.480/Annotations/122/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134643,246402
|
| 60 |
+
256,13.48,data-portal,246396,nuclear-envelope,false,10001/TS_0006/Reconstructions/VoxelSpacing13.480/Annotations/119/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134640,246396
|
| 61 |
+
256,13.48,data-portal,246394,nucleus,false,10001/TS_0006/Reconstructions/VoxelSpacing13.480/Annotations/118/nucleus-1.0_segmentationmask.zarr,nucleus,,134639,246394
|
| 62 |
+
256,13.48,data-portal,246398,vesicle,false,10001/TS_0006/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134641,246398
|
| 63 |
+
256,13.48,data-portal,246392,cytoplasm,false,10001/TS_0006/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134638,246392
|
| 64 |
+
257,13.48,data-portal,246406,nucleus,false,10001/TS_0007/Reconstructions/VoxelSpacing13.480/Annotations/118/nucleus-1.0_segmentationmask.zarr,nucleus,,134645,246406
|
| 65 |
+
257,13.48,data-portal,246412,mitochondrion,false,10001/TS_0007/Reconstructions/VoxelSpacing13.480/Annotations/122/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134648,246412
|
| 66 |
+
257,13.48,data-portal,246410,endomembrane,false,10001/TS_0007/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134647,246410
|
| 67 |
+
257,13.48,data-portal,246408,nuclear-envelope,false,10001/TS_0007/Reconstructions/VoxelSpacing13.480/Annotations/119/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134646,246408
|
| 68 |
+
257,13.48,data-portal,246404,cytoplasm,false,10001/TS_0007/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134644,246404
|
| 69 |
+
258,13.48,data-portal,246416,vesicle,false,10001/TS_0008/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134650,246416
|
| 70 |
+
258,13.48,data-portal,246420,mitochondrion,false,10001/TS_0008/Reconstructions/VoxelSpacing13.480/Annotations/122/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134652,246420
|
| 71 |
+
258,13.48,data-portal,246414,cytoplasm,false,10001/TS_0008/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134649,246414
|
| 72 |
+
258,13.48,data-portal,246418,endomembrane,false,10001/TS_0008/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134651,246418
|
| 73 |
+
259,13.48,data-portal,246424,nucleus,false,10001/TS_0009/Reconstructions/VoxelSpacing13.480/Annotations/118/nucleus-1.0_segmentationmask.zarr,nucleus,,134654,246424
|
| 74 |
+
259,13.48,data-portal,246422,cytoplasm,false,10001/TS_0009/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134653,246422
|
| 75 |
+
259,13.48,data-portal,246430,endomembrane,false,10001/TS_0009/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134657,246430
|
| 76 |
+
259,13.48,data-portal,246426,nuclear-envelope,false,10001/TS_0009/Reconstructions/VoxelSpacing13.480/Annotations/119/nuclear_envelope-1.0_segmentationmask.zarr,nuclear envelope,,134655,246426
|
| 77 |
+
259,13.48,data-portal,246428,vesicle,false,10001/TS_0009/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134656,246428
|
| 78 |
+
251,13.48,data-portal,246354,vesicle,false,10001/TS_0001/Reconstructions/VoxelSpacing13.480/Annotations/120/vesicle-1.0_segmentationmask.zarr,vesicle,,134619,246354
|
| 79 |
+
251,13.48,data-portal,246358,mitochondrion,false,10001/TS_0001/Reconstructions/VoxelSpacing13.480/Annotations/122/mitochondrion-1.0_segmentationmask.zarr,mitochondrion,,134621,246358
|
| 80 |
+
251,13.48,data-portal,246352,cytoplasm,false,10001/TS_0001/Reconstructions/VoxelSpacing13.480/Annotations/117/cytoplasm-1.0_segmentationmask.zarr,cytoplasm,,134618,246352
|
| 81 |
+
251,13.48,data-portal,246356,endomembrane,false,10001/TS_0001/Reconstructions/VoxelSpacing13.480/Annotations/121/membrane_enclosed_lumen-1.0_segmentationmask.zarr,membrane-enclosed lumen,,134620,246356
|
yeast/Croissant/tomograms.csv
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run,voxel_size,tomo_type,url,portal_tomo_type,portal_tomogram_id
|
| 2 |
+
249,13.48,wbp-raw,10000/TS_043/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_043.zarr,,629
|
| 3 |
+
241,13.48,wbp-raw,10000/TS_026/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_026.zarr,,621
|
| 4 |
+
242,13.48,wbp-raw,10000/TS_027/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_027.zarr,,622
|
| 5 |
+
243,13.48,wbp-raw,10000/TS_028/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_028.zarr,,623
|
| 6 |
+
244,13.48,wbp-raw,10000/TS_029/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_029.zarr,,624
|
| 7 |
+
245,13.48,wbp-raw,10000/TS_030/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_030.zarr,,625
|
| 8 |
+
246,13.48,wbp-raw,10000/TS_034/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_034.zarr,,626
|
| 9 |
+
247,13.48,wbp-raw,10000/TS_037/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_037.zarr,,627
|
| 10 |
+
248,13.48,wbp-raw,10000/TS_041/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_041.zarr,,628
|
| 11 |
+
250,13.48,wbp-raw,10000/TS_045/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_045.zarr,,630
|
| 12 |
+
253,13.48,wbp-raw,10001/TS_0003/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0003.zarr,,2271
|
| 13 |
+
252,13.48,wbp-raw,10001/TS_0002/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0002.zarr,,2270
|
| 14 |
+
254,13.48,wbp-raw,10001/TS_0004/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0004.zarr,,2272
|
| 15 |
+
255,13.48,wbp-raw,10001/TS_0005/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0005.zarr,,2273
|
| 16 |
+
256,13.48,wbp-raw,10001/TS_0006/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0006.zarr,,2274
|
| 17 |
+
257,13.48,wbp-raw,10001/TS_0007/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0007.zarr,,2275
|
| 18 |
+
258,13.48,wbp-raw,10001/TS_0008/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0008.zarr,,2276
|
| 19 |
+
259,13.48,wbp-raw,10001/TS_0009/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0009.zarr,,2277
|
| 20 |
+
260,13.48,wbp-raw,10001/TS_0010/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0010.zarr,,2278
|
| 21 |
+
251,13.48,wbp-raw,10001/TS_0001/Reconstructions/VoxelSpacing13.480/Tomograms/100/TS_0001.zarr,,2269
|
yeast/Croissant/voxel_spacings.csv
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run,voxel_size
|
| 2 |
+
249,13.48
|
| 3 |
+
241,13.48
|
| 4 |
+
242,13.48
|
| 5 |
+
243,13.48
|
| 6 |
+
244,13.48
|
| 7 |
+
245,13.48
|
| 8 |
+
246,13.48
|
| 9 |
+
247,13.48
|
| 10 |
+
248,13.48
|
| 11 |
+
250,13.48
|
| 12 |
+
253,13.48
|
| 13 |
+
252,13.48
|
| 14 |
+
254,13.48
|
| 15 |
+
255,13.48
|
| 16 |
+
256,13.48
|
| 17 |
+
257,13.48
|
| 18 |
+
258,13.48
|
| 19 |
+
259,13.48
|
| 20 |
+
260,13.48
|
| 21 |
+
251,13.48
|