Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Add bedGraphToBigWig (kentUtils) #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
the container and passing the host user's user and group IDs to the container
via environment variables.
- gosu 1.9.
- bedGraphToBigWig from kentUtils 302.1.0.

### Changed

Expand Down
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,17 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
rm -r hisat2-$HISAT_VERSION/example && \
echo "PATH=\$PATH:~/hisat2-$HISAT_VERSION" >> ~/.bash_profile && \

echo "Installing kentUtils..." && \
KU_VERSION=302.1.0 && \
KU_SHA1SUM=810cec2881472090f8d92f1f07adf8703bcda5ae && \
wget -q https://codeload.github.com/ENCODE-DCC/kentUtils/zip/v$KU_VERSION -O kentUtils.zip && \
echo "$KU_SHA1SUM *kentUtils.zip" | sha1sum -c - && \
unzip -q kentUtils.zip && \
rm kentUtils.zip && \
rm -r kentUtils-$KU_VERSION/src && \
find kentUtils-$KU_VERSION/bin/linux.x86_64 -type f -not -name 'bedGraphToBigWig' -print0 | xargs -0 rm -- && \
echo "PATH=\$PATH:~/kentUtils-$KU_VERSION/bin/linux.x86_64" >> ~/.bash_profile && \

echo "Installing R packages..." && \
sudo Rscript --slave --no-save --no-restore-history -e " \
package_list = c( \
Expand Down