-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
110 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
|
||
info: | ||
type: data_loader | ||
type_info: | ||
label: SC Data Loader | ||
summary: A component to download and store single-cell data. | ||
description: | | ||
This component downloads data from a resource and stores it as a h5ad file. | ||
argument_groups: | ||
- name: Outputs | ||
arguments: | ||
- name: "--output" | ||
__merge__: file_common_singlecell.yaml | ||
direction: output | ||
required: true | ||
- name: Metadata | ||
arguments: | ||
- type: string | ||
name: --dataset_id | ||
description: "A unique identifier for the dataset" | ||
required: true | ||
- name: --dataset_name | ||
type: string | ||
description: Nicely formatted name. | ||
required: true | ||
- type: string | ||
name: --dataset_url | ||
description: Link to the original source of the dataset. | ||
required: false | ||
- name: --dataset_reference | ||
type: string | ||
description: Bibtex reference of the paper in which the dataset was published. | ||
required: false | ||
- name: --dataset_summary | ||
type: string | ||
description: Short description of the dataset. | ||
required: true | ||
- name: --dataset_description | ||
type: string | ||
description: Long description of the dataset. | ||
required: true | ||
- name: --dataset_organism | ||
type: string | ||
description: The organism of the sample in the dataset. | ||
required: false | ||
# test_resources: | ||
# - path: /resources_test/common/pancreas | ||
# dest: resources_test/common/pancreas | ||
# - type: python_script | ||
# path: /common/component_tests/run_and_check_output.py | ||
|
9 changes: 5 additions & 4 deletions
9
src/api/comp_data_loader.yaml → src/api/comp_data_loader_sp.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
|
||
info: | ||
type: data_processor | ||
type_info: | ||
label: Data preprocessor | ||
summary: A data loader component which downloads data from a resource and stores it as a zarr file. | ||
summary: Preprocess a common dataset for the benchmark. | ||
description: | | ||
TODO: fill in | ||
This component processes a common single-cell and a common spatial transcriptomics | ||
dataset for the benchmark. | ||
arguments: | ||
- name: "--input" | ||
__merge__: file_spatialdata_raw.yaml | ||
- name: "--input_sp" | ||
__merge__: file_common_spatialdata.yaml | ||
direction: input | ||
required: true | ||
- name: "--output" | ||
__merge__: file_spatialdata_processed.yaml | ||
- name: "--input_sc" | ||
__merge__: file_common_singlecell.yaml | ||
direction: input | ||
required: true | ||
- name: "--output_sp" | ||
__merge__: file_spatialdata.yaml | ||
direction: output | ||
required: true | ||
- name: "--output_sc" | ||
__merge__: file_singlecell.yaml | ||
direction: output | ||
required: true | ||
# test_resources: | ||
# - path: /resources_test/common/pancreas | ||
# dest: resources_test/common/pancreas | ||
# - type: python_script | ||
# path: /common/component_tests/run_and_check_output.py | ||
|
14 changes: 7 additions & 7 deletions
14
src/api/file_singlecell_raw.yaml → src/api/file_common_singlecell.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type: file | ||
example: "resources_test/preprocessing_imagingbased_st/2023_yao_mouse_brain_scrnaseq_10xv2/dataset.h5ad" | ||
label: "SC Dataset" | ||
summary: A single-cell reference dataset, preprocessed for this benchmark. | ||
description: | | ||
This dataset contains preprocessed counts and metadata for single-cell RNA-seq data. | ||
__merge__: file_common_singlecell.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type: file | ||
example: "resources_test/preprocessing_imagingbased_st/2023_10x_mouse_brain_xenium/dataset.zarr" | ||
label: "Spatial Dataset" | ||
summary: A spatial transcriptomics dataset, preprocessed for this benchmark. | ||
description: | | ||
This dataset contains preprocessed images, labels, points, shapes, and tables for spatial transcriptomics data. | ||
__merge__: file_common_spatialdata.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/data_loaders/download_allen_brain_cell_atlas/config.vsh.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters