The following are the two setup steps that need to be performed once before starting your first project.
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.
For instructions on how to setup a new repository, see WELD.md
After setting up a new repository using our template, navigate into the top level directory of the newly cloned repo.
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 first want to fork the official pooled cell profiling recipe located at https://github.com/broadinstitute/pooled-cp-profiling-recipe.
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.
See forking instructions and the image below.