Skip to content

Commit

Permalink
Merge pull request #86 from samuel-marsh/release/1.1.1
Browse files Browse the repository at this point in the history
Release 1.1.1 release
  • Loading branch information
samuel-marsh authored Jan 13, 2023
2 parents f93eda2 + f3bae7c commit 2b93d89
Show file tree
Hide file tree
Showing 258 changed files with 3,308 additions and 2,888 deletions.
6 changes: 3 additions & 3 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 1.1.0
Date: 2022-12-22 21:24:58 UTC
SHA: f0aff7dee2b0af306b2a055748640c8b31ccdebc
Version: 1.1.1
Date: 2023-01-13 15:02:59 UTC
SHA: a78523f9f8648a034a64a2f7455ddb8acfbca410
12 changes: 6 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ Package: scCustomize
Type: Package
Title: Custom Visualizations & Functions for Streamlined Analyses of Single Cell Sequencing
Description: Collection of functions created and/or curated to aid in the visualization and analysis of single-cell data using 'R'. 'scCustomize' aims to provide 1) Customized visualizations for aid in ease of use and to create more aesthetic and functional visuals. 2) Improve speed/reproducibility of common tasks/pieces of code in scRNA-seq analysis with a single or group of functions. For citation please use: Marsh SE (2021) "Custom Visualizations & Functions for Streamlined Analyses of Single Cell Sequencing" <doi:10.5281/zenodo.5706430>.
Version: 1.1.0
Date: 2022-12-22
Version: 1.1.1
Date: 2023-01-13
Authors@R: c(
person(given = "Samuel", family = "Marsh", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-3012-6945")),
person(given = "Ming", family = "Tang", role = c("ctb"), email = "[email protected]"),
person(given = 'Velina', family = 'Kozareva', role = c('ctb')),
person("Lucas", "Graybuck", email = "[email protected]", role = c('ctb'))
)
URL: https://cran.r-project.org/package=scCustomize https://github.com/samuel-marsh/scCustomize, https://samuel-marsh.github.io/scCustomize/, https://doi.org/10.5281/zenodo.5706431
URL: https://github.com/samuel-marsh/scCustomize, https://samuel-marsh.github.io/scCustomize/, https://doi.org/10.5281/zenodo.5706431
BugReports: https://github.com/samuel-marsh/scCustomize/issues
Depends: R (>= 4.0.0),
Seurat (>= 4.3.0)
Expand Down Expand Up @@ -46,8 +46,7 @@ Imports:
stringi,
stringr,
tibble,
tidyr,
viridis
tidyr
Suggests:
ComplexHeatmap,
dittoSeq,
Expand All @@ -61,7 +60,8 @@ Suggests:
rmarkdown,
tidyselect,
tidyverse,
qs
qs,
viridis
License: GPL (>= 3)
Encoding: UTF-8
LazyData: true
Expand Down
4 changes: 3 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated by roxygen2: do not edit by hand

S3method(Fetch_Meta,Seurat)
S3method(Fetch_Meta,liger)
export(Add_CellBender_Diff)
export(Add_Cell_Complexity_LIGER)
export(Add_Cell_Complexity_Seurat)
Expand Down Expand Up @@ -136,7 +138,6 @@ import(parallel)
import(patchwork)
import(pbapply)
import(rlang)
import(viridis)
importFrom(Matrix,readMM)
importFrom(Matrix,rowSums)
importFrom(Seurat,AddMetaData)
Expand Down Expand Up @@ -196,6 +197,7 @@ importFrom(magrittr,"%>%")
importFrom(methods,as)
importFrom(methods,new)
importFrom(methods,slot)
importFrom(paletteer,paletteer_c)
importFrom(paletteer,paletteer_d)
importFrom(patchwork,plot_annotation)
importFrom(patchwork,plot_layout)
Expand Down
25 changes: 24 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# scCustomize 1.1.1 (2023-01-13)
## Added
- Added `label_color_num` parameter to `PalettePlot` allow control of color labeling.
- Added ability to rotate x-axis of `Stacked_VlnPlot` 90 degrees or 45 (previously possible) ([#84](https://github.com/samuel-marsh/scCustomize/issues/84)).
- Added error checks to `Merge_Seurat_List` to avoid ambiguous error messages on failure.
- Added `Case_Check` checks/messages to all feature-based plotting functions.

## Changed
- **BREAKING CHANGE** Parameter in `PalettePlot` has been changed from `palette` to `pal`.
- Updated `PalettePlot` to support `pal` of class "colors".
- Moved viridis package to Suggests and use paletteer package for viridis palette shortcut functions.
- Fixed color palette continuity in `Cluster_Highlight_Plot` and `Meta_Highlight_Plot`.
- `Fetch_Meta` is now S3 generic function that can handle either Seurat or LIGER objects.
- Rearrange base R code within `R/` scripts for better organization.
- Completed move of all scCustomize error/warning messages from base R to cli/rlang framework.
- Move feature checking to internal function.

## Fixes
- Fixed potential for column name collision error in `Add_Mito_Ribo_Seurat` and `Add_Mito_Ribo_LIGER`.
- Fixed `Add_Mito_Ribo_Seurat` to respect provided `mito_name`, `ribo_name` and `mito_ribo_name` values.
- Updated out-dated documentation for number of package functions.
- Typo/styling fixes.

# scCustomize 1.1.0 (2022-12-22)
## Added
- Added `merge` parameter to `Read10X_GEO`, `Read10X_h5_GEO`, `Read_GEO_Delim` and `Read_CellBender_h5_Multi_File`.
Expand Down Expand Up @@ -121,7 +144,7 @@

# scCustomize 0.6.3 (2021-12-16)
## Fixes
- Fixed `Read_Metrics_10X` errors that occured due to differing outputs depending on Cell Ranger version or type of assay.
- Fixed `Read_Metrics_10X` errors that occurred due to differing outputs depending on Cell Ranger version or type of assay.
- Added direct `importFrom` for `DefaultDimReduc` from SeuratObject to avoid potential errors.


Expand Down
Loading

0 comments on commit 2b93d89

Please sign in to comment.