Skip to content
Snippets Groups Projects
Verified Commit 086ccdb8 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

salmon: add singularity files

parent 54834540
No related branches found
No related tags found
No related merge requests found
#/bin/sh
sudo singularity build --force bin/salmon:0.8.2.sif src/singularity_modules/salmon/0.8.2/salmon.def
singularity sign bin/salmon:0.8.2.sif
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
SALMON_VERSION=0.8.2
PACKAGES="curl \
ca-certificates"
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
curl -k -L https://github.com/COMBINE-lab/salmon/releases/download/v${SALMON_VERSION}/Salmon-${SALMON_VERSION}_linux_x86_64.tar.gz -o Salmon-${SALMON_VERSION}_linux_x86_64.tar.gz && \
tar xzf Salmon-${SALMON_VERSION}_linux_x86_64.tar.gz && \
mv Salmon-${SALMON_VERSION}_linux_x86_64/bin/* /usr/bin/ && \
rm -Rf Salmon-${SALMON_VERSION}*
%environment
export SALMON_VERSION=0.8.2
%runscript
exec /bin/bash "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment