Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
^.*\.Rproj$
^\.Rproj\.user$
^\.git*
^\.idea*
^nimbleR.iml$
^nimbleR.*\.tar\.gz$
^nimbleR.*\.zip$
^\.github$
.dockerignore
40 changes: 40 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
on:
workflow_dispatch:
push:
branches: [ main ]
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: 24.04, r: '4.4', bioc: '3.20' }

env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v4

- uses: bimberlabinternal/DevOps/githubActions/r-gh-setup@master
with:
r_version: ${{ matrix.config.r }}
bioc_version: ${{ matrix.config.bioc }}
cache_version: ${{ secrets.CACHE_VERSION }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

- uses: r-lib/actions/check-r-package@v2
with:
args: 'c("--no-manual")'
env:
_R_CHECK_CRAN_INCOMING_: false
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ po/*~

# RStudio Connect folder
rsconnect/

*.tar.gz
*.zip
install.bat
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/nimbleR.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Package: nimbleR
Type: Package
Title: Tools to use nimble data with seurat objects
Version: 1.0.0
Author: Bimber Lab
Maintainer: The package maintainer <bimber@ohsu.edu>
Description: An R package to format and append nimble RNA-seq count data to seurat objects.
License: MIT
Encoding: UTF-8
Depends:
R (>= 4.3.0)
Imports:
Seurat,
Matrix,
egg,
scales,
methods,
tidyr,
dplyr,
ggplot2
Suggests:
RIRA,
SeuratData,
devtools,
testthat (>= 2.1.0)
Remotes:
SeuratData=satijalab/seurat-data,
bimberlab/RIRA
RoxygenNote: 7.3.2
URL: https://github.com/BimberLab/nimbleR
BugReports: https://github.com/BimberLab/nimbleR/issues
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

8 changes: 8 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Generated by roxygen2: do not edit by hand

export(AppendNimbleCounts)
export(LogNormalizeUsingAlternateAssay)
import(Seurat)
import(dplyr)
import(ggplot2)
importFrom(tidyr,pivot_wider)
Loading