Skip to content

Commit

Permalink
Merge pull request #177 from jr-leary7/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jr-leary7 authored Dec 6, 2023
2 parents fc1198e + 88a2a3c commit 6d2f100
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
Binary file modified .DS_Store
Binary file not shown.
12 changes: 5 additions & 7 deletions .github/workflows/bioc-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,14 @@ jobs:
install.packages("BiocManager")
BiocManager::install("BiocCheck")
shell: Rscript {0}
- name: Run BiocCheck
- name: Run BiocCheck & BiocCheckGitClone
run: |
bc_res <- BiocCheck::BiocCheck()
print(paste0("Errors: ", length(bc_res$error)))
print(paste0("Warnings: ", length(bc_res$warning)))
print(paste0("Notes: ", length(bc_res$note)))
n_errors <- length(bc_res$error)
Sys.setenv("BC_ERRORS" = n_errors)
bc_gc_res <- BiocCheck::BiocCheckGitClone()
n_errors <- length(bc_res$error) + length(bc_gc_res$error)
Sys.setenv("BC_ERRORS_TOTAL" = n_errors)
shell: Rscript {0}
- name: Check BiocCheck results
run: |
if [[ $BC_ERRORS -gt 0 ]]; then exit 1; else echo "BiocCheck passed!"; fi
if [[ $BC_ERRORS_TOTAL -gt 0 ]]; then exit 1; else echo "BiocCheck passed!"; fi
shell: bash
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ inst/doc
codecov.yml
/doc/
/Meta/
R/.DS_Store
.Rproj
src/*.o
src/*.so
2 changes: 1 addition & 1 deletion inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ citEntry(
title = "Single Cell Linear Adaptive Expression Testing (scLANE)",
journal = "Zenodo",
author = c(person(given = c("Jack", "R."), family = "Leary"),
person(given = "Rhonda", family = "Bacher"))
person(given = "Rhonda", family = "Bacher")),
year = "2023",
note = "R package version 0.7.7",
url = "https://doi.org/10.5281/zenodo.10182497",
Expand Down

0 comments on commit 6d2f100

Please sign in to comment.