fibertools-rs 0.3.2

Fiber-seq toolkit in rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Contributing to `fibertools-rs`
Please feel free to open PRs! But first make sure you code passes tests, and please add tests for new features:
```bash
cargo test -p bio-io -p bamlift -p fibertools-rs
```
Also format your code and check it with clingy:
```bash
cargo fmt 
cargo clippy --workspace
```

## Cutting a release
```bash
cargo release --workspace {release type} -x
```
Where release type is one of: major, minor, patch.