gxf2bed 0.2.7

fastest GTF/GFF-to-BED converter chilling around
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# syntax=docker/dockerfile:1

FROM rust:1.74.0-bullseye AS builder

COPY .git /app/.git
COPY Cargo.lock Cargo.toml /app/
COPY src/ /app/src/

RUN cargo build --release --manifest-path /app/Cargo.toml

FROM debian:bullseye

COPY --from=builder /app/target/release/gxt2bed /usr/local/bin/

ENTRYPOINT ["/usr/local/bin/gxt2bed"]