├── .github └── workflows │ └── main.yml ├── .gitignore ├── .makefile.tester ├── .travis.yml ├── LICENSE ├── Makefile ├── R ├── compare.results.R ├── plot_ngsrelate.R └── ritland_stuff.R ├── README.md ├── filereaders.cpp ├── filereaders.h ├── ngsRelate.cpp ├── odir.tar.gz ├── test ├── small.bcf ├── small.bcf.csi ├── small.bed.gz ├── small.bim ├── small.fam ├── small.log ├── small.md5 ├── small.nosex ├── small.vcf.gz ├── small.vcf.gz.csi ├── test1.md5 ├── test1.sh └── testAll.sh ├── vcf.cpp └── vcf.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/.gitignore -------------------------------------------------------------------------------- /.makefile.tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/.makefile.tester -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/Makefile -------------------------------------------------------------------------------- /R/compare.results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/R/compare.results.R -------------------------------------------------------------------------------- /R/plot_ngsrelate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/R/plot_ngsrelate.R -------------------------------------------------------------------------------- /R/ritland_stuff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/R/ritland_stuff.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/README.md -------------------------------------------------------------------------------- /filereaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/filereaders.cpp -------------------------------------------------------------------------------- /filereaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/filereaders.h -------------------------------------------------------------------------------- /ngsRelate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/ngsRelate.cpp -------------------------------------------------------------------------------- /odir.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/odir.tar.gz -------------------------------------------------------------------------------- /test/small.bcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.bcf -------------------------------------------------------------------------------- /test/small.bcf.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.bcf.csi -------------------------------------------------------------------------------- /test/small.bed.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.bed.gz -------------------------------------------------------------------------------- /test/small.bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.bim -------------------------------------------------------------------------------- /test/small.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.fam -------------------------------------------------------------------------------- /test/small.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.log -------------------------------------------------------------------------------- /test/small.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.md5 -------------------------------------------------------------------------------- /test/small.nosex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.nosex -------------------------------------------------------------------------------- /test/small.vcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.vcf.gz -------------------------------------------------------------------------------- /test/small.vcf.gz.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/small.vcf.gz.csi -------------------------------------------------------------------------------- /test/test1.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/test1.md5 -------------------------------------------------------------------------------- /test/test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/test1.sh -------------------------------------------------------------------------------- /test/testAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/test/testAll.sh -------------------------------------------------------------------------------- /vcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/vcf.cpp -------------------------------------------------------------------------------- /vcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANGSD/NgsRelate/HEAD/vcf.h --------------------------------------------------------------------------------