Skip to content

Commit

Permalink
as to AS in FROM lines; removed defaults conda channel and made conda…
Browse files Browse the repository at this point in the history
…-forge highest priority channel; added list of important dependencies to dnaapler README.md
  • Loading branch information
kapsakcj committed Nov 26, 2024
1 parent a50f04a commit ec68173
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dnaapler/1.0.0/Dockerfile → dnaapler/1.0.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base image: micromamba for Conda support
FROM mambaorg/micromamba:1.5.8 as app
FROM mambaorg/micromamba:1.5.8 AS app

USER root

Expand Down Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
apt-get autoclean && rm -rf /var/lib/apt/lists/*

# Create the conda environment, install dnaapler via bioconda package; clean up micromamba garbage
RUN micromamba create -n dnaapler -y -c bioconda -c defaults -c conda-forge dnaapler=${DNAAPLER_VER} && \
RUN micromamba create -n dnaapler -y -c conda-forge -c bioconda dnaapler=${DNAAPLER_VER} && \
micromamba clean -a -f -y

# Set PATH and LC_ALL for compatibility
Expand All @@ -42,7 +42,7 @@ WORKDIR /data
CMD [ "dnaapler", "--help" ]

# New stage for testing
FROM app as test
FROM app AS test

# Set working directory to /test
WORKDIR /test
Expand Down
10 changes: 9 additions & 1 deletion dnaapler/1.0.0/README.md → dnaapler/1.0.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,13 @@ dnaapler plasmid --input plasmid.fasta --output dnaapler_plasmid

# Reorienting Mixed Contigs
dnaapler all -i input_mixed_contigs.fasta -o output_directory_path -p my_bacteria_name

```

## Additional tools/dependencies

- biopython 1.78
- python 3.11.10
- pandas 2.2.2
- numpy 1.26.4
- mmseqs2 13.45111
- pyrodigal 3.6.3

0 comments on commit ec68173

Please sign in to comment.