Skip to content

Commit 0fe109c

Browse files
updated workflow in README.md
1 parent f87619e commit 0fe109c

File tree

4 files changed

+1360
-85
lines changed

4 files changed

+1360
-85
lines changed

README.md

+49-85
Original file line numberDiff line numberDiff line change
@@ -2,77 +2,43 @@
22
<!-- include image 'documentation/resources/ovrlpy-logo.png -->
33
![ovrlpy logo](docs/resources/ovrlpy-logo.png)
44

5-
A python tool to investigate vertical signal properties (e.g. overlapping cells) of imaging-based spatial transcriptomics data.
5+
A python tool to investigate vertical signal properties of imaging-based spatial transcriptomics data.
66

7-
## Introduction
7+
## introduction
88

9-
Much of spatial biology uses microscopic tissue slices to study the spatial distribution of cells and molecules. In the process, tissue slices are often interpreted as 2D representations of 3D biological structures - which can introduce artefacts and inconsistencies in the data whenever structures (e.g. individual cells, blood vessels) overlap in the thin vertical dimension of the tissue slice:
9+
Much of spatial biology uses microscopic tissue slices to study the spatial distribution of cells and molecules. In the process, tissue slices are often interpreted as 2D representations of 3D biological structures - which can introduce artefacts and inconsistencies in the data whenever structures overlap in the thin vertical dimension of the slice:
1010

1111
![3D slice visualization](docs/resources/cell_overlap_visualization.jpg)
1212

13+
Ovrl.py is a quality-control tool for spatial transcriptomics data that can help analysts find sources of vertical signal inconsistency in their data.
14+
It is works with imaging-based spatial transcriptomics data, such as 10x genomics' Xenium or vizgen's MERFISH platforms.
15+
The main feature of the tool is the production of 'signal integrity maps' that can help analysts identify sources of signal inconsistency in their data.
16+
Users can also use the built-in 3D visualisation tool to explore regions of signal inconsistency in their data on a molecular level.
1317

18+
## installation
1419

15-
**Ovrl.py** is a quality-control tool for spatial transcriptomics data that can help analysts find sources of vertical signal inconsistency usch as overlapping cell or tissue folds in their data. We describe these overlaps as "vertical doublets", similar to the doublet concept in single cell transcriptomics.
16-
It works with imaging-based spatial transcriptomics data, such as 10x Genomics' Xenium or Vizgen's MERFISH platforms where the z-location of transcripts is reported.
17-
The main feature of the tool is the production of 'signal integrity maps' that can help analysts identify the sources of signal inconsistency and localise vertical doublets in their data.
18-
Users can also use the built-in 3D visualization tool to explore regions of signal inconsistency in their data on a molecular level.
20+
The tool can be installed using the requirements.txt file in the root directory of the repository.
1921

20-
## Installation
21-
22-
To install the necessary tools and dependencies for this project, follow the steps outlined below. These instructions will guide you through setting up the environment for both standard use and interactive analysis with Jupyter notebooks.
23-
24-
25-
> Ensure that Python (>= 3.6 and < 3.13) and pip are installed on your machine before proceeding.
26-
27-
Steps for Installation
28-
-----------------------
29-
30-
1. **Clone the Repository**
31-
32-
First, ensure that you have cloned the repository to your local machine. If you haven't already done so, use the following commands:
33-
34-
````bash
35-
36-
git clone https://github.com/HiDiHlabs/ovrl.py.git
37-
cd ovrl.py
38-
39-
````
40-
41-
2. **Install Ovrlpy**
42-
43-
To install the ovrlpy package, execute the following command:
44-
45-
````bash
46-
47-
pip install .
48-
````
49-
This installs the package based on the current state of the source files.
50-
51-
3. **Set Up for Interactive Analysis (Optional)**
52-
53-
If you plan to use Jupyter notebooks for interactive analysis or the project's tutorials, you'll need to install some additional packages: **Jupyter**. Install them using:
54-
55-
````bash
22+
```bash
23+
pip install -e .
24+
```
5625

57-
pip install jupyter
26+
In order to use the ipython notebooks and perform interactive analysis, you will need to install the jupyter package also. For the tutorials, pyarrow and fastparquet are also required.
5827

59-
````
28+
```bash
29+
pip install jupyter pyarrow fastparquet
30+
```
6031

32+
## quickstart
6133

