├── .gitignore ├── CHANGES ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── bitmap.c ├── bitmap.h ├── dprog.c ├── dprog.h ├── fptr.h ├── gene.c ├── gene.h ├── main.c ├── metagenomic.c ├── metagenomic.h ├── node.c ├── node.h ├── parallel-prodigal-gv.py ├── sequence.c ├── sequence.h ├── training.c └── training.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | prodigal 3 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v2.11.0-gv: March 2023 2 | -------------------------------------------------------------------------------- /bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/bitmap.c -------------------------------------------------------------------------------- /bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/bitmap.h -------------------------------------------------------------------------------- /dprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/dprog.c -------------------------------------------------------------------------------- /dprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/dprog.h -------------------------------------------------------------------------------- /fptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/fptr.h -------------------------------------------------------------------------------- /gene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/gene.c -------------------------------------------------------------------------------- /gene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/gene.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/main.c -------------------------------------------------------------------------------- /metagenomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/metagenomic.c -------------------------------------------------------------------------------- /metagenomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/metagenomic.h -------------------------------------------------------------------------------- /node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/node.c -------------------------------------------------------------------------------- /node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/node.h -------------------------------------------------------------------------------- /parallel-prodigal-gv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/parallel-prodigal-gv.py -------------------------------------------------------------------------------- /sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/sequence.c -------------------------------------------------------------------------------- /sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/sequence.h -------------------------------------------------------------------------------- /training.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/training.c -------------------------------------------------------------------------------- /training.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apcamargo/prodigal-gv/HEAD/training.h --------------------------------------------------------------------------------