Skip to content

Commit 78f71fe

Browse files
authored
Merge pull request #159 from mojaveazure/release/5.0.0
Release 5.0.0
2 parents 9788970 + bb4ca22 commit 78f71fe

File tree

251 files changed

+18811
-2935
lines changed

Some content is hidden

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

251 files changed

+18811
-2935
lines changed

.Rbuildignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
^renv$
2+
^renv\.lock$
13
^.*\.Rproj$
24
^\.Rproj\.user$
35
^\.git$
@@ -20,3 +22,4 @@
2022
^inst$
2123
^tests$
2224
^LICENSE\.md$
25+
^vignettes/articles$

.github/workflows/pkgdown.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- uses: r-lib/actions/setup-r@v2
2626
with:
2727
use-public-rspm: true
28+
extra-repositories: https://bnprks.r-universe.dev
2829
- uses: r-lib/actions/setup-r-dependencies@v2
2930
with:
3031
extra-packages: local::.

DESCRIPTION

Lines changed: 36 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,43 @@
11
Package: SeuratObject
22
Type: Package
33
Title: Data Structures for Single Cell Data
4-
Version: 4.1.4
4+
Version: 5.0.0
55
Authors@R: c(
66
person(given = 'Rahul', family = 'Satija', email = 'rsatija@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0001-9448-8833')),
7-
person(given = 'Andrew', family = 'Butler', email = 'abutler@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0003-3608-0463')),
87
person(given = 'Paul', family = 'Hoffman', email = 'seurat@nygenome.org', role = c('aut', 'cre'), comment = c(ORCID = '0000-0002-7693-8957')),
8+
person(given = "Yuhan", family = "Hao", email = 'yhao@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0002-1810-0822')),
9+
person(given = "Austin", family = "Hartman", email = 'ahartman@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0001-7278-1852')),
10+
person(given = "Gesmira", family = "Molla", email = 'gmolla@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0002-8628-5056')),
11+
person(given = 'Andrew', family = 'Butler', email = 'abutler@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0003-3608-0463')),
912
person(given = 'Tim', family = 'Stuart', email = 'tstuart@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0002-3044-0897')),
13+
person(given = "Madeline", family = "Kowalski", email = "mkowalski@nygenome.org", role = "ctb", comment = c(ORCID = "0000-0002-5655-7620")),
14+
person(given = "Saket", family = "Choudhary", email = "schoudhary@nygenome.org", role = "ctb", comment = c(ORCID = "0000-0001-5202-7633")),
15+
person(given = "Skylar", family = "Li", email = "sli@nygenome.org", role = "ctb"),
16+
person(given = "Longda", family = "Jiang", email = "ljiang@nygenome.org", role = "ctb", comment = c(ORCID = "0000-0003-4964-6497")),
1017
person(given = 'Jeff', family = 'Farrell', email = 'jfarrell@g.harvard.edu', role = 'ctb'),
1118
person(given = 'Shiwei', family = 'Zheng', email = 'szheng@nygenome.org', role = 'ctb', comment = c(ORCID = '0000-0001-6682-6743')),
1219
person(given = 'Christoph', family = 'Hafemeister', email = 'chafemeister@nygenome.org', role = 'ctb', comment = c(ORCID = '0000-0001-6365-8254')),
13-
person(given = 'Patrick', family = 'Roelli', email = 'proelli@nygenome.org', role = 'ctb'),
14-
person(given = "Yuhan", family = "Hao", email = 'yhao@nygenome.org', role = 'ctb', comment = c(ORCID = '0000-0002-1810-0822'))
20+
person(given = 'Patrick', family = 'Roelli', email = 'proelli@nygenome.org', role = 'ctb')
1521
)
1622
Description: Defines S4 classes for single-cell genomic data and associated
1723
information, such as dimensionality reduction embeddings, nearest-neighbor
1824
graphs, and spatially-resolved coordinates. Provides data access methods and
1925
R-native hooks to ensure the Seurat object is familiar to other R users. See
2026
Satija R, Farrell J, Gennert D, et al (2015) <doi:10.1038/nbt.3192>,
2127
Macosko E, Basu A, Satija R, et al (2015) <doi:10.1016/j.cell.2015.05.002>,
22-
and Stuart T, Butler A, et al (2019) <doi:10.1016/j.cell.2019.05.031> for
28+
and Stuart T, Butler A, et al (2019) <doi:10.1016/j.cell.2019.05.031>,
29+
Hao Y, Hao S, et al (2021) <doi:10.1016/j.cell.2021.04.048> and
30+
Hao Y, et al (2023) <doi:10.1101/2022.02.24.481684> for
2331
more details.
2432
URL: https://mojaveazure.github.io/seurat-object/,
2533
https://github.com/mojaveazure/seurat-object
26-
BugReports:
27-
https://github.com/mojaveazure/seurat-object/issues
34+
BugReports: https://github.com/mojaveazure/seurat-object/issues
2835
License: MIT + file LICENSE
2936
Encoding: UTF-8
3037
LazyData: true
3138
RoxygenNote: 7.2.3
39+
Additional_repositories:
40+
https://bnprks.r-universe.dev
3241
Depends:
3342
R (>= 4.0.0),
3443
sp (>= 1.5.0)
@@ -44,32 +53,46 @@ Imports:
4453
rlang (>= 0.4.7),
4554
stats,
4655
tools,
47-
utils
56+
utils,
57+
spam,
58+
lifecycle,
59+
generics
4860
Suggests:
61+
DelayedArray,
62+
fs (>= 1.5.2),
4963
ggplot2,
50-
sf,
51-
testthat
64+
HDF5Array,
65+
rmarkdown,
66+
testthat,
67+
BPCells,
68+
sf (>= 1.0.0)
5269
Collate:
5370
'RcppExports.R'
5471
'zzz.R'
5572
'generics.R'
73+
'keymixin.R'
5674
'graph.R'
75+
'default.R'
5776
'assay.R'
77+
'logmap.R'
78+
'layers.R'
79+
'assay5.R'
5880
'centroids.R'
5981
'command.R'
82+
'compliance.R'
6083
'data.R'
61-
'default.R'
6284
'jackstraw.R'
6385
'dimreduc.R'
6486
'segmentation.R'
65-
'keymixin.R'
6687
'molecules.R'
6788
'spatial.R'
6889
'fov.R'
69-
'logmap.R'
7090
'neighbor.R'
7191
'seurat.R'
92+
'sparse.R'
7293
'utils.R'
7394
LinkingTo: Rcpp, RcppEigen
95+
Enhances:
96+
Seurat
7497
Config/Needs/website:
7598
pkgdown

0 commit comments

Comments
 (0)