Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Robin Erich Muench
metaSNV
Commits
25f9cb25
Commit
25f9cb25
authored
Oct 17, 2016
by
Robin Erich Muench
Browse files
update getRefDB.sh
parent
b48603d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
getRefDB.sh
View file @
25f9cb25
#!/bin/bash
#
mkdir
-p
db
cd
db
wget http://vm-lux.embl.de/~rmuench/db_f9.tar.xz
echo
"This might take up to 10 minutes."
echo
"Patience please..."
tar
xfvJ db_f9.tar.xz
download
()
{
mkdir
-p
db
cd
db
#wget http://vm-lux.embl.de/~rmuench/db_f9.tar.xz
wget http://vm-lux.embl.de/~rmuench/db_f9.tar.bz2
echo
"This might take up to 10 minutes."
echo
"Patience please..."
#tar xfvJ db_f9.tar.xz
tar
xfvj db_f9.tar.bz2
exit
}
echo
""
echo
"Requirement: 12G available disc space"
echo
"Do you wish to download our standard database?"
select
yn
in
"Yes"
"No"
;
do
case
$yn
in
Yes
)
download
;
break
;;
No
)
exit
;;
esac
done
exit
# Alternative Option - bzip2 archive:
# wget http://vm-lux.embl.de/~rmuench/db_f9.tar.bz2
# tar xfvj db_f9.tar.bz2
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment