├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R └── get.R ├── README.md ├── inst └── bin │ ├── plink_Darwin │ ├── plink_Linux │ └── plink_Windows.exe └── man └── get_plink_exe.Rd /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Gibran Hemani 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(get_plink_exe) 4 | -------------------------------------------------------------------------------- /R/get.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/R/get.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/README.md -------------------------------------------------------------------------------- /inst/bin/plink_Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/inst/bin/plink_Darwin -------------------------------------------------------------------------------- /inst/bin/plink_Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/inst/bin/plink_Linux -------------------------------------------------------------------------------- /inst/bin/plink_Windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/inst/bin/plink_Windows.exe -------------------------------------------------------------------------------- /man/get_plink_exe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explodecomputer/plinkbinr/HEAD/man/get_plink_exe.Rd --------------------------------------------------------------------------------