Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions scripts/create_resources/test_resources.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ DATASET_ID=mouse_brain_combined
RAW_DATA=resources_test/common
DATASET_DIR=resources_test/task_spatial_segmentation/$DATASET_ID

mkdir -p $DATASET_DIR
if [ -d "$DATASET_DIR" ]; then
rm -rf "$DATASET_DIR"
fi
mkdir -p "$DATASET_DIR"

# process dataset
viash run src/data_processors/process_dataset/config.vsh.yaml -- \
Expand Down Expand Up @@ -66,5 +69,6 @@ HERE

# only run this if you have access to the openproblems-data bucket
aws s3 sync --profile op \
"$DATASET_DIR" s3://openproblems-data/resources_test/task_spatial_segmentation/mouse_brain_combined/ \
resources_test/task_spatial_segmentation/mouse_brain_combined/ \
s3://openproblems-data/resources_test/task_spatial_segmentation/mouse_brain_combined/ \
--delete --dryrun
3 changes: 1 addition & 2 deletions src/api/comp_data_processor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ argument_groups:
type: string
description: Bibtex reference of the paper in which the dataset was published.
required: true
multiple: true
info:
test_default: ["https://example.com/mouse_brain_combined_paper", "10.1234/example.doi"]
test_default: "10.1234/example.doi"
- name: --dataset_summary
type: string
description: Short description of the dataset.
Expand Down
4 changes: 1 addition & 3 deletions src/base/setup_spatialdata_partial.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
setup:
- type: python
# spatialdata>=0.7.3a1 is required as a workaround for a bug in spatialdata<=0.7.2
# See: https://github.com/scverse/spatialdata/issues/1090
pypi: ["spatialdata>=0.7.3a1", "anndata>=0.12.0", "zarr>=3.0.0"]
pypi: ["spatialdata>=0.7.3", "anndata>=0.12.0", "zarr>=3.0.0"]
Loading