Skip to content

Commit

Permalink
Merge pull request #407 from ncborcherding/dev
Browse files Browse the repository at this point in the history
v2.0.6
  • Loading branch information
ncborcherding authored Sep 19, 2024
2 parents d6dcf9e + ec48a31 commit 3d6f326
Show file tree
Hide file tree
Showing 8 changed files with 1,842 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: scRepertoire
Title: A toolkit for single-cell immune receptor profiling
Version: 2.0.5
Version: 2.0.6
Authors@R: c(
person(given = "Nick", family = "Borcherding", role = c("aut", "cre"), email = "[email protected]"),
person(given = "Qile", family = "Yang", role = c("aut"), email = "[email protected]"),
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# scRepertoire VERSION 2.0.6

## UNDERLYING CHANGES
* Fixed issue with custom column headers for clones

# scRepertoire VERSION 2.0.5

## UNDERLYING CHANGES
Expand Down
9 changes: 3 additions & 6 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,9 @@
"ctstrict" = "CTstrict"
)

x <- tolower(x)

if (!is.null(clonecall_dictionary[[x]])) {
return(clonecall_dictionary[[x]])
}
else {
if (!is.null(clonecall_dictionary[[tolower(x)]])) {
return(clonecall_dictionary[[tolower(x)]])
} else {
warning("A custom variable ", x, " will be used to call clones")
return(x)
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
681 changes: 681 additions & 0 deletions tests/testthat/_snaps/clonalOverlay/clonaloverlay-plot.new.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3d6f326

Please sign in to comment.