├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── R └── sigpro.R ├── README.md ├── SigProfilerExtractorR.Rproj └── man ├── decomposition.Rd ├── importdata.Rd ├── install.Rd └── sigProfilerExtractor.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/LICENSE -------------------------------------------------------------------------------- /R/sigpro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/R/sigpro.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/README.md -------------------------------------------------------------------------------- /SigProfilerExtractorR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/SigProfilerExtractorR.Rproj -------------------------------------------------------------------------------- /man/decomposition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/man/decomposition.Rd -------------------------------------------------------------------------------- /man/importdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/man/importdata.Rd -------------------------------------------------------------------------------- /man/install.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/man/install.Rd -------------------------------------------------------------------------------- /man/sigProfilerExtractor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrovLab/SigProfilerExtractorR/HEAD/man/sigProfilerExtractor.Rd --------------------------------------------------------------------------------