-
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 #34 from umccr/enhancement/illumina-interop
Added stand-alone illumina interop docker image
- Loading branch information
Showing
3 changed files
with
44 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM continuumio/miniconda3:23.10.0-1 | ||
|
||
LABEL author="Alexis Lucattini" \ | ||
description="Runs illumina-interop" \ | ||
maintainer="[email protected]" | ||
|
||
ARG ILLUMINA_INTEROP_VERSION="1.3.1" | ||
|
||
RUN conda config --prepend channels conda-forge && \ | ||
conda install -c bioconda illumina-interop=="${ILLUMINA_INTEROP_VERSION}" && \ | ||
find /opt/conda/ -follow -type f -name '*.a' -delete && \ | ||
find /opt/conda/ -follow -type f -name '*.pyc' -delete && \ | ||
/opt/conda/bin/conda clean --yes \ | ||
--all \ | ||
--force-pkgs-dirs | ||
|
||
# Reset entrypoint to null for cwl | ||
ENTRYPOINT [] | ||
|
||
# Set cwd to multiqc | ||
CMD [] |
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,20 @@ | ||
# illumina-interop | ||
|
||
## Version 1.3.1 | ||
|
||
## Package link | ||
[docker-who/illumina-interop](https://github.com/umccr/docker-who/pkgs/container/illumina-interop) | ||
|
||
## Platforms | ||
* linux/amd64 | ||
|
||
### Usage | ||
Run illumina interop commands such as 'interop_index-summary' or 'interop_summary' | ||
|
||
```bash | ||
docker pull ghcr.io/umccr/interop:1.3.1 | ||
``` | ||
|
||
### Description | ||
|
||
Official interop documentation can be found [here](https://illumina.github.io/interop/index.html). |
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,3 @@ | ||
# Specify particular platforms to build | ||
platforms: | ||
- linux/amd64 |