-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
there are some reproducibility issues with umi-tools; see
e.g. CGATOxford/UMI-tools#550 for now, manually apply the diff
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,16 @@ LABEL tool.version="1.1.2" | |
MAINTAINER Patrick Barth <[email protected]> | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install -y gcc procps && \ | ||
pip install umi-tools==1.1.2 && \ | ||
apt-get purge -y gcc && \ | ||
apt-get install -y gcc procps patch wget && \ | ||
wget -q https://github.com/CGATOxford/UMI-tools/archive/refs/tags/1.1.2.tar.gz && \ | ||
tar xzf 1.1.2.tar.gz && \ | ||
cd UMI-tools-1.1.2 && \ | ||
wget -q -O - https://patch-diff.githubusercontent.com/raw/CGATOxford/UMI-tools/pull/550.diff | patch -p1 && \ | ||
python setup.py install && \ | ||
cd .. && \ | ||
rm -rf UMI-tools-1.1.2 1.1.2.tar.gz && \ | ||
apt-get purge -y gcc patch wget && \ | ||
apt-get -y autoremove | ||
|
||
CMD ["umi_tools"] | ||
|