Bootstrap: library
From: centos
%post
yum -y install epel-release wget tar
yum -y groupinstall 'Development Tools'
# Install ClustalW
cd /
wget www.clustal.org/download/current/clustalw-2.1.tar.gz
tar xzf clustalw-2.1.tar.gz
cd clustalw-2.1
./configure && make && make install
cd .. && rm -rf /clustalw-2.1 && rm clustalw-2.1.tar.gz
# Input and output directory
mkdir /input
mkdir /output
%runscript
clustalw2 "$@"