You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+49-85
Original file line number
Diff line number
Diff line change
@@ -2,77 +2,43 @@
2
2
<!-- include image 'documentation/resources/ovrlpy-logo.png -->
3
3

4
4
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.
6
6
7
-
## Introduction
7
+
## introduction
8
8
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:
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.
13
17
18
+
## installation
14
19
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.
19
21
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:
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
+
```
56
25
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.
58
27
59
-
````
28
+
```bash
29
+
pip install jupyter pyarrow fastparquet
30
+
```
60
31
32
+
## quickstart
61
33
62
-
## Quickstart
63
-
-----------------------
64
34
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:
0 commit comments