├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R └── hcop.R ├── README.Rmd ├── README.md ├── data-raw └── hcop.R ├── data ├── anole_lizard.rda ├── c.elegans.rda ├── chicken.rda ├── chimpanzee.rda ├── cow.rda ├── dog.rda ├── fruitfly.rda ├── horse.rda ├── macaque.rda ├── mouse.rda ├── opossum.rda ├── pig.rda ├── platypus.rda ├── rat.rda ├── s.cerevisiae.rda ├── xenopus.rda └── zebrafish.rda ├── docs ├── authors.html ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── hcop.html │ └── index.html ├── hcop.Rproj └── man └── hcop.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/hcop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/R/hcop.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/hcop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data-raw/hcop.R -------------------------------------------------------------------------------- /data/anole_lizard.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/anole_lizard.rda -------------------------------------------------------------------------------- /data/c.elegans.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/c.elegans.rda -------------------------------------------------------------------------------- /data/chicken.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/chicken.rda -------------------------------------------------------------------------------- /data/chimpanzee.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/chimpanzee.rda -------------------------------------------------------------------------------- /data/cow.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/cow.rda -------------------------------------------------------------------------------- /data/dog.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/dog.rda -------------------------------------------------------------------------------- /data/fruitfly.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/fruitfly.rda -------------------------------------------------------------------------------- /data/horse.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/horse.rda -------------------------------------------------------------------------------- /data/macaque.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/macaque.rda -------------------------------------------------------------------------------- /data/mouse.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/mouse.rda -------------------------------------------------------------------------------- /data/opossum.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/opossum.rda -------------------------------------------------------------------------------- /data/pig.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/pig.rda -------------------------------------------------------------------------------- /data/platypus.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/platypus.rda -------------------------------------------------------------------------------- /data/rat.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/rat.rda -------------------------------------------------------------------------------- /data/s.cerevisiae.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/s.cerevisiae.rda -------------------------------------------------------------------------------- /data/xenopus.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/xenopus.rda -------------------------------------------------------------------------------- /data/zebrafish.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/data/zebrafish.rda -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/hcop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/reference/hcop.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /hcop.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/hcop.Rproj -------------------------------------------------------------------------------- /man/hcop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenturner/hcop/HEAD/man/hcop.Rd --------------------------------------------------------------------------------