-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
|
||
sudo apt-get update | ||
sudo apt-get install -y wget unzip make g++ python3 python3-pip python3-setuptools git vim screen default-jre libgomp1 libboost-all-dev cmake | ||
|
||
# Download ASTER repository | ||
wget https://github.com/chaoszhang/ASTER/archive/refs/heads/Linux.zip | ||
unzip Linux.zip | ||
cd ASTER-Linux | ||
make | ||
cd .. | ||
|
||
# Clone PASTA repository and install | ||
git clone https://github.com/smirarab/pasta.git | ||
|
||
# Clone Sate-Tools repository | ||
git clone https://github.com/smirarab/sate-tools-linux.git | ||
|
||
cd pasta | ||
python3 setup.py develop --user | ||
cd .. | ||
|
||
#build sampling code | ||
cd workflow/scripts/sampling | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
cd ../../../.. | ||
|
||
echo "Setup complete" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: roadies_env_test | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
dependencies: | ||
- snakemake | ||
- alive-progress | ||
- biopython | ||
- iqtree=2.2.0.3 | ||
- numpy | ||
- lastz | ||
- mashtree | ||
- matplotlib | ||
- seaborn | ||
- treeswift=1.1.28 | ||
- fasttree=2.1.11 | ||
- python=3.11 | ||
- ete3 |