Source code used to analyse smFISH data in Chatzitheodoridou et al. 2024
Windows 10 64 bit, macOS > 10
- Install Anaconda or Miniconda for Python 3.9. IMPORTANT: For Windows make sure to choose the 64 bit version.
- Open a terminal and navigate to ChatziFISH folder (this folder)
- Update conda with
conda update conda
. Optionally, consider removing unused packages with the commandconda clean --all
- Update pip with
python -m pip install --upgrade pip
- Create a virtual environment with the command
conda create -n chatzi python=3.9
- Activate the environment with the command
conda activate chatzi
- Install all the dependencies with
pip install -r requirements.txt