-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingularity
23 lines (20 loc) · 897 Bytes
/
Singularity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Bootstrap: docker
From: continuumio/miniconda3
%help
Container with Brian Haas' TransDecoder, which identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks.
This installation is based on bioconda transdecoder 5.5.0
%labels
author Stefano Ghignone
maintainer sghignone
name TransDecoder
version 5.5.0
%post
#SET CONDA ENVIRONMENT
export PATH=/opt/conda/bin:${PATH}
conda update -y conda
conda update -n base -c defaults conda
conda config --add channels conda-forge && \
conda config --add channels bioconda && \
conda config --add channels default
#INSTALL SOFTWARE
conda install -c bioconda transdecoder && conda clean -a