├── .Rbuildignore ├── .gitignore ├── CoNetinR.Rproj ├── DESCRIPTION ├── NAMESPACE ├── R ├── computeKld.R ├── getNetwork.R └── getPval.R ├── README.md ├── docs ├── articles │ ├── conet_tour.html │ ├── conet_tour.md │ ├── figure_seqtime_tour │ │ ├── unnamed-chunk-6-1.png │ │ └── unnamed-chunk-6-2.png │ └── index.html ├── authors.html ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── pkgdown.css ├── pkgdown.js └── reference │ ├── computeKld.html │ ├── getNetwork.html │ ├── getPval.html │ └── index.html ├── man ├── computeKld.Rd ├── getNetwork.Rd └── getPval.Rd └── vignettes ├── conet_tour.Rmd └── conet_tour.md /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /CoNetinR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/CoNetinR.Rproj -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/computeKld.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/R/computeKld.R -------------------------------------------------------------------------------- /R/getNetwork.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/R/getNetwork.R -------------------------------------------------------------------------------- /R/getPval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/R/getPval.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/README.md -------------------------------------------------------------------------------- /docs/articles/conet_tour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/articles/conet_tour.html -------------------------------------------------------------------------------- /docs/articles/conet_tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/articles/conet_tour.md -------------------------------------------------------------------------------- /docs/articles/figure_seqtime_tour/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/articles/figure_seqtime_tour/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/figure_seqtime_tour/unnamed-chunk-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/articles/figure_seqtime_tour/unnamed-chunk-6-2.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/reference/computeKld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/reference/computeKld.html -------------------------------------------------------------------------------- /docs/reference/getNetwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/reference/getNetwork.html -------------------------------------------------------------------------------- /docs/reference/getPval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/reference/getPval.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /man/computeKld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/man/computeKld.Rd -------------------------------------------------------------------------------- /man/getNetwork.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/man/getNetwork.Rd -------------------------------------------------------------------------------- /man/getPval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/man/getPval.Rd -------------------------------------------------------------------------------- /vignettes/conet_tour.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/vignettes/conet_tour.Rmd -------------------------------------------------------------------------------- /vignettes/conet_tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/CoNetinR/HEAD/vignettes/conet_tour.md --------------------------------------------------------------------------------