CWL Graphical Pipeline
Build and push to ICA your own Docker image
FROM centos:7
WORKDIR /usr/local
# DEPENDENCIES
RUN yum -y install java-1.8.0-openjdk wget unzip perl && \
yum clean all && \
rm -rf /var/cache/yum
# INSTALLATION fastqc
RUN wget http://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.9.zip --no-check-certificate && \
unzip fastqc_v0.11.9.zip && \
chmod a+rx /usr/local/FastQC/fastqc && rm -rf fastqc_v0.11.9.zip
# Adding FastQC to the PATH
ENV PATH $PATH:/usr/local/FastQC
# DEFAULTS
ENV LANG=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
ENTRYPOINT []
## how to build the docker image
## docker build --file fastqc-0.11.9.Dockerfile --tag fastqc-0.11.9:0 .
## docker run --rm -i -t --entrypoint /bin/bash fastqc-0.11.9:0Create a CWL tool
Create the pipeline

Run a pipeline
View Results
Last updated
Was this helpful?
