Skip to content

Commit

Permalink
Kmk v3 fix (#86)
Browse files Browse the repository at this point in the history
* added error messages

* formatted and added some diagnostic information
  • Loading branch information
kishorikonwar committed Oct 23, 2020
1 parent 963b253 commit 4813538
Show file tree
Hide file tree
Showing 5 changed files with 201 additions and 182 deletions.
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL maintainer="Ambrose J. Carr <acarr@broadinstitute.org>" \

COPY requirements.txt .

RUN apt-get update && apt-get install -y patch && apt-get install -y libhdf5-dev
RUN apt-get update && apt-get install -y patch && apt-get install -y libhdf5-dev && apt-get install -y vim

RUN pip3 install -r requirements.txt

Expand All @@ -18,10 +18,8 @@ RUN pip3 install /sctools

ARG libStatGen_version="1.0.14"

RUN wget https://github.com/HumanCellAtlas/sctools/archive/kmk-fastqprocessing.zip

RUN unzip kmk-fastqprocessing.zip && \
cd sctools-kmk-fastqprocessing/fastqpreprocessing &&\
RUN cd /sctools/fastqpreprocessing &&\
wget https://github.com/statgen/libStatGen/archive/v${libStatGen_version}.tar.gz &&\
tar -zxvf v${libStatGen_version}.tar.gz &&\
mv libStatGen-${libStatGen_version} libStatGen &&\
Expand All @@ -32,7 +30,7 @@ RUN unzip kmk-fastqprocessing.zip && \
mkdir src/obj &&\
make -C src/

RUN cp sctools-kmk-fastqprocessing/fastqpreprocessing/src/fastqprocess /usr/local/bin/
RUN cp /sctools/fastqpreprocessing/src/fastqprocess /usr/local/bin/

WORKDIR usr/local/bin/sctools

Expand Down

0 comments on commit 4813538

Please sign in to comment.