Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.0.6 #407

Merged
merged 1 commit into from
Sep 19, 2024
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
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.
Loading