Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit 2036f24

Browse files
authored
Merge pull request #34 from stemangiola/fix-actions
Attempt to fix github actions
2 parents f2d26db + 98a9426 commit 2036f24

File tree

15 files changed

+645
-719
lines changed

15 files changed

+645
-719
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
^.*\.Rproj$
22
^\.Rproj\.user$
33
^dev
4+
^\.github$
5+
^LICENSE\.md$

.github/workflows/check-bioc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ jobs:
8181
## R is already included in the Bioconductor docker images
8282
- name: Setup R from r-lib
8383
if: runner.os != 'Linux'
84-
uses: r-lib/actions/setup-r@master
84+
uses: r-lib/actions/setup-r@v2
8585
with:
8686
r-version: ${{ matrix.config.r }}
8787

8888
## pandoc is already included in the Bioconductor docker images
8989
- name: Setup pandoc from r-lib
9090
if: runner.os != 'Linux'
91-
uses: r-lib/actions/setup-pandoc@master
91+
uses: r-lib/actions/setup-pandoc@v2
9292

9393
- name: Query dependencies
9494
run: |
@@ -149,7 +149,7 @@ jobs:
149149
- name: Install BiocManager
150150
run: |
151151
message(paste('****', Sys.time(), 'installing BiocManager ****'))
152-
remotes::install_cran("BiocManager")
152+
remotes::install_github("Bioconductor/BiocManager")
153153
shell: Rscript {0}
154154

155155
- name: Set BiocVersion
@@ -270,7 +270,7 @@ jobs:
270270

271271
- name: Upload check results
272272
if: failure()
273-
uses: actions/upload-artifact@master
273+
uses: actions/upload-artifact@v2
274274
with:
275275
name: ${{ runner.os }}-biocversion-RELEASE_3_15-r-4.2-results
276276
path: check

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ HCAquery.Rproj
99
split_files.makeflow
1010
._*
1111
.DS_Store
12+
inst/doc

DESCRIPTION

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,42 @@ Authors@R: c(person("Stefano", "Mangiola", email = "[email protected]",
66
role = c("aut", "cre"))
77
)
88
Description: Queries the Human Cell Atlas.
9-
License: GPL-3
9+
License: GPL (>= 3)
1010
Depends:
1111
R (>= 4.1.0)
1212
Imports:
13-
dplyr,
14-
SummarizedExperiment,
15-
SingleCellExperiment,
16-
tidySingleCellExperiment,
17-
purrr,
18-
zellkonverter,
19-
BiocGenerics,
20-
glue,
21-
HDF5Array,
22-
DBI,
23-
RSQLite,
24-
dbplyr
13+
dplyr,
14+
SummarizedExperiment,
15+
SingleCellExperiment,
16+
tidySingleCellExperiment,
17+
purrr,
18+
BiocGenerics,
19+
glue,
20+
HDF5Array,
21+
DBI,
22+
RSQLite,
23+
magrittr,
24+
assertthat,
25+
SeuratObject,
26+
Seurat,
27+
methods,
28+
rlang
2529
Suggests:
2630
here,
2731
stringr,
28-
Seurat,
2932
tidyseurat,
3033
scMerge,
3134
DelayedArray,
3235
openssl,
3336
cellxgenedp,
34-
SingleCellExperiment,
3537
celldex,
3638
SingleR,
3739
tools,
3840
rmarkdown,
39-
SeuratObject
40-
VignetteBuilder:
41-
knitr
42-
RdMacros:
43-
lifecycle
41+
zellkonverter,
42+
dbplyr,
43+
knitr,
44+
testthat
4445
Biarch: true
4546
biocViews: AssayDomain, Infrastructure, RNASeq, DifferentialExpression, GeneExpression, Normalization, Clustering, QualityControl, Sequencing, Transcription, Transcriptomics
4647
Encoding: UTF-8
@@ -49,3 +50,4 @@ RoxygenNote: 7.2.1
4950
LazyDataCompression: xz
5051
URL: https://github.com/stemangiola/HCAquery
5152
BugReports: https://github.com/stemangiola/HCAquery/issues
53+
VignetteBuilder: knitr

0 commit comments

Comments
 (0)