├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS ├── R ├── CBNplot-package.R ├── bngeneplot.R ├── bngeneplotCustom.R ├── bnpathplot.R ├── bnpathplotCustom.R ├── data.R └── utilities.R ├── README.md ├── data ├── exampleEaRes.rda └── exampleGeneExp.rda ├── inst └── CITATION ├── man ├── CBNplot-package.Rd ├── bngeneplot.Rd ├── bngeneplotCustom.Rd ├── bngenetest.Rd ├── bnpathplot.Rd ├── bnpathplotCustom.Rd ├── bnpathtest.Rd ├── compareBNs.Rd ├── exampleEaRes.Rd ├── exampleGeneExp.Rd ├── inferMS.Rd ├── loadSign.Rd ├── obtainPath.Rd ├── queryCpDistLs.Rd └── queryCpDistLw.Rd ├── tests ├── testthat.R └── testthat │ ├── test-bngeneplot.R │ ├── test-bnpathplot.R │ └── test-utils.R └── vignettes └── CBNplot_basic_usage.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/NEWS -------------------------------------------------------------------------------- /R/CBNplot-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/R/CBNplot-package.R -------------------------------------------------------------------------------- /R/bngeneplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/R/bngeneplot.R -------------------------------------------------------------------------------- /R/bngeneplotCustom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/R/bngeneplotCustom.R -------------------------------------------------------------------------------- /R/bnpathplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/R/bnpathplot.R -------------------------------------------------------------------------------- /R/bnpathplotCustom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/R/bnpathplotCustom.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/R/data.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/R/utilities.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/README.md -------------------------------------------------------------------------------- /data/exampleEaRes.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/data/exampleEaRes.rda -------------------------------------------------------------------------------- /data/exampleGeneExp.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/data/exampleGeneExp.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/CBNplot-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/CBNplot-package.Rd -------------------------------------------------------------------------------- /man/bngeneplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/bngeneplot.Rd -------------------------------------------------------------------------------- /man/bngeneplotCustom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/bngeneplotCustom.Rd -------------------------------------------------------------------------------- /man/bngenetest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/bngenetest.Rd -------------------------------------------------------------------------------- /man/bnpathplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/bnpathplot.Rd -------------------------------------------------------------------------------- /man/bnpathplotCustom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/bnpathplotCustom.Rd -------------------------------------------------------------------------------- /man/bnpathtest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/bnpathtest.Rd -------------------------------------------------------------------------------- /man/compareBNs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/compareBNs.Rd -------------------------------------------------------------------------------- /man/exampleEaRes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/exampleEaRes.Rd -------------------------------------------------------------------------------- /man/exampleGeneExp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/exampleGeneExp.Rd -------------------------------------------------------------------------------- /man/inferMS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/inferMS.Rd -------------------------------------------------------------------------------- /man/loadSign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/loadSign.Rd -------------------------------------------------------------------------------- /man/obtainPath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/obtainPath.Rd -------------------------------------------------------------------------------- /man/queryCpDistLs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/queryCpDistLs.Rd -------------------------------------------------------------------------------- /man/queryCpDistLw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/man/queryCpDistLw.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-bngeneplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/tests/testthat/test-bngeneplot.R -------------------------------------------------------------------------------- /tests/testthat/test-bnpathplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/tests/testthat/test-bnpathplot.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/CBNplot_basic_usage.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noriakis/CBNplot/HEAD/vignettes/CBNplot_basic_usage.Rmd --------------------------------------------------------------------------------