Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
atarashansky committed Oct 22, 2023
1 parent d533298 commit cc2986f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions backend/wmg/data/schemas/cube_schema_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
sparse=True,
allows_duplicates=True,
attrs=expression_summary_physical_attrs,
cell_order="hilbert",
capacity=100000,
cell_order="row-major",
tile_order="row-major",
capacity=10000,
)
1 change: 1 addition & 0 deletions scripts/populate_rdev_with_cellguide_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ if [ -n "$LATEST_SNAPSHOT_IDENTIFIER" ]; then
aws s3 sync s3://cellguide-data-public-${SRC_DEPLOYMENT}/gpt_descriptions s3://cellguide-data-public-dev/env-rdev-cellguide/${STACK_NAME}/gpt_descriptions
aws s3 sync s3://cellguide-data-public-${SRC_DEPLOYMENT}/validated_descriptions s3://cellguide-data-public-dev/env-rdev-cellguide/${STACK_NAME}/validated_descriptions
if [ "$POPULATE_ONLY_GPT" = false ]; then
aws s3 rm s3://cellguide-data-public-dev/env-rdev-cellguide/${STACK_NAME}/${LATEST_SNAPSHOT_IDENTIFIER} --recursive
aws s3 sync s3://cellguide-data-public-${SRC_DEPLOYMENT}/${LATEST_SNAPSHOT_IDENTIFIER} s3://cellguide-data-public-dev/env-rdev-cellguide/${STACK_NAME}/${LATEST_SNAPSHOT_IDENTIFIER}
aws s3 cp s3://cellguide-data-public-${SRC_DEPLOYMENT}/latest_snapshot_identifier s3://cellguide-data-public-dev/env-rdev-cellguide/${STACK_NAME}/latest_snapshot_identifier
fi
Expand Down
1 change: 1 addition & 0 deletions scripts/populate_rdev_with_wmg_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ fi

LATEST_SNAPSHOT_IDENTIFIER=$(aws s3 cp s3://cellxgene-wmg-${SRC_DEPLOYMENT}/snapshots/${SNAPSHOT_VERSION}/latest_snapshot_identifier -)
if [ -n "$LATEST_SNAPSHOT_IDENTIFIER" ]; then
aws s3 rm s3://env-rdev-wmg/${STACK_NAME}/snapshots/${SNAPSHOT_VERSION}/${LATEST_SNAPSHOT_IDENTIFIER} --recursive
aws s3 sync s3://cellxgene-wmg-${SRC_DEPLOYMENT}/snapshots/${SNAPSHOT_VERSION}/${LATEST_SNAPSHOT_IDENTIFIER} s3://env-rdev-wmg/${STACK_NAME}/snapshots/${SNAPSHOT_VERSION}/${LATEST_SNAPSHOT_IDENTIFIER}

# Check the exit code of the last command (AWS CLI)
Expand Down

0 comments on commit cc2986f

Please sign in to comment.