Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • dev
  • master
  • v0.1.0
  • v0.1.2
  • v0.2.0
  • v0.2.1
  • v0.2.2
  • v0.2.3
  • v0.2.4
  • v0.2.5
  • v0.2.6
  • v0.2.7
  • v0.2.8
  • v0.2.9
  • v0.3.0
  • v0.4.0
  • v2.0.0
17 results

Target

Select target project
  • LBMC/regards/nextflow
  • elabaron/nextflow
  • lanani/nextflow
  • mlepetit/nextflow
  • mdjaffar/nextflow
  • LBMC/RMI2/rmi2_pipelines
  • lpicard/nextflow
  • rseraphi/nextflow
  • hregue/nextflow
  • letien02/nextflow
  • mshamjal/nextflow
  • z483801/nextflow
  • fduveau/nextflow
  • cginevra/nextflow
  • dtorresc/nextflow
  • fmortreu/nextflow
  • jshapiro/nextflow
  • carpin/nextflow
  • LBMC/Delattre/JU28_59vs17_SNP
  • jclaud01/nextflow
  • dchalopi/nextflow
  • mvilcot/nextflow
  • mherbett/nextflow
  • lestrada/nextflow
  • nfontrod/nextflow
  • gbenoit/nextflow
  • gyvert/nextflow
  • aguill09/nextflow
  • alapendr/nextflow
  • jprobin/nextflow
  • vvanoost/nextflow
  • jblin/nextflow
  • mparis/nextflow
  • ogandril/nextflow
  • cbourgeo/nextflow
  • ggirau03/nextflow
  • ecombe01/nextflow
  • acorbin/nextflow
  • pberna01/nextflow
  • pmarie01/nextflow
  • rhoury/nextflow
  • lgely/nextflow
  • jvalat/nextflow
  • cfournea/nextflow
  • mprieux/nextflow
  • hpolvech/nextflow
  • LBMC/nextflow
  • mcariou/nextflow
  • z483800/nextflow
  • yjia01/nextflow
  • jkleine/nextflow
  • LBMC/Palladino/RNAseq_nextflow
  • jseimand/nextflow
  • nlecouvr/nextflow-nathan
54 results
Select Git revision
  • dev
  • master
  • v0.1.0
  • v0.1.2
  • v0.2.0
  • v0.2.1
  • v0.2.2
  • v0.2.3
  • v0.2.4
  • v0.2.5
  • v0.2.6
  • v0.2.7
  • v0.2.8
  • v0.2.9
