view util/install_linux_binaries @ 20:40469b265ddb draft

planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 3af31e043f5b82636015c18e013d2f22ce6c9077-dirty
author yating-l
date Fri, 20 Jan 2017 17:12:03 -0500
parents fb5e60d4d18a
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