Technical requirements
In this chapter, we’ll use the following tools and packages:
- Biopython
- NumPy and pandas
- Matplotlib and Seaborn
You will need a working directory called Ch13.
The code for this chapter is available in this book’s GitHub repository: https://github.com/PacktPublishing/Bioinformatics-with-Python-Cookbook-Fourth-Edition/tree/main/Ch13.
Remember to activate your conda environment before beginning the recipes, like so:
conda activate bioinformatics_base
If you would like to set up a conda environment specific to this chapter, before activating bioinformatics_base, run the following code:
conda create -n ch13-genome-editing --clone bioinformatics_base conda activate ch13-genome-editing
You can install the packages for this chapter as you go through the recipes. Alternatively, you can use the YAML file provided in this book’s GitHub repository, which will install all the necessary packages immediately:
conda...