Skip to content

Commit 2b93d89

Browse files
authored
Merge pull request #86 from samuel-marsh/release/1.1.1
Release 1.1.1 release
2 parents f93eda2 + f3bae7c commit 2b93d89

File tree

258 files changed

+3308
-2888
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+3308
-2888
lines changed

CRAN-SUBMISSION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Version: 1.1.0
2-
Date: 2022-12-22 21:24:58 UTC
3-
SHA: f0aff7dee2b0af306b2a055748640c8b31ccdebc
1+
Version: 1.1.1
2+
Date: 2023-01-13 15:02:59 UTC
3+
SHA: a78523f9f8648a034a64a2f7455ddb8acfbca410

DESCRIPTION

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ Package: scCustomize
22
Type: Package
33
Title: Custom Visualizations & Functions for Streamlined Analyses of Single Cell Sequencing
44
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>.
5-
Version: 1.1.0
6-
Date: 2022-12-22
5+
Version: 1.1.1
6+
Date: 2023-01-13
77
Authors@R: c(
88
person(given = "Samuel", family = "Marsh", email = "samuel.marsh@childrens.harvard.edu", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-3012-6945")),
99
person(given = "Ming", family = "Tang", role = c("ctb"), email = "tangming2005@gmail.com"),
1010
person(given = 'Velina', family = 'Kozareva', role = c('ctb')),
1111
person("Lucas", "Graybuck", email = "lucasg@alleninstitute.org", role = c('ctb'))
1212
)
13-
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
13+
URL: https://github.com/samuel-marsh/scCustomize, https://samuel-marsh.github.io/scCustomize/, https://doi.org/10.5281/zenodo.5706431
1414
BugReports: https://github.com/samuel-marsh/scCustomize/issues
1515
Depends: R (>= 4.0.0),
1616
Seurat (>= 4.3.0)
@@ -46,8 +46,7 @@ Imports:
4646
stringi,
4747
stringr,
4848
tibble,
49-
tidyr,
50-
viridis
49+
tidyr
5150
Suggests:
5251
ComplexHeatmap,
5352
dittoSeq,
@@ -61,7 +60,8 @@ Suggests:
6160
rmarkdown,
6261
tidyselect,
6362
tidyverse,
64-
qs
63+
qs,
64+
viridis
6565
License: GPL (>= 3)
6666
Encoding: UTF-8
6767
LazyData: true

NAMESPACE

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Generated by roxygen2: do not edit by hand
22

3+
S3method(Fetch_Meta,Seurat)
4+
S3method(Fetch_Meta,liger)
35
export(Add_CellBender_Diff)
46
export(Add_Cell_Complexity_LIGER)
57
export(Add_Cell_Complexity_Seurat)
@@ -136,7 +138,6 @@ import(parallel)
136138
import(patchwork)
137139
import(pbapply)
138140
import(rlang)
139-
import(viridis)
140141
importFrom(Matrix,readMM)
141142
importFrom(Matrix,rowSums)
142143
importFrom(Seurat,AddMetaData)
@@ -196,6 +197,7 @@ importFrom(magrittr,"%>%")
196197
importFrom(methods,as)
197198
importFrom(methods,new)
198199
importFrom(methods,slot)
200+
importFrom(paletteer,paletteer_c)
199201
importFrom(paletteer,paletteer_d)
200202
importFrom(patchwork,plot_annotation)
201203
importFrom(patchwork,plot_layout)

NEWS.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# scCustomize 1.1.1 (2023-01-13)
2+
## Added
3+
- Added `label_color_num` parameter to `PalettePlot` allow control of color labeling.
4+
- Added ability to rotate x-axis of `Stacked_VlnPlot` 90 degrees or 45 (previously possible) ([#84](https://github.com/samuel-marsh/scCustomize/issues/84)).
5+
- Added error checks to `Merge_Seurat_List` to avoid ambiguous error messages on failure.
6+
- Added `Case_Check` checks/messages to all feature-based plotting functions.
7+
8+
## Changed
9+
- **BREAKING CHANGE** Parameter in `PalettePlot` has been changed from `palette` to `pal`.
10+
- Updated `PalettePlot` to support `pal` of class "colors".
11+
- Moved viridis package to Suggests and use paletteer package for viridis palette shortcut functions.
12+
- Fixed color palette continuity in `Cluster_Highlight_Plot` and `Meta_Highlight_Plot`.
13+
- `Fetch_Meta` is now S3 generic function that can handle either Seurat or LIGER objects.
14+
- Rearrange base R code within `R/` scripts for better organization.
15+
- Completed move of all scCustomize error/warning messages from base R to cli/rlang framework.
16+
- Move feature checking to internal function.
17+
18+
## Fixes
19+
- Fixed potential for column name collision error in `Add_Mito_Ribo_Seurat` and `Add_Mito_Ribo_LIGER`.
20+
- Fixed `Add_Mito_Ribo_Seurat` to respect provided `mito_name`, `ribo_name` and `mito_ribo_name` values.
21+
- Updated out-dated documentation for number of package functions.
22+
- Typo/styling fixes.
23+
124
# scCustomize 1.1.0 (2022-12-22)
225
## Added
326
- Added `merge` parameter to `Read10X_GEO`, `Read10X_h5_GEO`, `Read_GEO_Delim` and `Read_CellBender_h5_Multi_File`.
@@ -121,7 +144,7 @@
121144

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

127150

0 commit comments

Comments
 (0)