Mercurial > repos > yating-l > hubarchivecreator
view util/install_linux_binaries @ 34:04b942019dce draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit e42ecb807fb34a8e4ddcf96944dd74d24c695352-dirty
author | yating-l |
---|---|
date | Thu, 29 Dec 2016 17:57:51 -0500 |
parents | 3e0c61b52a06 |
children |
line wrap: on
line source
#!/usr/bin/env bash localBinPath="/usr/local/bin/" hgDownloadURl="http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/" # Binaries needed for HAC twoBitInfo="twoBitInfo" faToTwoBit="faToTwoBit" gff3ToGenePred="gff3ToGenePred" gtfToGenePred="gtfToGenePred" genePredToBed="genePredToBed" # sort="sort" bedToBigBed="bedToBigBed" binariesArray=( ${twoBitInfo} ${faToTwoBit} ${gff3ToGenePred} ${gtfToGenePred} ${genePredToBed} ${bedToBigBed} ) # Download and install binaries for binaryName in "${binariesArray[@]}" do binaryInstallationPath="${localBinPath}/${binaryName}" sudo wget -P ${localBinPath} "${hgDownloadURl}/${binaryName}" sudo chown ${USER} ${binaryInstallationPath} sudo chmod +x ${binaryInstallationPath} done