biodockerfiles

fastqc-0.11.9

· Download · Edit · Report · Website

FastQC aims to provide a simple way to do some quality control checks on raw sequence data coming from high throughput sequencing pipelines.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM ubuntu:18.04

WORKDIR /opt

# Update Ubuntu package index and install dependencies
RUN apt-get update \
    && apt-get install -y \
        wget \
        unzip \
        default-jre \
        libcommons-math3-java \
        libfindbin-libs-perl \
        libhtsjdk-java \
        libjbzip2-java \
    && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Download and unzip FastQC
RUN wget --no-check-certificate https://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.9.zip \
    && unzip fastqc_v0.11.9.zip \
    && rm fastqc_v0.11.9.zip

# Make the FastQC code executable and global
RUN chmod +x /opt/FastQC/fastqc \
    && ln -s /opt/FastQC/fastqc /usr/local/bin/fastqc

CMD ["/bin/bash"]