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
1 change: 1 addition & 0 deletions .BBSoptions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
UnsupportedPlatforms: win32
6 changes: 6 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@
^__autograph_generated_filezt06eymn\.py$
^\.github$
^LICENSE\.md$
^\.devcontainer
^\.trigger_build$
^Dockerfile$
^dev
^\.BBSoptions$
^\.vscode
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "Ibex devcontainer",
"shutdownAction": "none",
"build": {
"context": "..",
"dockerfile": "../Dockerfile"
},
"runArgs": [
// to use GPUs in container uncomment next line
// "--gpus=all",
"--name=ibex-devbox"
]
}
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
branches: [main, devel]
pull_request:
branches: [main, master]
branches: [main, devel]

name: R-CMD-check

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
branches: [main, devel]
pull_request:
branches: [main, master]
branches: [main, devel]

name: test-coverage

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
docs
.DS_Store
dev/
.vscode/
7 changes: 7 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"MD007" : { "indent": 4 },
"MD013": false,
"MD024": false,
"MD025": false,
"MD033": false
}
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
Package: Ibex
Title: Methods for BCR single-cell embedding
Version: 0.99.33
Version: 1.0.0.9000
Authors@R: c(
person(given = "Nick", family = "Borcherding", role = c("aut", "cre"), email = "ncborch@gmail.com"))
person(given = "Nick", family = "Borcherding", role = c("aut", "cre", "cph"), email = "ncborch@gmail.com"),
person(given = "Qile", family = "Yang", role = "ctb", email = "qile.yang@berkeley.edu", comment = c(ORCID = "0009-0005-0148-2499")))
Description: Implementation of the Ibex algorithm for single-cell embedding based on BCR sequences. The package includes a standalone function to encode BCR sequence information by amino acid properties or sequence order using tensorflow-based autoencoder. In addition, the package interacts with SingleCellExperiment or Seurat data objects.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: false
RoxygenNote: 7.3.2
RoxygenNote: 7.3.3
biocViews: Software, ImmunoOncology, SingleCell, Classification, Annotation, Sequencing
Depends:
R (>= 4.5.0)
Expand All @@ -17,7 +18,6 @@ Imports:
methods,
Matrix,
reticulate (>= 1.43.0),
rlang,
SeuratObject,
scRepertoire,
SingleCellExperiment,
Expand Down
8 changes: 8 additions & 0 deletions DockerFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM rocker/verse:4.5.1
RUN apt-get update && apt-get install -y texlive-fonts-extra
WORKDIR /Ibex
COPY . .
RUN apt install -y libgsl-dev
RUN Rscript -e "install.packages('Seurat')"
RUN Rscript -e "remotes::install_deps(dependencies = TRUE)"
RUN Rscript -e "devtools::test()"
2 changes: 0 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export(CoNGAfy)
export(Ibex_matrix)
export(combineExpandedBCR)
export(runIbex)
import(basilisk)
importFrom(Matrix,colSums)
importFrom(Matrix,sparse.model.matrix)
importFrom(SeuratObject,CreateAssayObject)
Expand All @@ -30,7 +29,6 @@ importFrom(immApex,onehotEncoder)
importFrom(immApex,propertyEncoder)
importFrom(methods,is)
importFrom(methods,slot)
importFrom(rlang,"%||%")
importFrom(scRepertoire,combineBCR)
importFrom(stats,as.formula)
importFrom(stats,dist)
Expand Down
Loading