├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── bulkPseudotime.R ├── class.R ├── genericMethods.R └── utils-pipe.R ├── README.md ├── bulkPseudotime.Rproj └── man ├── bulkPseudotime.Rd ├── bulkPseudotimeClass-class.Rd ├── pipe.Rd ├── pseudotime_heatmap-bulkPseudotimeClass-method.Rd ├── pseudotime_heatmap.Rd ├── pseudotime_line-bulkPseudotimeClass-method.Rd └── pseudotime_line.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: bulkPseudotime authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/bulkPseudotime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/R/bulkPseudotime.R -------------------------------------------------------------------------------- /R/class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/R/class.R -------------------------------------------------------------------------------- /R/genericMethods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/R/genericMethods.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/README.md -------------------------------------------------------------------------------- /bulkPseudotime.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/bulkPseudotime.Rproj -------------------------------------------------------------------------------- /man/bulkPseudotime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/man/bulkPseudotime.Rd -------------------------------------------------------------------------------- /man/bulkPseudotimeClass-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/man/bulkPseudotimeClass-class.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/pseudotime_heatmap-bulkPseudotimeClass-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/man/pseudotime_heatmap-bulkPseudotimeClass-method.Rd -------------------------------------------------------------------------------- /man/pseudotime_heatmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/man/pseudotime_heatmap.Rd -------------------------------------------------------------------------------- /man/pseudotime_line-bulkPseudotimeClass-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/man/pseudotime_line-bulkPseudotimeClass-method.Rd -------------------------------------------------------------------------------- /man/pseudotime_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junjunlab/bulkPseudotime/HEAD/man/pseudotime_line.Rd --------------------------------------------------------------------------------