-
Notifications
You must be signed in to change notification settings - Fork 119
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 #1074 from Kincekara/integron_finder
adds integron finder
- Loading branch information
Showing
4 changed files
with
72 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
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,41 @@ | ||
FROM ubuntu:jammy AS app | ||
|
||
ARG INTEGRON_FINDER_VER="2.0.5" | ||
|
||
LABEL base.image="ubuntu:jammy" | ||
LABEL dockerfile.version="1" | ||
LABEL software="Integron Finder" | ||
LABEL software.version="${INTEGRON_FINDER_VER}" | ||
LABEL description="Finds integrons in DNA sequences" | ||
LABEL website="https://github.com/gem-pasteur/Integron_Finder" | ||
LABEL license="https://github.com/gem-pasteur/Integron_Finder/blob/master/COPYING" | ||
LABEL maintainer="Kutluhan Incekara" | ||
LABEL maintainer.email="[email protected]" | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
python3-pip \ | ||
hmmer \ | ||
infernal \ | ||
prodigal && \ | ||
apt-get autoclean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip3 install --no-cache-dir integron_finder==${INTEGRON_FINDER_VER} | ||
|
||
ENV LC_ALL=C | ||
|
||
CMD [ "integron_finder", "--help" ] | ||
|
||
WORKDIR /data | ||
|
||
## Test ## | ||
FROM app AS test | ||
|
||
RUN apt-get update && apt-get install -y wget | ||
|
||
RUN wget -q https://github.com/gem-pasteur/Integron_Finder/raw/master/tests/data/Replicons/NZ_CP016323.fna &&\ | ||
integron_finder --local-max --circ --keep-tmp NZ_CP016323.fna &&\ | ||
cat Results_Integron_Finder_NZ_CP016323/NZ_CP016323.summary &&\ | ||
head Results_Integron_Finder_NZ_CP016323/NZ_CP016323.integrons | ||
|
||
|
||
|
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,29 @@ | ||
# Integron Finder container | ||
|
||
Main tool: [Integron Finder](https://integronfinder.readthedocs.io/en/latest/) | ||
|
||
Code repository: https://github.com/gem-pasteur/Integron_Finder | ||
|
||
Additional tools: | ||
- Python 3.10.12 | ||
- numpy 2.1.1 | ||
- pandas 2.2.3 | ||
- matplolib 3.9.2 | ||
- biopython 1.84 | ||
- Prodigal V2.6.3 | ||
- INFERNAL 1.1.4 | ||
- HMMER 3.3.2 | ||
|
||
Basic information on how to use this tool: | ||
- executable: integron_finder | ||
- help: --help | ||
- version: --version | ||
- description: Finds integrons in DNA sequences | ||
|
||
Full documentation: https://integronfinder.readthedocs.io/en/latest/ | ||
|
||
## Example Usage | ||
|
||
```bash | ||
integron_finder --local-max --circ --keep-tmp genome.fna | ||
``` |