Mercurial > repos > yating-l > hubarchivecreator
view util/install_linux_binaries @ 58:a0fc8379223c draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 72268f816f10341dbe3f6b33f8d9170d859c9697
author | yating-l |
---|---|
date | Fri, 30 Jun 2017 15:44:17 -0400 |
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