Skip to content

Commit

Permalink
Fix #31
Browse files Browse the repository at this point in the history
  • Loading branch information
rivera10 committed Dec 8, 2021
1 parent 146e71c commit 899d160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions precheck_TransPi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ bus_dow () {
if [ `cat ${confDir}/conf/busV4list.txt | grep "${bname};" | wc -l` -eq 1 ];then
echo -e "\n\t -- Downloading BUSCO V4 \"$name\" database --\n";wait
wname=$( cat ${confDir}/conf/busV4list.txt | grep "${bname};" | cut -f 2 -d ";" )
wget $wname
wget --no-check-certificate $wname
echo -e "\n\t -- Preparing files ... --\n";wait
tname=$( cat ${confDir}/conf/busV4list.txt | grep "${bname};" | cut -f 1 -d ";" | tr [A-Z] [a-z] )
tar -xf ${tname}*.tar.gz
Expand All @@ -128,7 +128,7 @@ bus_dow () {
if [ `cat ${confDir}/conf/busV4list.txt | grep "${bname};" | wc -l` -eq 1 ];then
echo -e "\n\t -- Downloading BUSCO V4 \"$name\" database --\n";wait
wname=$( cat ${confDir}/conf/busV4list.txt | grep "${bname};" | cut -f 2 -d ";" )
wget $wname
wget --no-check-certificate $wname
echo -e "\n\t -- Preparing files ... --\n";wait
tname=$( cat ${confDir}/conf/busV4list.txt | grep "${bname};" | cut -f 1 -d ";" | tr [A-Z] [a-z] )
tar -xvf ${tname}*.tar.gz
Expand Down

0 comments on commit 899d160

Please sign in to comment.