├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── acoshp1.R ├── delta_method_transform.R ├── helpers.R ├── residual_transform.R ├── sparse_sweep.R ├── transformGamPoi-package.R └── transformGamPoi.R ├── README.Rmd ├── README.md ├── inst └── CITATION ├── man ├── acosh_transform.Rd ├── dot-handle_data_parameter.Rd ├── estimate_size_factors.Rd ├── figures │ └── README-plotMeanVar-1.png ├── residual_transform.Rd └── transformGamPoi.Rd ├── src ├── .gitignore ├── RcppExports.cpp └── sparse_divide_out_size_factor.cpp ├── tests ├── testthat.R └── testthat │ ├── test-acoshp1.R │ ├── test-sparse_sweep.R │ ├── test-transform.R │ └── test-transformGamPoi.R └── vignettes ├── .gitignore └── transformGamPoi.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/acoshp1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/acoshp1.R -------------------------------------------------------------------------------- /R/delta_method_transform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/delta_method_transform.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/residual_transform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/residual_transform.R -------------------------------------------------------------------------------- /R/sparse_sweep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/sparse_sweep.R -------------------------------------------------------------------------------- /R/transformGamPoi-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/transformGamPoi-package.R -------------------------------------------------------------------------------- /R/transformGamPoi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/R/transformGamPoi.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/acosh_transform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/man/acosh_transform.Rd -------------------------------------------------------------------------------- /man/dot-handle_data_parameter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/man/dot-handle_data_parameter.Rd -------------------------------------------------------------------------------- /man/estimate_size_factors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/man/estimate_size_factors.Rd -------------------------------------------------------------------------------- /man/figures/README-plotMeanVar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/man/figures/README-plotMeanVar-1.png -------------------------------------------------------------------------------- /man/residual_transform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/man/residual_transform.Rd -------------------------------------------------------------------------------- /man/transformGamPoi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/man/transformGamPoi.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/sparse_divide_out_size_factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/src/sparse_divide_out_size_factor.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-acoshp1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/tests/testthat/test-acoshp1.R -------------------------------------------------------------------------------- /tests/testthat/test-sparse_sweep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/tests/testthat/test-sparse_sweep.R -------------------------------------------------------------------------------- /tests/testthat/test-transform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/tests/testthat/test-transform.R -------------------------------------------------------------------------------- /tests/testthat/test-transformGamPoi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/tests/testthat/test-transformGamPoi.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/transformGamPoi.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/const-ae/transformGamPoi/HEAD/vignettes/transformGamPoi.Rmd --------------------------------------------------------------------------------