Skip to content

Commit 8d5db64

Browse files
committed
add fungal HMM (F.hmm) and update dockerfile
1 parent 4cb0854 commit 8d5db64

2 files changed

Lines changed: 84588 additions & 1 deletion

File tree

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ RUN cargo build --release --locked
1212
FROM debian:bookworm-slim AS runtime
1313

1414
RUN apt-get update \
15-
&& apt-get install -y --no-install-recommends hmmer ca-certificates \
15+
&& apt-get install -y --no-install-recommends hmmer ca-certificates python3 \
1616
&& rm -rf /var/lib/apt/lists/*
1717

1818
COPY --from=builder /app/target/release/itsxrust /usr/local/bin/itsxrust
1919

20+
# Bundle HMM profiles for standalone use
21+
# Default lookup path: /usr/local/share/itsxrust/hmm/F.hmm
22+
COPY data/hmm/ /usr/local/share/itsxrust/hmm/
23+
2024
ENTRYPOINT ["itsxrust"]
2125
CMD ["--help"]

0 commit comments

Comments
 (0)