├── .DS_Store ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── RcppExports.R └── hyprcoloc.R ├── README.md ├── data ├── data.RData └── test.RData ├── hyprcoloc.Rproj ├── man ├── align.ABF.1.Rd ├── align.ABF.2.Rd ├── colMax.Rd ├── cred.sets.Rd ├── hyprcoloc.Rd ├── ind.snp.score.Rd ├── p.0.Rd ├── print.hyprcoloc.Rd ├── prior.Rd ├── rapid.align.Rd ├── rapid.hyprcoloc.Rd ├── rapid.reg.Rd ├── regional.ABF.Rd ├── samp.reduc.Rd └── sensitivity.plot.Rd ├── src ├── RcppExports.cpp ├── RcppExports.o ├── align1.cpp ├── align1.o ├── align12.cpp ├── align12.o ├── align1ind.cpp ├── align1ind.o ├── align2.cpp ├── align2.o ├── hyprcoloc.so ├── regional1.cpp ├── regional1.o ├── regional1ind.cpp ├── regional1ind.o ├── regional2.cpp └── regional2.o └── vignettes ├── hyprcoloc.Rmd └── hyprcoloc.nb.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/hyprcoloc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/R/hyprcoloc.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/README.md -------------------------------------------------------------------------------- /data/data.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/data/data.RData -------------------------------------------------------------------------------- /data/test.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/data/test.RData -------------------------------------------------------------------------------- /hyprcoloc.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/hyprcoloc.Rproj -------------------------------------------------------------------------------- /man/align.ABF.1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/align.ABF.1.Rd -------------------------------------------------------------------------------- /man/align.ABF.2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/align.ABF.2.Rd -------------------------------------------------------------------------------- /man/colMax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/colMax.Rd -------------------------------------------------------------------------------- /man/cred.sets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/cred.sets.Rd -------------------------------------------------------------------------------- /man/hyprcoloc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/hyprcoloc.Rd -------------------------------------------------------------------------------- /man/ind.snp.score.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/ind.snp.score.Rd -------------------------------------------------------------------------------- /man/p.0.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/p.0.Rd -------------------------------------------------------------------------------- /man/print.hyprcoloc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/print.hyprcoloc.Rd -------------------------------------------------------------------------------- /man/prior.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/prior.Rd -------------------------------------------------------------------------------- /man/rapid.align.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/rapid.align.Rd -------------------------------------------------------------------------------- /man/rapid.hyprcoloc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/rapid.hyprcoloc.Rd -------------------------------------------------------------------------------- /man/rapid.reg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/rapid.reg.Rd -------------------------------------------------------------------------------- /man/regional.ABF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/regional.ABF.Rd -------------------------------------------------------------------------------- /man/samp.reduc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/samp.reduc.Rd -------------------------------------------------------------------------------- /man/sensitivity.plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/man/sensitivity.plot.Rd -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/RcppExports.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/RcppExports.o -------------------------------------------------------------------------------- /src/align1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align1.cpp -------------------------------------------------------------------------------- /src/align1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align1.o -------------------------------------------------------------------------------- /src/align12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align12.cpp -------------------------------------------------------------------------------- /src/align12.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align12.o -------------------------------------------------------------------------------- /src/align1ind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align1ind.cpp -------------------------------------------------------------------------------- /src/align1ind.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align1ind.o -------------------------------------------------------------------------------- /src/align2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align2.cpp -------------------------------------------------------------------------------- /src/align2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/align2.o -------------------------------------------------------------------------------- /src/hyprcoloc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/hyprcoloc.so -------------------------------------------------------------------------------- /src/regional1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/regional1.cpp -------------------------------------------------------------------------------- /src/regional1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/regional1.o -------------------------------------------------------------------------------- /src/regional1ind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/regional1ind.cpp -------------------------------------------------------------------------------- /src/regional1ind.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/regional1ind.o -------------------------------------------------------------------------------- /src/regional2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/regional2.cpp -------------------------------------------------------------------------------- /src/regional2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/src/regional2.o -------------------------------------------------------------------------------- /vignettes/hyprcoloc.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/vignettes/hyprcoloc.Rmd -------------------------------------------------------------------------------- /vignettes/hyprcoloc.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnfoley/hyprcoloc/HEAD/vignettes/hyprcoloc.nb.html --------------------------------------------------------------------------------