├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README.md ├── autogen.sh ├── config.h ├── config.h.in ├── configure ├── configure.ac ├── depcomp ├── install-sh ├── missing └── src ├── Makefile.am ├── Makefile.in ├── bxcommon.h ├── bxconvert.cpp ├── bxconvert.h ├── bxgroup.cpp ├── bxgroup.h ├── bxmol.cpp ├── bxmol.h ├── bxrelabel.cpp ├── bxrelabel.h ├── bxsplit.cpp ├── bxsplit.h ├── bxstats.cpp ├── bxstats.h ├── bxtile.cpp ├── bxtile.h └── bxtools.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/config.h -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/missing -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/bxcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxcommon.h -------------------------------------------------------------------------------- /src/bxconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxconvert.cpp -------------------------------------------------------------------------------- /src/bxconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxconvert.h -------------------------------------------------------------------------------- /src/bxgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxgroup.cpp -------------------------------------------------------------------------------- /src/bxgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxgroup.h -------------------------------------------------------------------------------- /src/bxmol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxmol.cpp -------------------------------------------------------------------------------- /src/bxmol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxmol.h -------------------------------------------------------------------------------- /src/bxrelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxrelabel.cpp -------------------------------------------------------------------------------- /src/bxrelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxrelabel.h -------------------------------------------------------------------------------- /src/bxsplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxsplit.cpp -------------------------------------------------------------------------------- /src/bxsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxsplit.h -------------------------------------------------------------------------------- /src/bxstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxstats.cpp -------------------------------------------------------------------------------- /src/bxstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxstats.h -------------------------------------------------------------------------------- /src/bxtile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxtile.cpp -------------------------------------------------------------------------------- /src/bxtile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxtile.h -------------------------------------------------------------------------------- /src/bxtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walaj/bxtools/HEAD/src/bxtools.cpp --------------------------------------------------------------------------------