filter-clipped 0.2.0

A bam/sam util to filter out highly clipped NGS reads from alignment files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM rust:1.62.1 AS builder

RUN apt-get update && \
    apt-get install -y cmake

FROM builder AS build

COPY . /opt/filter-clipped/
WORKDIR /opt/filter-clipped
RUN cargo install --path .

FROM build AS final
ENV RUST_LOG=info
ENTRYPOINT ["/usr/local/cargo/bin/filter-clipped"]