This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| get_cell_type_color = function(cell_type_vector){ | |
| cell_type_vector |> | |
| enframe(value = "harmonised_cell_type") |> | |
| left_join( | |
| tribble( | |
| ~harmonised_cell_type, ~palette, | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git remote set-url origin git@github.com:USERNAME/REPOSITORY.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PREMISE | |
| # these implementation of HPCL is highly experimental. | |
| # Therefore the interface, function names, arguments names, types of input | |
| # are subject to change and to be extended. | |
| # At this stage, the input is a named list of Seurat objects. | |
| # In another branch (soon to be integrated), we accept SCE, H5 SCE, and anndata | |
| BiocManager::install("MangiolaLaboratory/HPCell@grammar-hpc", upgrade_dependencies=FALSE) | |
| BiocManager::install("crew", upgrade_dependencies=FALSE) | |
| BiocManager::install("crew.cluster", upgrade_dependencies=FALSE) |
OlderNewer