There are two setup steps that need to be performed only once before starting your first project.
After setting up your very first repository using our template, navigate into the top level directory of the newly cloned repo. (For instructions on how to setup a new repository, see WELD.md)
NEW_REPO="INSERT_REPO_NAME_HERE"
cd $NEW_REPO
Install conda.
We use conda as an environment manager.
# Install computational environment
conda env create --force --file environment.yml
# Initialize the environment
conda activate pooled-cell-painting
We need to fork the official pooled cell profiling recipe located at https://github.com/broadinstitute/pooled-cp-profiling-recipe.
See forking instructions and the image below.
The fork creates a copy of a recipe repository.
- Remove the connection to the official recipe updates to avoid unintended weld versioning reversal.
- Enable independent updates to fork code that does not impact official recipe.
- For a general overview of the pipeline welding process, see the repo README.
- For the welding process steps to perform with each dataset, see the weld process README.