I installed python3
biopython
pysam
gffutils
pandas
cmake
samtools
zlib in a newly created conda environment.
conda create -n asgal -y
conda activate asgal
conda install python=3.6 -y
conda install biopython
pip install pysam
pip install pandas
conda install samtools -y
conda install cmake -y
conda install gffutils -y
conda install zlib
And then execute the following commands:
git clone --recursive https://github.com/AlgoLab/galig.git
cd galig
make prerequisites
make
However when I try to run asgal (./asgal -h), there is an error:
Traceback (most recent call last):
File "./asgal", line 12, in <module>
from Bio import SeqIO
ModuleNotFoundError: No module named 'Bio'
How can I fix this problem?