Skip to content

Add wrapper function to combine CreateMergedTcrClonotypeFile and RunConga #175

Add wrapper function to combine CreateMergedTcrClonotypeFile and RunConga

Add wrapper function to combine CreateMergedTcrClonotypeFile and RunConga #175

Workflow file for this run

# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
branches: [ master ]
pull_request:
name: R Build and Checks
jobs:
R-CMD-check:
runs-on: ubuntu-${{ matrix.config.os }}
name: ubuntu-${{ matrix.config.os }} (${{ matrix.config.r }} / ${{ matrix.config.bioc }})
strategy:
fail-fast: false
matrix:
config:
- {os: 22.04, r: 'next', bioc: 'devel'}
- {os: 22.04, r: 'next', bioc: '3.17', pkgdown: "true"}
- {os: 22.04, r: '4.2', bioc: '3.16'}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
- uses: r-lib/actions/setup-pandoc@v2
# NOTE: libglpk-dev was added due to iGraph install issues
# libpoppler-cpp-dev added for pdftools, which is part of cellhashR
# libmagick++-dev added for magick
# libhdf5-dev added for cellmembrane/SeuratDisk
# libsodium-dev installed for VISION
- name: Install libglpk-dev
run: |
sudo apt-get update && sudo apt-get install -yq libglpk-dev libpoppler-cpp-dev libmagick++-dev libhdf5-dev libsodium-dev
# Note: the environment variable R_BIOC_VERSION is set to force remotes::install_bioc to follow the proper version
- name: Setup Bioconductor
run: |
install.packages('devtools')
if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager");
BiocManager::install(version = "${{ matrix.config.bioc }}", ask = FALSE);
cat(append = TRUE, file = "~/.Rprofile", "options(repos = BiocManager::repositories());")
cat(append = TRUE, file = "~/.Rprofile", "Sys.setenv(R_BIOC_VERSION=as.character(BiocManager::version()));");
shell: Rscript {0}
- name: Query dependencies
run: |
if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager");
BiocManager::install(version = "${{ matrix.config.bioc }}", ask = FALSE);cat(append = TRUE, file = "~/.Rprofile.site", "options(repos = BiocManager::repositories());")
install.packages('remotes')
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version")
shell: Rscript {0}
- name: Cache R packages
if: runner.os != 'Windows'
uses: actions/cache@v3
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-${{ matrix.config.bioc }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-${{ matrix.config.bioc }}-${{ secrets.CACHE_VERSION || 1 }}-
# The install_github() on remotes is to ensure system_requirements() supports 22.04
- name: Install r-lib/remotes
run: |
remotes::install_github("r-lib/remotes", force = TRUE)
print(paste0("Remotes version: ", packageVersion("remotes")))
shell: Rscript {0}
- name: Install system dependencies
if: runner.os == 'Linux'
run: |
while read -r cmd
do
eval sudo $cmd
done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "${{ matrix.config.os }}"))')
- name: Install dependencies
run: |
getOption('repos')
remotes::install_deps(dependencies = TRUE, upgrade = "always", repos = BiocManager::repositories())
remotes::install_cran("rcmdcheck")
shell: Rscript {0}
- name: Session info
run: |
options(width = 100)
pkgs <- installed.packages()[, "Package"]
sessioninfo::session_info(pkgs, include_base = TRUE)
shell: Rscript {0}
- name: Check
env:
_R_CHECK_CRAN_INCOMING_: false
run: rcmdcheck::rcmdcheck(args = c("--no-manual"), error_on = "error", check_dir = "check")
shell: Rscript {0}
- name: Show testthat output
if: always()
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true
shell: bash
- name: Upload check results
if: failure()
uses: actions/upload-artifact@main
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: check