-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b12d5c
commit fabbd8a
Showing
33 changed files
with
590 additions
and
542 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 |
---|---|---|
|
@@ -9,3 +9,5 @@ tmp/ | |
.nextflow* | ||
stack-outputs.json | ||
test_data | ||
linter-rules-for-nextflow | ||
build/cloudformation/packaged.yaml |
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM ghcr.io/soedinglab/mmseqs2:master-cuda12 | ||
|
||
# Run with /usr/local/bin/entrypoint | ||
ENTRYPOINT [] |
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,27 +1,25 @@ | ||
FROM public.ecr.aws/amazonlinux/amazonlinux:2023 as build | ||
FROM public.ecr.aws/amazonlinux/amazonlinux:2 as build | ||
|
||
WORKDIR /home | ||
|
||
COPY code /home/putils | ||
COPY requirements.txt /home | ||
COPY code /tmp/putils | ||
|
||
# Install python and other dependencies | ||
RUN yum update \ | ||
RUN amazon-linux-extras install python3.8 \ | ||
&& yum upgrade -y \ | ||
&& yum install -y \ | ||
python3.11 \ | ||
unzip-6.0 \ | ||
wget-1.21.3 \ | ||
&& python3.11 -m venv /opt/venv \ | ||
wget-1.14 \ | ||
&& python3.8 -m venv /opt/venv \ | ||
&& source /opt/venv/bin/activate \ | ||
&& pip install -U pip \ | ||
&& pip install -q --no-cache-dir -r /home/requirements.txt \ | ||
&& pip install -q --no-cache-dir /home/putils \ | ||
&& yum autoremove -y \ | ||
&& pip install -q --no-cache-dir \ | ||
pandas==2.0.0 \ | ||
numpy==1.24.2 \ | ||
biopython==1.81 \ | ||
/tmp/putils \ | ||
&& yum clean all \ | ||
&& rm -rf /var/cache/yum | ||
&& rm -rf /var/cache/yum \ | ||
&& rm -rf /tmp/putils | ||
|
||
ENV VIRTUAL_ENV="/opt/venv" | ||
ENV PATH="$VIRTUAL_ENV/bin:$PATH" | ||
|
||
ENTRYPOINT [] | ||
WORKDIR /home |
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 @@ | ||
{"id": "3D06", "seq_length": 200, "seq_count": 1, "template_search_resources": {"vcpu": 2, "memory": "4 GiB", "gpu": "False"}, "feature_gen_resources": {"vcpu": 2, "memory": "4 GiB", "gpu": "False"}, "predict_resources": {"vcpu": 8, "memory": "32 GiB", "gpu": "True"}, "uniref90_msa_resources": {"vcpu": 8, "memory": "16 GiB", "gpu": "False"}, "mgnify_msa_resources": {"vcpu": 8, "memory": "16 GiB", "gpu": "False"}, "bfd_msa_resources": {"vcpu": 16, "memory": "32 GiB", "gpu": "False"}} |
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 @@ | ||
{"id": "2022", "seq_length": "100", "seq_count": "1"} |
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.