Skip to content

Commit

Permalink
Merge pull request #2 from ncborcherding/main
Browse files Browse the repository at this point in the history
rebase dev
  • Loading branch information
ncborcherding authored Oct 22, 2024
2 parents 69321f3 + 4baed78 commit deed42c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: immApex
Title: Tools for Adaptive Immune Receptor Sequence-Based Keras Modeling
Version: 0.99.1
Date: 2024-10-11
Version: 0.99.4
Date: 2024-10-17
Authors@R: c(
person(given = "Nick", family = "Borcherding", role = c("aut", "cre"), email = "[email protected]"))
Description: A set of tools to build tensorflow/keras-based models in R from amino acid and nucleotide sequences focusing on adaptive immune receptors. The package includes pre-processing of sequences, unifying gene nomenclature usage, encoding sequences, and combining models. This package will serve as the basis of future immune receptor sequence functions/packages/models compatible with the scRepertoire ecosystem.
Expand Down Expand Up @@ -30,6 +30,7 @@ Suggests:
ggplot2,
knitr,
markdown,
reticulate,
rmarkdown,
scRepertoire,
spelling,
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# immApex VERSION 0.99.3

## UNDERLYING CHANGES
* Defining python version 3.10 for keras installation

# immApex VERSION 0.99.2

## UNDERLYING CHANGES
* Added discrete check and install_keras() to vignette


# immApex VERSION 0.99.1

## UNDERLYING CHANGES
Expand Down
9 changes: 7 additions & 2 deletions vignettes/immApex.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author:
- name: Nick Borcherding
email: [email protected]
affiliation: Washington University in St. Louis, School of Medicine, St. Louis, MO, USA
date: "October 13, 2024"
date: "October 17, 2024"
output:
BiocStyle::html_document:
toc_float: true
Expand All @@ -19,6 +19,11 @@ vignette: >
knitr::opts_chunk$set(error=FALSE, message=FALSE, warning=FALSE)
library(BiocStyle)
set.seed(42)
if(!keras::is_keras_available()) {
reticulate::install_python(version = '3.10')
suppressMessages(keras::install_keras(python_version = "3.10"))
}
```

# Introduction
Expand All @@ -36,7 +41,7 @@ suppressMessages(library(immApex))
suppressMessages(library(keras))
suppressMessages(library(ggplot2))
suppressMessages(library(viridis))
suppressMessages(library(dplyr))
suppressMessages(library(magrittr))
```

# Getting and Manipulating Sequences
Expand Down

0 comments on commit deed42c

Please sign in to comment.