Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM continuumio/miniconda
WORKDIR /app
COPY . .

# Extract the database and move its contents up one level
RUN mkdir -p /app/FungAMR_db && \
tar -xvzf /app/FungAMR_db/db-v20250811.tgz -C /app/FungAMR_db && \
mv /app/FungAMR_db/db-v0.6.0/* /app/FungAMR_db/ && \
rm -rf /app/FungAMR_db/db-v0.6.0 && \
rm /app/FungAMR_db/db-v20250811.tgz
RUN rm /app/FungAMR_db/README.md

# Create the conda environment
RUN conda env create -f environment.yml

# Set up the shell and entrypoint
SHELL ["conda", "run", "-n", "ChroQueTas", "/bin/bash", "-c"]
ENV TERM=xterm-256color
ENTRYPOINT ["conda", "run", "-n", "ChroQueTas", "bash", "bin/ChroQueTas.sh"]
3 changes: 3 additions & 0 deletions FungAMR_db/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# README

db-v20250811.tgz holds the species database.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ rm -r ChroQueTas/FungAMR_db.tgz
```

### 3.3 Via Docker
> Intructions will be added shortly, sorry for the inconveniences

Usage via docker works as follows.

```
docker run --rm -it $IMAGE_NAME --list_species
```

<br>

Expand Down
10 changes: 10 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: ChroQueTas
channels:
- conda-forge
- bioconda
dependencies:
- blast
- mafft
- miniprot
- emboss
- seqkit
Empty file added files/README.md
Empty file.