Skip to content

Commit 265ad09

Browse files
committed
Drop clustalw from main tools script
1 parent fccb116 commit 265ad09

File tree

2 files changed

+29
-31
lines changed

2 files changed

+29
-31
lines changed

SequenceAnalysis/pipeline_code/extra_tools_install.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,3 +379,32 @@ then
379379
else
380380
echo "Already installed"
381381
fi
382+
383+
#
384+
#clustalw
385+
#
386+
387+
echo ""
388+
echo ""
389+
echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
390+
echo "Installing ClustalW"
391+
echo ""
392+
cd $LKSRC_DIR
393+
394+
if [[ ! -e ${LKTOOLS_DIR}/clustalw2 || ! -z $FORCE_REINSTALL ]];
395+
then
396+
rm -Rf clustal*
397+
rm -Rf 1.2.4-cmake.tar.gz
398+
rm -Rf $LKTOOLS_DIR/clustalw2
399+
400+
wget $WGET_OPTS https://github.com/GSLBiotech/clustal-omega/archive/refs/tags/1.2.4-cmake.tar.gz
401+
tar -xf 1.2.4-cmake.tar.gz
402+
cd clustal-omega-1.2.4-cmake
403+
./configure
404+
make
405+
406+
install ./src/clustalw2 $LKTOOLS_DIR/clustalw2
407+
408+
else
409+
echo "Already installed"
410+
fi

SequenceAnalysis/pipeline_code/sequence_tools_install.sh

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -999,37 +999,6 @@ else
999999
fi
10001000

10011001

1002-
#
1003-
#clustalw
1004-
#
1005-
1006-
echo ""
1007-
echo ""
1008-
echo "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1009-
echo "Installing ClustalW"
1010-
echo ""
1011-
cd $LKSRC_DIR
1012-
1013-
if [[ ! -e ${LKTOOLS_DIR}/clustalw2 || ! -z $FORCE_REINSTALL ]];
1014-
then
1015-
rm -Rf clustalw-*
1016-
rm -Rf $LKTOOLS_DIR/clustalw2
1017-
1018-
wget $WGET_OPTS http://www.clustal.org/download/current/clustalw-2.1.tar.gz
1019-
gunzip clustalw-2.1.tar.gz
1020-
tar -xf clustalw-2.1.tar
1021-
gzip clustalw-2.1.tar
1022-
cd clustalw-2.1
1023-
./configure
1024-
make
1025-
1026-
install ./src/clustalw2 $LKTOOLS_DIR/clustalw2
1027-
1028-
else
1029-
echo "Already installed"
1030-
fi
1031-
1032-
10331002
#
10341003
#muscle
10351004
#

0 commit comments

Comments
 (0)