├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── cached_faidx.rs ├── main.rs └── processor.rs └── test ├── test.bam ├── test.bam.bai ├── test_cram.fa └── test_cram.fa.fai /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/README.md -------------------------------------------------------------------------------- /src/cached_faidx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/src/cached_faidx.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/src/processor.rs -------------------------------------------------------------------------------- /test/test.bam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/test/test.bam -------------------------------------------------------------------------------- /test/test.bam.bai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/test/test.bam.bai -------------------------------------------------------------------------------- /test/test_cram.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/test/test_cram.fa -------------------------------------------------------------------------------- /test/test_cram.fa.fai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/pbr/HEAD/test/test_cram.fa.fai --------------------------------------------------------------------------------