Skip to content

Commit 0925176

Browse files
committed
pull master
Merge branch 'master' of github.com:stemangiola/tidySingleCellExperiment Conflicts: DESCRIPTION
2 parents 7a41a5b + 8ca4a85 commit 0925176

21 files changed

+432
-174
lines changed

.github/workflows/check-bioc.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
fail-fast: false
5252
matrix:
5353
config:
54-
- { os: ubuntu-latest, r: '4.0', bioc: '3.12', cont: "bioconductor/bioconductor_docker:RELEASE_3_12", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
55-
- { os: macOS-latest, r: '4.0', bioc: '3.12'}
56-
- { os: windows-latest, r: '4.0', bioc: '3.12'}
54+
- { os: ubuntu-latest, r: '4.1', bioc: '3.14', cont: "bioconductor/bioconductor_docker:RELEASE_3_14", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
55+
- { os: macOS-latest, r: '4.1', bioc: '3.14'}
56+
- { os: windows-latest, r: '4.1', bioc: '3.14'}
5757
env:
5858
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
5959
RSPM: ${{ matrix.config.rspm }}
@@ -101,16 +101,16 @@ jobs:
101101
uses: actions/cache@v2
102102
with:
103103
path: ${{ env.R_LIBS_USER }}
104-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_12-r-4.0-${{ hashFiles('.github/depends.Rds') }}
105-
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_12-r-4.0-
104+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_14-r-4.1-${{ hashFiles('.github/depends.Rds') }}
105+
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_14-r-4.1-
106106

107107
- name: Cache R packages on Linux
108108
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
109109
uses: actions/cache@v2
110110
with:
111111
path: /home/runner/work/_temp/Library
112-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_12-r-4.0-${{ hashFiles('.github/depends.Rds') }}
113-
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_12-r-4.0-
112+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_14-r-4.1-${{ hashFiles('.github/depends.Rds') }}
113+
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_14-r-4.1-
114114

115115
- name: Install Linux system dependencies
116116
if: runner.os == 'Linux'
@@ -135,10 +135,10 @@ jobs:
135135
136136
## For installing usethis's dependency gert
137137
brew install libgit2
138-
138+
139139
## To fix x11/cairo error with tidyHeatmap/Complexheatmap here https://github.com/stemangiola/tidybulk/runs/1388237421?check_suite_focus=true#step:14:2134
140140
## Suggested here https://stackoverflow.com/questions/63648591/how-to-install-x11-before-testing-with-github-actions-for-macos
141-
brew install --cask xquartz
141+
brew install --cask xquartz
142142
143143
- name: Install Windows system dependencies
144144
if: runner.os == 'Windows'
@@ -177,7 +177,7 @@ jobs:
177177
## Pass #2 at installing dependencies
178178
message(paste('****', Sys.time(), 'pass number 2 at installing dependencies: any remaining dependencies ****'))
179179
remotes::install_local(dependencies = TRUE, repos = BiocManager::repositories(), build_vignettes = TRUE, upgrade = TRUE)
180-
180+
181181
## For running the checks
182182
message(paste('****', Sys.time(), 'installing rcmdcheck and BiocCheck ****'))
183183
remotes::install_cran("rcmdcheck")
@@ -269,5 +269,6 @@ jobs:
269269
if: failure()
270270
uses: actions/upload-artifact@master
271271
with:
272-
name: ${{ runner.os }}-biocversion-RELEASE_3_12-r-4.0-results
272+
name: ${{ runner.os }}-biocversion-RELEASE_3_14-r-4.1-results
273273
path: check
274+

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Description: tidySingleCellExperiment is an adapter that abstracts the 'SingleCe
99
License: GPL-3
1010
Depends:
1111
R (>= 4.0.0),
12+
ttservice,
1213
SingleCellExperiment
1314
Imports:
1415
SummarizedExperiment,

NAMESPACE

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ S3method(ggplot,SingleCellExperiment)
1818
S3method(glimpse,tidySingleCellExperiment)
1919
S3method(group_by,SingleCellExperiment)
2020
S3method(inner_join,SingleCellExperiment)
21-
S3method(join_features,SingleCellExperiment)
22-
S3method(join_features,default)
2321
S3method(join_transcripts,Seurat)
2422
S3method(join_transcripts,default)
2523
S3method(left_join,SingleCellExperiment)
@@ -78,7 +76,9 @@ export(tidy)
7876
export(unite)
7977
export(unnest)
8078
export(unnest_single_cell_experiment)
79+
importFrom(S4Vectors,"metadata<-")
8180
importFrom(S4Vectors,DataFrame)
81+
importFrom(S4Vectors,metadata)
8282
importFrom(SingleCellExperiment,cbind)
8383
importFrom(SingleCellExperiment,counts)
8484
importFrom(SummarizedExperiment,"colData<-")
@@ -135,6 +135,8 @@ importFrom(rlang,is_spliced)
135135
importFrom(rlang,names2)
136136
importFrom(rlang,quo_name)
137137
importFrom(rlang,quo_squash)
138+
importFrom(stringr,regex)
139+
importFrom(stringr,str_detect)
138140
importFrom(stringr,str_replace)
139141
importFrom(tibble,as_tibble)
140142
importFrom(tibble,enframe)
@@ -147,7 +149,6 @@ importFrom(tidyr,separate)
147149
importFrom(tidyr,spread)
148150
importFrom(tidyr,unite)
149151
importFrom(tidyr,unnest)
150-
importFrom(tidyselect,contains)
151152
importFrom(tidyselect,eval_select)
152-
importFrom(tidyselect,everything)
153+
importFrom(ttservice,join_features)
153154
importFrom(utils,tail)

0 commit comments

Comments
 (0)