Skip to content

Commit

Permalink
Merge pull request BD2KGenomics#288 from akmorrow13/bamQC
Browse files Browse the repository at this point in the history
updated Gencode v23 new path
  • Loading branch information
jvivian authored Nov 29, 2018
2 parents c11f15b + c6a9ce9 commit dc2dc31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bamQC/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN wget -qO- https://github.com/GregoryFaust/samblaster/releases/download/v.0.1
&& cd /tmp/samblaster-v.0.1.24/ && make && mv samblaster /usr/local/bin && rm -rf /tmp/samblaster-v-0.1.24

WORKDIR /ref
RUN wget -qO- https://downloads.sourceforge.net/project/rseqc/BED/Human_Homo_sapiens/hg38_GENCODE_v23_basic.bed.gz \
RUN wget -qO- http://courtyard.gi.ucsc.edu/~jvivian/bamqc/hg38_GENCODE_v23.bed.gz \
| gunzip -c > /ref/hg38_GENCODE_v23_basic.bed

#WORKDIR /app
Expand All @@ -30,4 +30,4 @@ ADD . /app
RUN mkdir /data
WORKDIR /data

ENTRYPOINT ["/bin/bash", "/app/run.sh"]
ENTRYPOINT ["/bin/bash", "/app/run.sh"]
2 changes: 1 addition & 1 deletion bamQC/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build: ${build_tool}

${build_tool}: Dockerfile
docker build -t ${name}:${tag} .
docker tag -f ${name}:${tag} ${name}:latest
docker tag ${name}:${tag} ${name}:latest
touch ${build_tool}

push: build
Expand Down

0 comments on commit dc2dc31

Please sign in to comment.