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
+37-3Lines changed: 37 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,4 @@
1
+
[](http://bioconda.github.io/recipes/crisprhawk/README.html)
Once Conda or Mamba is installed and the Bioconda channels are properly configured (see [Section 1.1.1](#111-install-conda-or-mamba)), you can install CRISPR-HAWK in a dedicated environment.
141
+
142
+
We strongly recommend creating a separate environment to ensure reproducibility and avoid dependency conflicts.
143
+
144
+
**1. Create a new environment (recommended)**
145
+
146
+
```bash
147
+
mamba create -n crisprhawk-env python=3.8 -y
148
+
mamba activate crisprhawk-env
149
+
```
150
+
151
+
> 💡 **Tip**: CRISPR-HAWK currently requires **Python 3.8** for full compatibility with all dependencies.
152
+
153
+
**2. Install CRISPR-HAWK**
154
+
155
+
```bash
156
+
mamba install crisprhawk
157
+
```
158
+
159
+
This command will automatically resolve and install all required dependencies from Bioconda and conda-forge.
160
+
161
+
> 💡 **Tip**: If you are using Conda instead of Mamba, simply replace `mamba` with `conda`.
162
+
163
+
After installation, confirm that CRISPR-HAWK is correctly installed:
164
+
165
+
```bash
166
+
crisprhawk --help
167
+
```
168
+
169
+
If the command runs successfully and displays the help message, the installation is complete.
170
+
171
+
To update to the latest version available on Bioconda:
0 commit comments