Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eccb2024 #6

Open
wants to merge 21 commits into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 0 additions & 168 deletions .github/workflows/basic_checks.yaml

This file was deleted.

57 changes: 57 additions & 0 deletions .github/workflows/rworkflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: rworkflows
'on':
push:
branches:
- master
- main
- devel
- RELEASE_**
pull_request:
branches:
- master
- main
- devel
- RELEASE_**
jobs:
rworkflows:
permissions: write-all
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
container: ${{ matrix.config.cont }}
strategy:
fail-fast: ${{ false }}
matrix:
config:
- os: ubuntu-latest
bioc: devel
r: auto
cont: ghcr.io/bioconductor/bioconductor_docker:devel
rspm: ~
- os: macOS-latest
bioc: release
r: auto
cont: ~
rspm: ~
- os: windows-latest
bioc: release
r: auto
cont: ~
rspm: ~
steps:
- uses: neurogenomics/rworkflows@master
with:
run_bioccheck: ${{ false }}
run_rcmdcheck: ${{ true }}
as_cran: ${{ true }}
run_vignettes: ${{ true }}
has_testthat: ${{ true }}
run_covr: ${{ true }}
run_pkgdown: ${{ true }}
has_runit: ${{ false }}
has_latex: ${{ false }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run_docker: ${{ false }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
runner_os: ${{ runner.os }}
cache_version: cache-v1
docker_registry: ghcr.io
36 changes: 24 additions & 12 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: tidyomicsWorkshop
Title: Tidy genomic and transcriptomic analyses
Version: 0.16.3
Version: 0.17.0
Authors@R:
c(
person(given = "Stefano",
Expand All @@ -14,8 +14,7 @@ Authors@R:
email = "michaelisaiahlove@gmail.com",
comment = c(ORCID = "0000-0001-8401-0545"))
)
Description: Workflow for BioC conference showing tidy genomic
and transcriptomic analyses.
Description: Workshop material for tidyomics, including transcriptomics and genomics.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Expand All @@ -28,10 +27,16 @@ Depends:
Imports:
SummarizedExperiment,
SingleCellExperiment,
SeuratObject,
Seurat,
tidySummarizedExperiment,
tidySingleCellExperiment,
tidygate,
tidyseurat,
SpatialExperiment,
tidySpatialExperiment,
plyranges,
nullranges,
stats,
utils,
tibble,
Expand All @@ -42,23 +47,30 @@ Imports:
tidyr,
purrr,
forcats,
ggrepel,
plotly,
igraph,
broom,
devtools,
rlang,
magrittr,
R.utils,
Suggests:
knitr,
rmarkdown,
pkgdown,
STexampleData,
dittoSeq,
tidybulk,
glue,
scater,
batchelor
Suggests:
knitr,
rmarkdown,
pkgdown
scran,
batchelor,
ggrepel,
plotly,
igraph,
broom,
ggspavis
Remotes:
satijalab/seurat-wrappers,
stemangiola/tidySingleCellExperiment,
william-hutchison/tidySpatialExperiment
Biarch: true
URL: https://tidy-biology.github.io/TidyGenomicsTranscriptomicsWorkshop
BugReports: https://github.com/tidy-biology/TidyGenomicsTranscriptomicsWorkshop/issues/new/choose
Expand Down
4 changes: 4 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Generated by roxygen2: do not edit by hand

import(SeuratObject)
importFrom(SingleCellExperiment,SingleCellExperiment)
importFrom(SummarizedExperiment,SummarizedExperiment)
importFrom(ggplot2,theme)
Loading
Loading