-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* explicitly allocate resources for k8s * change paths of python, add bin to docker containers * permissions * shebangs * update readme * update gh actions and image tags * change path of bin in Dockerfile to grab down a dir * revert bin path in docker * change wf to include bin * change wf to include bin * try copy * try copy * try copy * try copy * try copy * lint yaml * lint yaml * lint yaml * back to safe commit * back to safe commit * back to safe commit * back to safe commit * manifest to stop linting complaining * docker push * make resources dir a variable and accessible via docker * make resources dir a variable and accessible via docker * change wf to path resources too * resources in config * typo in config * resources -> resource * readme update * docker paths for resource dir * docker path * try without docker paths * split on first colon to deal with S3 stored data * add bin to docker path * use newer container * add catalogue pre-packed * try and deal with S3 buckets in parser scripts * docker * docker * docker install aws * turn off warning * arbitary push to trigger ci correctly * find new folders * docker push * new docker * delete extraneous import * always pull k8s * implement boto3 to interact with s3 in python scripts * docker boto3 * delete files * delete files * permissions * permissions * permissions * remove imports * docker * update script to add aws config * path to aws * try exporting variable from AWS * split afanc to allow local execution to acces AWS creds * includes * remove boto/path checking in python * docker clockwork * break up jq queries to own processes * add missing unmix * docker bump for pr * rm old dockerfiles * config missing refseq * rm src --------- Co-authored-by: annacprice <[email protected]>
- Loading branch information
Showing
21 changed files
with
1,463 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env python3 | ||
import json | ||
import os | ||
import sys | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import json | ||
import os | ||
import sys | ||
|
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
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM debian:buster | ||
|
||
|
||
LABEL maintainer="[email protected]" \ | ||
about.summary="container for the clockwork workflow" | ||
|
||
|
@@ -22,6 +21,10 @@ clockwork_version=2364dec4cbf25c844575e19e8fe0a319d10721b5 | |
ENV PACKAGES="procps curl git build-essential wget zlib1g-dev pkg-config jq r-base-core rsync autoconf libncurses-dev libbz2-dev liblzma-dev libcurl4-openssl-dev cmake tabix libvcflib-tools libssl-dev software-properties-common perl locales locales-all" \ | ||
PYTHON="python2.7 python-dev" | ||
|
||
COPY bin/ /opt/bin/ | ||
ENV PATH=/opt/bin:$PATH | ||
|
||
|
||
RUN apt-get update \ | ||
&& apt-get install -y $PACKAGES $PYTHON \ | ||
&& curl -fsSL https://www.python.org/ftp/python/${python_version}/Python-${python_version}.tgz | tar -xz \ | ||
|
@@ -32,7 +35,7 @@ RUN apt-get update \ | |
&& ln -s /usr/local/bin/python3.6 /usr/local/bin/python3 \ | ||
&& ln -s /usr/local/bin/pip3.6 /usr/local/bin/pip3 \ | ||
&& pip3 install --upgrade pip \ | ||
&& pip3 install 'cluster_vcf_records==0.13.1' pysam setuptools \ | ||
&& pip3 install 'cluster_vcf_records==0.13.1' pysam setuptools awscli \ | ||
&& wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \ | ||
&& add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ \ | ||
&& apt-get update && apt-get install -y adoptopenjdk-8-hotspot | ||
|
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM ubuntu:focal | ||
|
||
|
||
LABEL maintainer="[email protected]" \ | ||
about.summary="container for the preprocessing workflow" | ||
|
||
|
@@ -21,13 +20,16 @@ fastani_version=1.33 | |
|
||
ENV PACKAGES="procps curl git wget build-essential zlib1g-dev libncurses-dev libz-dev libbz2-dev liblzma-dev libcurl4-openssl-dev libgsl-dev rsync unzip ncbi-blast+ pigz jq libtbb-dev openjdk-11-jre-headless autoconf r-base-core locales locales-all" \ | ||
PYTHON="python3 python3-pip python3-dev" \ | ||
PYTHON_PACKAGES="biopython" | ||
PYTHON_PACKAGES="biopython awscli boto3" | ||
|
||
ENV PATH=${PATH}:/usr/local/bin/mccortex/bin:/usr/local/bin/bwa-${bwa_version}:/opt/edirect \ | ||
LD_LIBRARY_PATH=/usr/local/lib | ||
|
||
RUN export DEBIAN_FRONTEND="noninteractive" | ||
|
||
COPY bin/ /opt/bin/ | ||
ENV PATH=/opt/bin:$PATH | ||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND="noninteractive" apt-get install -y $PACKAGES $PYTHON \ | ||
&& pip3 install --upgrade pip \ | ||
|
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM ubuntu:20.04 | ||
|
||
|
||
LABEL maintainer="[email protected]" \ | ||
about.summary="container for the vcf predict workflow" | ||
|
||
|
@@ -13,6 +12,10 @@ piezo_version=0.3 \ | |
gnomonicus_version=1.1.2 \ | ||
tuberculosis_amr_catalogues=12d38733ad2e238729a3de9f725081e1d4872968 | ||
|
||
COPY bin/ /opt/bin/ | ||
ENV PATH=/opt/bin:$PATH | ||
|
||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata \ | ||
&& apt-get install -y $PACKAGES $PYTHON \ | ||
|
@@ -21,6 +24,7 @@ RUN apt-get update \ | |
&& cd VCFMIX \ | ||
&& git checkout ${vcfmix_version} \ | ||
&& pip3 install recursive_diff \ | ||
&& pip3 install awscli \ | ||
&& pip3 install . \ | ||
&& cp -r data /usr/local/lib/python3.8/dist-packages \ | ||
&& cd .. | ||
|
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
Oops, something went wrong.