Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1b63e9b
ADD: crane repository, to run workflow with docker.
Dec 11, 2015
f44bb12
UPDATE: normalisation tool, v0,7,1.
Dec 11, 2015
d53902a
UPDATE: version normalisation tool in README file.
Dec 11, 2015
f9e831d
ADD: shell script to rebuild images docker tools from dockerfile loca…
Dec 16, 2015
d517f3c
REORDRE clustering directory, add subdirectory for version 1.2.0.
Dec 23, 2015
f1f8357
REORDER remove_chimera directory, add sub-directory for version 0.5.0.
Dec 23, 2015
951396b
REORDER preprocess directory, add sub-directory for version 1.4.0.
Dec 23, 2015
0cae03c
CHANGE: in rebuild_tools scripts, now images docker are pushing from …
Dec 23, 2015
76d9b63
FIX rebuild-tools.sh in
Jan 19, 2016
5c59b8f
FIX run-crane.sh script, to replace images docker by the newest build…
Jan 19, 2016
7b9f2f7
CLEAN crane frogs directory, remove previous crane.yml files.
Feb 12, 2016
e056a96
CLEAN data directory in crane folder.
Feb 15, 2016
11e20b3
RENAME folder crane_frogs in crane.
Feb 15, 2016
fceac48
FIX: TOOL normalisation, in Dockerfile add missing file normalisation…
Feb 15, 2016
a5bc93d
FIX crane.yml, add argument on normalisation tools (--num-reads 1).
Feb 24, 2016
e3bc1ef
UPDATE TOOL affiliation_otu_0.9.0, reorder clean command in other RUN…
Feb 24, 2016
70a43ff
ADD new versions on FROGS scripts, from releases 1.3.
May 9, 2016
dfe6e25
UPDATE all scripts directory. Add Dockerfile, README and bin directory.
May 9, 2016
e768413
REMOVE for all scripts, wrapper xml.
May 9, 2016
dcdc1cc
UPDATE data source directory in crane.
May 9, 2016
522d4f4
UPDATE all scripts, add utilitaries scripts in bin directory.
May 10, 2016
5f3f264
RENAME script directory affiliation_OTU_0.10.0 to affiliation_otu_0.1…
May 10, 2016
31fdce5
RENAME script directory biom_to_stdBiom_1.2.0 to biom_to_stdbiom_1.2.0
May 10, 2016
90a8555
UPDATE upload_tar script : add latest symbolic link.
May 10, 2016
ce200a9
FIX Dockerfile for some scripts (biom_to_tsv, clusters_stats, demulti…
May 10, 2016
483373a
UPDATE rebuild_tools.sh script, to test all dockerfiles.
May 10, 2016
93e6cbe
CLEAN directory, remove unused file.
May 10, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
60 changes: 60 additions & 0 deletions affiliation_otu/affiliation_otu_0.10.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
############################################################
# Dockerfile to build container images
# Based on debian
# Tool on FROGS applications
# https://github.com/geraldinepascal/FROGS
############################################################


# Set the base image to Ubuntu
FROM debian:wheezy

# File Author / Maintainer
MAINTAINER Sandrine Perrin <sandrine.perrin@france-bioinformatique.fr>

# Set environment variable
ENV TOOL_NAME RDPTools
ENV TOOL_ID rdptools
ENV TOOL_VERSION 2.0.2

ENV PACKAGES \
ant \
git \
make \
ncbi-blast+=2.2.26-3 \
python \
openjdk-7-jdk \
openjdk-7-jre-headless

ENV JAVA_HOME /usr/lib/jvm/java-7-openjdk-amd64

# Update the repository sources list
RUN apt-get update && \
apt-get install --yes $PACKAGES && \
apt-get clean

# Download internal dependencies
WORKDIR /tmp
RUN git clone https://github.com/rdpstaff/RDPTools.git && \
cd ${TOOL_NAME}* && \
git checkout $TOOL_VERSION && \
git submodule update --init && \
make && \
cp *.jar /usr/local/bin/


# Copy dependencies for RDPTools
RUN cp -r ${TOOL_NAME}*/lib /usr/local/bin/ && \
rm -r /tmp/${TOOL_NAME}*

# Install AffiliationOTU
COPY bin/* /usr/local/bin/
COPY affiliation_* /usr/local/bin/

# Make script executable
RUN chmod +x /usr/local/bin/*

WORKDIR /

# Set entrypoint

12 changes: 12 additions & 0 deletions affiliation_otu/affiliation_otu_0.10.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
### Affiliation tools frogs description ###

Taxonomic affiliation of each OTU's seed by RDPtools and BLAST

### Build the image ###

`docker build -t affiliation_otu:0.10.0 .`

### Command example execution ###

`docker run -it --rm -v <path_data>:/root -w /root affiliation_otu:0.10.0 affiliation_OTU.py -h`

Loading