├── .gitignore ├── Genrich.c ├── Genrich.h ├── LICENSE ├── Makefile ├── README.md ├── figures ├── figure1.png ├── figure2.png └── figure3.png └── findNs.py /.gitignore: -------------------------------------------------------------------------------- 1 | Genrich 2 | -------------------------------------------------------------------------------- /Genrich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/Genrich.c -------------------------------------------------------------------------------- /Genrich.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/Genrich.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/README.md -------------------------------------------------------------------------------- /figures/figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/figures/figure1.png -------------------------------------------------------------------------------- /figures/figure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/figures/figure2.png -------------------------------------------------------------------------------- /figures/figure3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/figures/figure3.png -------------------------------------------------------------------------------- /findNs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsh58/Genrich/HEAD/findNs.py --------------------------------------------------------------------------------