├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── bbf.c ├── bbf.h ├── bfc.c ├── bfc.h ├── bseq.c ├── bseq.h ├── correct.c ├── count.c ├── errstat.js ├── hash2cnt.c ├── htab.c ├── htab.h ├── khash.h ├── kmer.h ├── kseq.h ├── ksort.h ├── kthread.c ├── kvec.h ├── tex ├── Makefile ├── README.md ├── bfc.bib ├── bfc.tex ├── bioinfo.cls ├── bioinfo2.cls ├── natbib.bst ├── natbib.sty └── supp.tex └── utils.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/README.md -------------------------------------------------------------------------------- /bbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/bbf.c -------------------------------------------------------------------------------- /bbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/bbf.h -------------------------------------------------------------------------------- /bfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/bfc.c -------------------------------------------------------------------------------- /bfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/bfc.h -------------------------------------------------------------------------------- /bseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/bseq.c -------------------------------------------------------------------------------- /bseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/bseq.h -------------------------------------------------------------------------------- /correct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/correct.c -------------------------------------------------------------------------------- /count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/count.c -------------------------------------------------------------------------------- /errstat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/errstat.js -------------------------------------------------------------------------------- /hash2cnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/hash2cnt.c -------------------------------------------------------------------------------- /htab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/htab.c -------------------------------------------------------------------------------- /htab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/htab.h -------------------------------------------------------------------------------- /khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/khash.h -------------------------------------------------------------------------------- /kmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/kmer.h -------------------------------------------------------------------------------- /kseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/kseq.h -------------------------------------------------------------------------------- /ksort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/ksort.h -------------------------------------------------------------------------------- /kthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/kthread.c -------------------------------------------------------------------------------- /kvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/kvec.h -------------------------------------------------------------------------------- /tex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/Makefile -------------------------------------------------------------------------------- /tex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/README.md -------------------------------------------------------------------------------- /tex/bfc.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/bfc.bib -------------------------------------------------------------------------------- /tex/bfc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/bfc.tex -------------------------------------------------------------------------------- /tex/bioinfo.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/bioinfo.cls -------------------------------------------------------------------------------- /tex/bioinfo2.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/bioinfo2.cls -------------------------------------------------------------------------------- /tex/natbib.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/natbib.bst -------------------------------------------------------------------------------- /tex/natbib.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/natbib.sty -------------------------------------------------------------------------------- /tex/supp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/tex/supp.tex -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/bfc/HEAD/utils.c --------------------------------------------------------------------------------