|
138 | 138 | "id": "01df1f51-29db-4955-8189-42648e5cd95e",
|
139 | 139 | "metadata": {},
|
140 | 140 | "source": [
|
141 |
| - "We will need two Zarr files, one for Xenium data and one for Visium data. You can obtain these files by running [this notebook](https://github.com/scverse/spatialdata-notebooks/blob/main/notebooks/paper_reproducibility/xenium_and_visium.ipynb).\n", |
| 141 | + "You can download the processed Visium and Xenium data (already aligned and Xenium with already the celltype information) from here: [Visium dataset](https://s3.embl.de/spatialdata/spatialdata-sandbox/visium_associated_xenium_io_aligned.zip), [Xenium dataset](https://s3.embl.de/spatialdata/spatialdata-sandbox/xenium_rep1_io_aligned.zip). In alternative you can obtain the data by running [this analysis notebook](https://github.com/scverse/spatialdata-notebooks/blob/main/notebooks/paper_reproducibility/00_xenium_and_visium.ipynb).\n", |
142 | 142 | "\n",
|
143 |
| - "Alternatively, you can download a zipped version of the data from here: [Xenium data](https://s3.embl.de/spatialdata/spatialdata-sandbox/xenium_rep1_io.zip), [Visium data](https://s3.embl.de/spatialdata/spatialdata-sandbox/visium_associated_xenium_io.zip). \n", |
144 |
| - "\n", |
145 |
| - "If you download the data, please make it discoverable in the paths specified next (you can use symlink to achieve this)." |
| 143 | + "Please rename the files to `visium_aligned.zarr` and `xenium_aligned.zarr` and place them in the same folder as this notebook (or use symlinks to make the data accessible)." |
146 | 144 | ]
|
147 | 145 | },
|
148 | 146 | {
|
|
179 | 177 | }
|
180 | 178 | ],
|
181 | 179 | "source": [
|
182 |
| - "print(\"current working directory:\", os.getcwd())\n", |
183 |
| - "SPATIALDATA_SANDBOX_PATH = \"../../../spatialdata-sandbox\"\n", |
184 |
| - "assert os.path.isdir(\n", |
185 |
| - " SPATIALDATA_SANDBOX_PATH\n", |
186 |
| - "), f\"{SPATIALDATA_SANDBOX_PATH} not found, please use symlinks to make it available\"\n", |
187 |
| - "\n", |
188 |
| - "XENIUM_SDATA_PATH = os.path.join(SPATIALDATA_SANDBOX_PATH, \"xenium_rep1_io/data_aligned.zarr\")\n", |
189 |
| - "VISIUM_SDATA_PATH = os.path.join(SPATIALDATA_SANDBOX_PATH, \"visium_associated_xenium_io/data_aligned.zarr\")\n", |
| 180 | + "XENIUM_SDATA_PATH = \"visium_aligned.zarr\"\n", |
| 181 | + "VISIUM_SDATA_PATH = \"xenium_aligned.zarr\"\n", |
190 | 182 | "\n",
|
191 | 183 | "assert os.path.isdir(XENIUM_SDATA_PATH)\n",
|
192 | 184 | "assert os.path.isdir(VISIUM_SDATA_PATH)\n",
|
|
0 commit comments