├── .gitignore ├── Makefile ├── README.md ├── eigen.c ├── kseq.h ├── ksort.h ├── naivepca.c └── test.dat.gz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/README.md -------------------------------------------------------------------------------- /eigen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/eigen.c -------------------------------------------------------------------------------- /kseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/kseq.h -------------------------------------------------------------------------------- /ksort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/ksort.h -------------------------------------------------------------------------------- /naivepca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/naivepca.c -------------------------------------------------------------------------------- /test.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lh3/naivepca/HEAD/test.dat.gz --------------------------------------------------------------------------------