Skip to content

Commit a10a4c3

Browse files
authored
Prepare v0.1.0 release (#281)
1 parent a1211c2 commit a10a4c3

File tree

8 files changed

+20
-36
lines changed

8 files changed

+20
-36
lines changed

DESCRIPTION

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: anndataR
22
Title: AnnData interoperability in R
3-
Version: 0.99.0
3+
Version: 0.1.0
44
Authors@R: c(
55
person("Robrecht", "Cannoodt", , "robrecht@data-intuitive.com", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-3641-729X", github = "rcannood")),
@@ -19,7 +19,8 @@ Authors@R: c(
1919
person("Chananchida", "Sang-aram", role = "ctb",
2020
comment = c(ORCID = "0000-0002-0922-0822", github = "csangara")),
2121
person("Data Intuitive", , , "info@data-intuitive.com", role = c("fnd", "cph")),
22-
person("Chan Zuckerberg Initiative", role = "fnd")
22+
person("Chan Zuckerberg Initiative", role = "fnd"),
23+
person("scverse consortium", role = "spn")
2324
)
2425
Description: Bring the power and flexibility of AnnData to the R
2526
ecosystem, allowing you to effortlessly manipulate and analyze your
@@ -31,7 +32,7 @@ URL: https://anndatar.data-intuitive.com/,
3132
https://github.com/scverse/anndataR
3233
BugReports: https://github.com/scverse/anndataR/issues
3334
Depends:
34-
R (>= 4.0.0)
35+
R (>= 4.1.0)
3536
Imports:
3637
cli,
3738
lifecycle,

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
YEAR: 2023
2-
COPYRIGHT HOLDER: Robrecht Cannoodt, Luke Zappia, Martin Morgan, Louise Deconinck
2+
COPYRIGHT HOLDER: anndataR authors

NEWS.md

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,9 @@
1-
# anndataR 0.99.0
1+
# anndataR 0.1.0 (inital release candidate)
22

3-
## New features
3+
Initial release candidate of **{anndataR}** including:
44

5-
* PR #158: Change package version from 0.0.0.9000 --> 0.99.0 to align with Bioc devel
6-
versioning standards.
7-
- Update DESCRIPTION file to reflect current release R version used by Bio:
8-
R (>= 3.2.0) --> R (>= 4.3.0).
9-
- Reformat NEWS file to follow some conventions.
10-
11-
* Various PRs: Initial release of anndataR, providing support for working with
12-
AnnData objects in R. Feature list:
13-
- Slots:
14-
- X
15-
- layers
16-
- obs
17-
- obs_names
18-
- var
19-
- var_names
20-
- Backends:
21-
- HDF5AnnData
22-
- InMemoryAnnData
23-
- Converters:
24-
- SingleCellExperiment
25-
- Seurat
26-
27-
5+
- Native reading and writing of H5AD files
6+
- R implementations of `InMemoryAnnData` and `HDF5AnnData` objects
7+
- Conversion between `AnnData` and `SingleCellExperiment` or `Seurat` objects
8+
- Extensive function documentation and vignettes demonstrating usage
9+
- Comprehensive unit testing and identification of known issues

R/AbstractAnnData.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ AbstractAnnData <- R6::R6Class(
213213
#' @return A `SingleCellExperiment` object
214214
to_SingleCellExperiment = function(...) {
215215
lifecycle::deprecate_warn(
216-
"0.99.0",
216+
"0.1.0",
217217
"to_SingleCellExperiment()",
218218
"as_SingleCellExperiment()"
219219
)
@@ -267,7 +267,7 @@ AbstractAnnData <- R6::R6Class(
267267
#' @return A `Seurat` object
268268
to_Seurat = function(...) {
269269
lifecycle::deprecate_warn(
270-
"0.99.0",
270+
"0.1.0",
271271
"to_Seurat()",
272272
"as_Seurat()"
273273
)
@@ -291,7 +291,7 @@ AbstractAnnData <- R6::R6Class(
291291
#' @return An [`InMemoryAnnData`] object
292292
to_InMemoryAnnData = function() {
293293
lifecycle::deprecate_warn(
294-
"0.99.0",
294+
"0.1.0",
295295
"to_InMemoryAnnData()",
296296
"as_InMemoryAnnData()"
297297
)
@@ -330,7 +330,7 @@ AbstractAnnData <- R6::R6Class(
330330
#' @return An [`HDF5AnnData`] object
331331
to_HDF5AnnData = function(...) {
332332
lifecycle::deprecate_warn(
333-
"0.99.0",
333+
"0.1.0",
334334
"to_HDF5AnnDAta()",
335335
"as_HDF5AnnData()",
336336
)

R/as_Seurat.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ as_Seurat <- function(
353353
to_Seurat <- function(...) {
354354
# nolint end: object_name_linter
355355
lifecycle::deprecate_warn(
356-
when = "0.99.0",
356+
when = "0.1.0",
357357
what = "to_Seurat()",
358358
with = "adata$as_Seurat()"
359359
)

R/as_SingleCellExperiment.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ as_SingleCellExperiment <- function(
294294
to_SingleCellExperiment <- function(...) {
295295
# nolint end: object_name_linter
296296
lifecycle::deprecate_warn(
297-
when = "0.99.0",
297+
when = "0.1.0",
298298
what = "to_SingleCellExperiment()",
299299
with = "adata$as_SingleCellExperiment()"
300300
)

R/read_h5ad.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ read_h5ad <- function(
5252

5353
if (lifecycle::is_present(to)) {
5454
lifecycle::deprecate_warn(
55-
when = "0.99.0",
55+
when = "0.1.0",
5656
what = "read_h5ad(to = )",
5757
with = "read_h5ad(as = )",
5858
details = "Overwriting `as` with `to`."

man/anndataR-package.Rd

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)