62-
## Quickstart
63-
-----------------------
6434
The simplest use case of ovrlpy is the creation of a signal integrity map from a spatial transcriptomics dataset.
65-
66-
1. **Set Parameters & Load Data**
67-
68-
Define parameters and load your data.
35+
In a first step, we define a number of parameters for the analysis:
6936

7037
```python
7138
import pandas as pd
7239
import ovrlpy
7340

7441
# define ovrlpy analysis parameters:
75-
kde_bandwidth = 2
7642
n_expected_celltypes=20
7743

7844
# load the data
@@ -81,65 +47,63 @@ coordinate_df = pd.read_csv('path/to/coordinate_file.csv')
8147
coordinate_df.head()
8248
```
8349

84-
2. **Fit the model**
85-
86-
Fit the ovrlpy model to create a signal integrity map.
50+
you can then fit an ovrlpy model to the data and create a signal integrity map:
8751

8852
```python
8953

54+
# fit the ovrlpy model to the data
55+
9056
from ovrlpy import ovrlp
9157

92-
integrity, signal, visualizer = ovrlp.compute_coherence_map(
93-
df=coordinate_df,
94-
KDE_bandwidth=kde_bandwidth,
95-
n_expected_celltypes=n_expected_celltypes
96-
)
58+
signal_integrity, signal_strength, visualizer = ovrlpy.run(coordinate_df, n_expected_celltypes=n_expected_celltypes)
59+
9760
```
9861

99-
3. **Visualize Model Fit**
62+
returns a signal integrity map, a signal map and a visualizer object that can be used to visualize the data:
10063

10164
```python
10265
visualizer.plot_fit()
10366
```
67+
![plot_fit output](docs/resources/plot_fit.png)
10468

105-
4. **Plot Signal Integrity Map**
10669

107-
Plot the signal integrity map with a threshold for signal coherence.
70+
and visualize the signal integrity map:
10871

10972
```python
110-
fig, ax = ovrlp.plot_signal_integrity(integrity,signal,signal_threshold=4.0)
73+
fig, ax = ovrlp.plot_signal_integrity(signal_integrity,signal_strength,signal_threshold=4.0)
11174
```
11275

113-
5. **Detect & Visualize Overlaps (Doublets)**
76+
![plot_signal_integrity output](docs/resources/xenium_integrity_with_highlights.svg)
77+
78+
Ovrlpy can also identify individual overlap events in the data:
11479

11580
```python
11681
import matplotlib.pyplot as plt
117-
doublet_df = ovrlp.detect_doublets(
118-
integrity,
119-
signal,
120-
signal_cutoff=4,
121-
coherence_sigma=1
82+
doublet_df = ovrlpy.detect_doublets(
83+
signal_integrity, signal_strength, minimum_signal_strength=3, integrity_sigma=2
12284
)
12385

12486
doublet_df.head()
12587
```
12688

127-
6. **3D Visualization of Overlap Event**
128-
129-
This visualization shows a 3D representation of the spatial overlap event, giving more insight into the structure and coherence of the signals.
89+
And use the visualizer to show a 3D visualization of the overlaps in the tissue:
13090

13191
```python
132-
window_size = 60
133-
n_doublet_to_show = 0
134-
x, y = doublet_df.loc[n_doublet_to_show, ['x', 'y']]
135-
subsample = visualizer.subsample_df(x, y, coordinate_df, window_size=window_size)
136-
subsample_embedding, subsample_embedding_color = visualizer.transform(subsample)
137-
visualizer.plot_instance(
138-
subsample,
139-
subsample[['x', 'y']].values,
140-
subsample_embedding_color,
141-
x, y,
142-
window_size=window_size
92+
# Which doublet do you want to visualize?
93+
n_doublet_case = 0
94+
95+
x, y = doublet_df.loc[doublet_case, ["x", "y"]]
96+
97+
ovrlpy.plot_region_of_interest(
98+
x,
99+
y,
100+
coordinate_df,
101+
visualizer,
102+
signal_integrity,
103+
signal_strength,
104+
window_size=window_size,
143105
)
144-
145106
```
107+
108+
![plot_region_of_interest output](docs/resources/plot_roi.png)
109+

docs/resources/plot_fit.png

160 KB
Loading

docs/resources/plot_roi.png

793 KB
Loading

docs/resources/xenium_integrity_with_highlights.svg

+1,311
Loading

0 commit comments

Comments
 (0)