Skip to content

Commit a21c54b

Browse files
authored
Update Singularity
Update Singularity to run with Python 3.8.
1 parent 2ba666a commit a21c54b

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

recipes/Singularity

+12-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ apt-get -y update && \
2828
libffi-dev \
2929
libxm4 \
3030
r-base \
31-
python3.7-dev \
31+
python3-dev \
3232
python3-pip \
3333
iputils-ping \
3434
screen \
@@ -65,16 +65,21 @@ apt-get -y update && \
6565
/bin/echo "Data=Data=/external_folder_blast/blast/data" >> ~/.ncbirc;\
6666
R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/pvclust/pvclust_2.0-0.tar.gz', repos=NULL, type='source', dependencies=TRUE)";\
6767
R -e "install.packages('ape', dependencies=TRUE)";\
68-
python3.7 -m pip install --upgrade pip;\
69-
python3.7 -m pip install --upgrade setuptools;\
68+
python3 -m pip install --upgrade pip;\
69+
python3 -m pip install --upgrade setuptools;\
7070
cd /programs;\
7171
git clone https://github.com/AuReMe/padmet.git;\
7272
cd padmet;\
73-
python3.7 -m pip install -e .;\
73+
python3 -m pip install -e .;\
7474
cd ../;\
75-
python3.7 -m pip install scipy;\
76-
python3.7 -m pip install requests;\
77-
python3.7 -m pip install aucome;\
75+
python3 -m pip install scipy;\
76+
python3 -m pip install requests;\
77+
python3 -m pip install subprocess32;\
78+
cd /programs/;\
79+
git clone https://github.com/AuReMe/aucome.git;\
80+
cd aucome;\
81+
python3 -m pip install -r requirements.txt ;\
82+
python3 -m pip install -e .;\
7883
cd /opt;\
7984
wget https://github.com/davidemms/OrthoFinder/releases/download/2.5.4/OrthoFinder.tar.gz;\
8085
tar xzf OrthoFinder.tar.gz;\

0 commit comments

Comments
 (0)