├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── bamcov.c ├── test.bam └── test.bam.bai /.gitignore: -------------------------------------------------------------------------------- 1 | bamcov 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbreitwieser/bamcov/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbreitwieser/bamcov/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbreitwieser/bamcov/HEAD/README.md -------------------------------------------------------------------------------- /bamcov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbreitwieser/bamcov/HEAD/bamcov.c -------------------------------------------------------------------------------- /test.bam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbreitwieser/bamcov/HEAD/test.bam -------------------------------------------------------------------------------- /test.bam.bai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbreitwieser/bamcov/HEAD/test.bam.bai --------------------------------------------------------------------------------