Skip to content

Commit 0257684

Browse files
authored
Merge branch 'master' into unnest_SE
2 parents 4e71b2d + ea293bb commit 0257684

File tree

11 files changed

+313
-366
lines changed

11 files changed

+313
-366
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ dev/*pdf
1515
dev/dplyr-master/*
1616
tidySummarizedExperiment.Rproj
1717
GDCdata
18+
/doc/
19+
/Meta/

DESCRIPTION

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
Type: Package
22
Package: tidySummarizedExperiment
33
Title: Brings SummarizedExperiment to the Tidyverse
4-
Version: 1.9.6
4+
Version: 1.11.1
55
Authors@R: c(person("Stefano", "Mangiola", email = "mangiolastefano@gmail.com",
66
role = c("aut", "cre")) )
7-
Description: tidySummarizedExperiment is an adapter that abstracts the 'SummarizedExperiment' container
8-
in the form of tibble and allows the data manipulation, plotting and nesting using 'tidyverse'
7+
Description: The tidySummarizedExperiment package provides a set of tools for creating and
8+
manipulating tidy data representations of SummarizedExperiment objects. SummarizedExperiment
9+
is a widely used data structure in bioinformatics for storing high-throughput genomic data,
10+
such as gene expression or DNA sequencing data.
11+
The tidySummarizedExperiment package introduces a tidy framework for working with SummarizedExperiment objects.
12+
It allows users to convert their data into a tidy format, where each observation is a row
13+
and each variable is a column. This tidy representation simplifies data manipulation,
14+
integration with other tidyverse packages, and enables seamless integration with the broader
15+
ecosystem of tidy tools for data analysis.
916
License: GPL-3
1017
Depends:
1118
R (>= 4.1.0),
12-
SummarizedExperiment
19+
SummarizedExperiment,
20+
ttservice
1321
Imports:
1422
tibble (>= 3.0.4),
1523
dplyr,
@@ -29,7 +37,8 @@ Imports:
2937
pillar,
3038
stringr,
3139
cli,
32-
fansi
40+
fansi,
41+
stats
3342
Suggests:
3443
BiocStyle,
3544
testthat,

NAMESPACE

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Generated by roxygen2: do not edit by hand
22

33
S3method(as_tibble,SummarizedExperiment)
4+
S3method(bind_cols,RangedSummarizedExperiment)
45
S3method(bind_cols,SummarizedExperiment)
5-
S3method(bind_cols,default)
66
S3method(bind_rows,SummarizedExperiment)
7-
S3method(bind_rows,default)
87
S3method(count,SummarizedExperiment)
9-
S3method(count,default)
108
S3method(distinct,SummarizedExperiment)
119
S3method(extract,SummarizedExperiment)
1210
S3method(filter,SummarizedExperiment)
@@ -38,8 +36,8 @@ S3method(tidy,SummarizedExperiment)
3836
S3method(unite,SummarizedExperiment)
3937
S3method(unnest,tidySummarizedExperiment_nested)
4038
export("%>%")
39+
export()
4140
export(as_tibble)
42-
export(bind_cols)
4341
export(bind_rows)
4442
export(count)
4543
export(distinct)
@@ -70,8 +68,6 @@ export(tidy)
7068
export(unite)
7169
export(unnest)
7270
export(unnest_summarized_experiment)
73-
import(dplyr)
74-
import(tidyr)
7571
importFrom(S4Vectors,"metadata<-")
7672
importFrom(S4Vectors,DataFrame)
7773
importFrom(S4Vectors,SimpleList)
@@ -92,6 +88,8 @@ importFrom(dplyr,distinct)
9288
importFrom(dplyr,distinct_at)
9389
importFrom(dplyr,filter)
9490
importFrom(dplyr,full_join)
91+
importFrom(dplyr,group_by)
92+
importFrom(dplyr,group_by_drop_default)
9593
importFrom(dplyr,inner_join)
9694
importFrom(dplyr,left_join)
9795
importFrom(dplyr,mutate)
@@ -145,6 +143,7 @@ importFrom(rlang,names2)
145143
importFrom(rlang,quo_is_null)
146144
importFrom(rlang,quo_name)
147145
importFrom(rlang,quo_squash)
146+
importFrom(stats,setNames)
148147
importFrom(stringr,regex)
149148
importFrom(stringr,str_detect)
150149
importFrom(stringr,str_replace)
@@ -163,5 +162,7 @@ importFrom(tidyr,unite)
163162
importFrom(tidyr,unnest)
164163
importFrom(tidyselect,eval_select)
165164
importFrom(tidyselect,one_of)
165+
importFrom(ttservice,bind_cols)
166+
importFrom(ttservice,bind_rows)
166167
importFrom(utils,tail)
167168
importFrom(vctrs,new_data_frame)

0 commit comments

Comments
 (0)