Version 0.4
pointillism 0.4.0 (2019-08-07)
Initial support for monocle3 cell_data_set class.
Major changes:
- Reworked internal S4 function names.
- Updated internal example data.
- Moved cell-cycle and cell-type markers from Google Sheets here into the package internally at
inst/extdata/markers/. - Working on preliminary support for monocle3
cell_data_set.
pointillism 0.4.1 (2019-08-12)
Minor changes:
- Bug fix for gene symbols being sanitized by
as.data.frameoras_tibblecoercion inconsitently across R versions. Switched to usingascoercion fromDataFrametodata.frameinstead. - Improved message consistency, removing use of backticks in favor of single quotes, which is now the convention across basejump.
- Lintr check fixes.
pointillism 0.4.2 (2019-09-04)
Major changes:
- Reworked internal code to remove dplyr, magrittr, rlang, tibble, and tidyr dependencies. Consistently using base R and Bioconductor S4 methods internally instead, working primarily with
DataFrameinstead oftbl_df.
pointillism 0.4.3 (2019-10-26)
Minor changes:
- Bug fix for legacy Seurat objects created via pointillism with named rownames containing gene identifiers mapped to the gene symbols. Now the coercion method for
SeurattoSingleCellExperimentchecks for this and sanitizes the names automatically so the resultingSingleCellExperimentis valid.
pointillism 0.4.5 (2020-01-03)
Major changes:
-
normalize: reworked internal code to reflect changes in scater package. Instead of callingnormalizeSCEornormalizeinternally,normalizeCountsis the recommended method for returningnormcountsandlogcountsassays that can be slotted inassaysof theSingleCellExperimentobject. - Deprecated
plotDotin favor ofplotDots(note plural spelling change). This reads better and improves consistency with conventions used in scater.
Minor changes:
- Removed user-defined option to reduce verbosity, where applicable. If these functions are too noisy, we’ll tone it down in the future.
pointillism 0.4.6 (2020-01-20)
Minor changes:
- Reworked NAMESPACE to support migration of bioverbs package to AcidGenerics.
pointillism 0.4.7 (2020-01-30)
Minor changes:
- Now using cli package for messages.
- Updated basejump dependencies.
pointillism 0.4.8 (2020-02-20)
Major changes:
-
plotReducedDim,plotMarker: Changed title handling support. Switched from usingtitleargument in favor oflabels, which better matches the conventions now used in AcidPlots.
Minor changes:
- Seurat methods now show resolution parameter used to map idents, where applicable. Currently this applies to
plotReducedDimfamily of functions.
pointillism 0.4.9 (2020-02-21)
Minor changes:
-
runZinbwave: Updated internal zinbwave code to be compatible with Bioconductor 3.11 release. - Updated test data.
pointillism 0.4.10 (2020-06-11)
New functions:
-
plotStackedBarPlot: Added support for quickly generating stacked bar plots of cluster frequencies.
Minor changes:
- Dependency updates.
pointillism 0.4.11 (2020-06-27)
Major changes:
-
runSeurat: ChangedumapMethoddefault from “umap-learn” to “uwot”. I’m having trouble getting the latest version of umap-learn (0.4.4) to play nicely with Seurat (3.1.5) via reticulate (1.16). Note that additional internal arguments are now passed toSeurat::RunUMAPwhen necessary.