├── .gitignore ├── LICENSE ├── MANIFEST.in ├── MetaBCC-LR_logo.png ├── README.md ├── eval.py ├── mbcclr ├── mbcclr_utils ├── __init__.py ├── assign_bins.cpp ├── binner_core.py ├── count-15mers.cpp ├── count-kmers.cpp ├── coverage-vecs.cpp ├── io_utils.h ├── kmer_utils.h ├── kseq.h ├── runners_utils.py ├── sample_data.py ├── scan_dsk.py └── search-15mers.cpp ├── reads2bins.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /MetaBCC-LR_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/MetaBCC-LR_logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/README.md -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/eval.py -------------------------------------------------------------------------------- /mbcclr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr -------------------------------------------------------------------------------- /mbcclr_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mbcclr_utils/assign_bins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/assign_bins.cpp -------------------------------------------------------------------------------- /mbcclr_utils/binner_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/binner_core.py -------------------------------------------------------------------------------- /mbcclr_utils/count-15mers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/count-15mers.cpp -------------------------------------------------------------------------------- /mbcclr_utils/count-kmers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/count-kmers.cpp -------------------------------------------------------------------------------- /mbcclr_utils/coverage-vecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/coverage-vecs.cpp -------------------------------------------------------------------------------- /mbcclr_utils/io_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/io_utils.h -------------------------------------------------------------------------------- /mbcclr_utils/kmer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/kmer_utils.h -------------------------------------------------------------------------------- /mbcclr_utils/kseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/kseq.h -------------------------------------------------------------------------------- /mbcclr_utils/runners_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/runners_utils.py -------------------------------------------------------------------------------- /mbcclr_utils/sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/sample_data.py -------------------------------------------------------------------------------- /mbcclr_utils/scan_dsk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/scan_dsk.py -------------------------------------------------------------------------------- /mbcclr_utils/search-15mers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/mbcclr_utils/search-15mers.cpp -------------------------------------------------------------------------------- /reads2bins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/reads2bins.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradhawick/MetaBCC-LR/HEAD/setup.py --------------------------------------------------------------------------------