Skip to content

Commit

Permalink
got BLAST to auto install on the EC2 instance
Browse files Browse the repository at this point in the history
  • Loading branch information
Oge Nnadi committed Apr 2, 2015
1 parent 15fab83 commit f678edc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/resources/aws/.ebextensions/01packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"packages": {
"rpm": {
"ncbi-blast": "ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.28/ncbi-blast-2.2.28+-1.x86_64.rpm"
"commands": {
"01_enable_sudo": {
"command": "echo Defaults:root \!requiretty >> /etc/sudoers"
},
"02_install_blast": {
"command": "sudo wget ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.28/ncbi-blast-2.2.28+-1.x86_64.rpm &>> /tmp/install.log && sudo yum localinstall --nogpgcheck --assumeyes ncbi-blast-2.2.28+-1.x86_64.rpm &>> /tmp/install.log"
}
}
}

0 comments on commit f678edc

Please sign in to comment.