This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
forked from icgc-argo-workflows/sanger-wgs-variant-calling
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request icgc-argo-workflows#9 from icgc-argo/sanger-wgs-va…
…riant-calling@2.1.0-9.4.0 [release]
- Loading branch information
Showing
10 changed files
with
449 additions
and
12 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
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
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
5 changes: 5 additions & 0 deletions
5
...m/icgc-argo/data-processing-utility-tools/payload-gen-variant-calling@0.4.0/.dockerignore
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.gitignore | ||
.nextflow* | ||
tests | ||
work | ||
outdir |
18 changes: 18 additions & 0 deletions
18
....com/icgc-argo/data-processing-utility-tools/payload-gen-variant-calling@0.4.0/Dockerfile
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM python:3.7.9 | ||
|
||
LABEL org.opencontainers.image.source https://github.com/icgc-argo/data-processing-utility-tools | ||
|
||
RUN groupadd -g 1000 ubuntu && \ | ||
useradd -l -u 1000 -g ubuntu ubuntu && \ | ||
install -d -m 0755 -o ubuntu -g ubuntu /home/ubuntu | ||
|
||
ENV PATH="/tools:${PATH}" | ||
|
||
COPY *.py /tools/ | ||
|
||
WORKDIR /tools | ||
|
||
USER ubuntu | ||
|
||
ENTRYPOINT ["/usr/bin/env"] | ||
CMD ["/bin/bash"] |
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
Oops, something went wrong.