14 results
Show changes
Showing
with 0 additions and 251 deletions
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
FASTQC_VERSION=0.11.5
PACKAGES="fastqc=${FASTQC_VERSION}* \
perl=5.26*"
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
%environment
export FASTQC_VERSION=0.11.5
export PACKAGES=fastqc=${FASTQC_VERSION}*
%runscript
exec /bin/bash "$@"
#/bin/sh
sudo singularity build --force bin/file_handle:0.1.1.img src/singularity_modules/file_handle/0.1.1/file_handle.def && \
singularity sign bin/file_handle:0.1.1.img
#/bin/bash
singularity exec /sps/lbmc/common/singularity/file_handle:0.1.1.img file_handle $@
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
FILE_HANDLE_VERSION=0.1.1
PACKAGES="git \
ca-certificates "
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
git clone https://github.com/LBMC/file_handle.git && \
cd file_handle && \
git checkout tags/v${FILE_HANDLE_VERSION} && \
cp src/file_handle.py /usr/bin/file_handle.py && \
chmod +x /usr/bin/file_handle.py
%environment
export FILE_HANDLE_VERSION=0.1.1
%runscript
exec /bin/bash "$@"
#/bin/sh
sudo singularity build --force bin/gatk:4.0.8.1.img src/singularity_modules/gatk/4.0.8.1/gatk.def && \
singularity sign bin/gatk:4.0.8.1.img
#/bin/bash
singularity exec /sps/lbmc/common/singularity/gatk:4.0.8.1.img gatk $@
Bootstrap: docker
From: broadinstitute/gatk:4.0.8.1
%labels
MAINTAINER Laurent Modolo
%post
GATK_VERSION=4.0.8.1
cp gatk/gatk /usr/bin/
%environment
export GATK_VERSION=4.0.8.1
%runscript
exec /bin/bash "$@"
#/bin/sh
sudo singularity build --force bin/hisat2:2.0.0.img src/singularity_modules/hisat2/2.0.0/hisat2.def && \
singularity sign bin/hisat2:2.0.0.img
#/bin/bash
singularity exec /sps/lbmc/common/singularity/hisat2:2.0.0.img hisat2 $@
Bootstrap: docker
From: alpine:3.8
%labels
MAINTAINER Laurent Modolo
%post
SAMTOOLS_VERSION=1.7
HISAT2_VERSION=2.0.0
PACKAGES="git \
make \
gcc \
musl-dev \
zlib-dev \
ncurses-dev \
bzip2-dev \
xz-dev \
bash \
curl \
zip \
g++ \
perl \
python"
apk update && \
apk add ${PACKAGES}
git clone https://github.com/samtools/htslib.git && \
cd htslib && \
git checkout ${SAMTOOLS_VERSION} && \
cd .. && \
git clone https://github.com/samtools/samtools.git && \
cd samtools && \
git checkout ${SAMTOOLS_VERSION} && \
make && \
cp samtools /usr/bin/
curl -k -L http://ccb.jhu.edu/software/hisat2/downloads/hisat2-${HISAT2_VERSION}-beta-source.zip -o hisat2_linux-v${HISAT2_VERSION}.zip && \
unzip hisat2_linux-v${HISAT2_VERSION}.zip && \
cd hisat2-${HISAT2_VERSION}-beta && \
make && \
cp hisat2 /usr/bin && \
cp hisat2-* /usr/bin && \
rm -Rf hisat2-${HISAT2_VERSION}-beta
%environment
export SAMTOOLS_VERSION=1.7
export HISAT2_VERSION=2.0.0
%runscript
exec /bin/bash "$@"
#/bin/sh
sudo singularity build --force bin/hisat2:2.1.0.img src/singularity_modules/hisat2/2.1.0/hisat2.def && \
singularity sign bin/hisat2:2.1.0.img
#/bin/bash
singularity exec /sps/lbmc/common/singularity/hisat2:2.1.0.img hisat2 $@
Bootstrap: docker
From: alpine:3.8
%labels
MAINTAINER Laurent Modolo
%post
SAMTOOLS_VERSION=1.7
HISAT2_VERSION=2.1.0
PACKAGES="git \
make \
gcc \
musl-dev \
zlib-dev \
ncurses-dev \
bzip2-dev \
xz-dev \
bash \
curl \
zip \
g++ \
perl \
python"
apk update && \
apk add ${PACKAGES}
git clone https://github.com/samtools/htslib.git && \
cd htslib && \
git checkout ${SAMTOOLS_VERSION} && \
cd .. && \
git clone https://github.com/samtools/samtools.git && \
cd samtools && \
git checkout ${SAMTOOLS_VERSION} && \
make && \
cp samtools /usr/bin/
curl -k -L http://ccb.jhu.edu/software/hisat2/dl/hisat2-${HISAT2_VERSION}-source.zip -o hisat2_linux-v${HISAT2_VERSION}.zip && \
unzip hisat2_linux-v${HISAT2_VERSION}.zip && \
cd hisat2-${HISAT2_VERSION} && \
make && \
cp hisat2 /usr/bin && \
cp hisat2-* /usr/bin && \
rm -Rf hisat2-${HISAT2_VERSION}
%environment
export SAMTOOLS_VERSION=1.7
export HISAT2_VERSION=2.1.0
%runscript
exec /bin/bash "$@"
#/bin/sh
sudo singularity build --force bin/htseq:0.11.2.img src/singularity_modules/htseq/0.11.2/htseq.def && \
singularity sign bin/htseq:0.11.2.img
#/bin/bash
singularity exec /sps/lbmc/common/singularity/htseq:0.11.2.img htseq $@
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
HTSEQ_VERSION=0.11.2
PACKAGES="build-essential \
python3-pip \
python3-setuptools \
python3-dev \
python3-wheel"
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
pip3 install numpy==1.14.3
pip3 install pysam==0.15.0
pip3 install HTSeq==${HTSEQ_VERSION}
%environment
export HTSEQ_VERSION=0.11.2
%runscript
exec /bin/bash "$@"
#/bin/sh
sudo singularity build --force bin/htseq:0.8.0.img src/singularity_modules/htseq/0.8.0/htseq.def && \
singularity sign bin/htseq:0.8.0.img
#/bin/bash
singularity exec /sps/lbmc/common/singularity/htseq:0.8.0.img htseq $@
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
HTSEQ_VERSION=0.8.0
PACKAGES="build-essential \
python3-pip \
python3-setuptools \
python3-dev \
python3-wheel"
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
pip3 install numpy==1.14.3
pip3 install pysam==0.15.0
pip3 install HTSeq==${HTSEQ_VERSION}
%environment
export HTSEQ_VERSION=0.8.0
%runscript
exec /bin/bash "$@"
#/bin/sh
sudo singularity build --force bin/kallisto:0.43.1.img src/singularity_modules/kallisto/0.43.1/kallisto.def && \
singularity sign bin/kallisto:0.43.1.img