├── .Rbuildignore ├── .gitignore ├── CANM.Rproj ├── DESCRIPTION ├── NAMESPACE ├── R ├── CANM.R ├── model.R └── utility_functions.R ├── README.md ├── inst ├── CITATION ├── Dockerfile └── python │ ├── CANM.py │ └── mlp.py └── man ├── ANM_MLP.Rd ├── ANM_XGB.Rd ├── CANM.Rd ├── CANM_data.Rd └── IGCI.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/.gitignore -------------------------------------------------------------------------------- /CANM.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/CANM.Rproj -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/CANM.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/R/CANM.R -------------------------------------------------------------------------------- /R/model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/R/model.R -------------------------------------------------------------------------------- /R/utility_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/R/utility_functions.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/inst/Dockerfile -------------------------------------------------------------------------------- /inst/python/CANM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/inst/python/CANM.py -------------------------------------------------------------------------------- /inst/python/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/inst/python/mlp.py -------------------------------------------------------------------------------- /man/ANM_MLP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/man/ANM_MLP.Rd -------------------------------------------------------------------------------- /man/ANM_XGB.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/man/ANM_XGB.Rd -------------------------------------------------------------------------------- /man/CANM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/man/CANM.Rd -------------------------------------------------------------------------------- /man/CANM_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/man/CANM_data.Rd -------------------------------------------------------------------------------- /man/IGCI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMIRLAB-Group/CANM/HEAD/man/IGCI.Rd --------------------------------------------------------------------------------