Skip to content

Commit 8d3f990

Browse files
committed
removing stringr from dependencies
1 parent edc4976 commit 8d3f990

File tree

6 files changed

+25
-32
lines changed

6 files changed

+25
-32
lines changed

DESCRIPTION

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: copykit
22
Title: CopyKit
33
URL: https://github.com/navinlabcode/copykit
44
BugReports: https://github.com/navinlabcode/copykit/issues
5-
Version: 0.0.0.9042
5+
Version: 0.0.0.9043
66
Authors@R: c(
77
person(given = "Darlan",
88
family = "Conterno Minussi",
@@ -36,7 +36,8 @@ Suggests:
3636
spelling,
3737
knitr,
3838
scquantum,
39-
rmarkdown
39+
rmarkdown,
40+
stringr
4041
Language: en-US
4142
biocViews: Software, SingleCell, DNASeq, Sequencing,
4243
Visualization, Normalization, Clustering,
@@ -60,7 +61,6 @@ Imports:
6061
igraph (>= 1.2.8),
6162
BiocGenerics,
6263
grid,
63-
stringr,
6464
ggbeeswarm,
6565
dbscan,
6666
mixtools,

NAMESPACE

+1-5
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,6 @@ importFrom(stats,rpois)
180180
importFrom(stats,runif)
181181
importFrom(stats,sd)
182182
importFrom(stats,wilcox.test)
183-
importFrom(stringr,fixed)
184-
importFrom(stringr,str_detect)
185-
importFrom(stringr,str_extract)
186-
importFrom(stringr,str_remove)
187-
importFrom(stringr,str_replace)
188183
importFrom(tidyr,complete)
189184
importFrom(tidyr,gather)
190185
importFrom(tidyr,pivot_wider)
@@ -194,3 +189,4 @@ importFrom(withr,with_seed)
194189
importMethodsFrom(SingleCellExperiment,show)
195190
importMethodsFrom(SummarizedExperiment,assay)
196191
importMethodsFrom(SummarizedExperiment,colData)
192+
importMethodsFrom(SummarizedExperiment,rowRanges)

R/plotHeatmap.R

+11-10
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#' @author Darlan Conterno Minussi
77
#'
88
#' @param scCNA scCNA object.
9-
#' @param assay String with the name of the assay to pull data from to plot heatmap.
9+
#' @param assay String with the assay to pull data from to plot heatmap.
1010
#' @param order_cells A string with the desired method to order the cells within
1111
#' @param label A vector with the string names of the columns from
1212
#' \code{\link[SummarizedExperiment]{colData}} for heatmap annotation.
@@ -19,7 +19,7 @@
1919
#' \code{\link[SummarizedExperiment]{colData}} to split the heatmap.
2020
#' @param rounding_error A boolean indicating if the rounding error matrix
2121
#' should be plotted.
22-
#' @param genes A character vector with the HUGO symbol for genes to be annotated
22+
#' @param genes A character vector with the HUGO symbol for genes to annotate
2323
#' on the heatmap.
2424
#' @param col A colorRamp2 vector that controls the color scale of the heatmap.
2525
#' See \code{\link[ComplexHeatmap]{Heatmap}} or ComplexHeatmap online docs for
@@ -44,7 +44,7 @@
4444
#' \code{\link{plotHeatmap}} checks for the existence of a consensus matrix.
4545
#' From the consensus matrix, a minimum evolution tree is built and cells are
4646
#' ordered following the order of their respective groups from the tree.
47-
#' If order_cells is set to 'hclust' cells are ordered according to hierarchical
47+
#' If order_cells is 'hclust' cells are ordered according to hierarchical
4848
#' clustering. 'hclust' calculation can be sped up by changing the parameter
4949
#' 'n_threads' if you have more threads available to use. If order_cells
5050
#' is set to 'phylogeny' \code{\link{plotHeatmap}} will use the tree stored
@@ -648,17 +648,18 @@ plotHeatmap <- function(scCNA,
648648
c("superclones", "subclones", "outlier", "is_aneuploid")
649649

650650
for (i in 1:length(label)) {
651-
if (any(str_detect(
652-
label[i],
653-
default_labels
651+
if (any(grepl(
652+
paste(default_labels, collapse = "|"),
653+
label[i]
654654
))) {
655655
# if label is one of the four above,
656656
# uses the default specified colors above
657657
label_colors[i] <-
658-
label_colors[default_labels[stringr::str_detect(
659-
label[i],
660-
default_labels
661-
)]]
658+
label_colors[default_labels[
659+
vapply(default_labels,
660+
function(x) grepl(x, label[i]),
661+
logical(1))
662+
]]
662663
names(label_colors)[i] <- label[i]
663664
} else if (is.numeric(dplyr::pull(metadata_anno_df, label[i]))) {
664665
# if current i metadata element is a numeric vector

R/plotPhylo.R

+6-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ plotPhylo <- function(scCNA,
5252
consensusPhylo(scCNA),
5353
error = function(e) {
5454
stop(
55-
"No consensus phylogeny detected in scCNA object. Please run runConsensusPhylo() first."
55+
"No consensus phylogeny detected in scCNA object.
56+
Please run runConsensusPhylo() first."
5657
)
5758
}
5859
)
@@ -174,10 +175,12 @@ plotPhylo <- function(scCNA,
174175
)
175176

176177
if (any(grepl(
177-
c("superclones", "subclones", "outlier", "is_aneuploid"),
178+
paste(c("superclones", "subclones", "outlier", "is_aneuploid"),
179+
collapse = "|"),
178180
label
179181
))) {
180-
# if label is one of the four above, uses the default specified colors above
182+
# if label is one of the four above, uses the default specified
183+
# colors above
181184
label_colors <- label_colors[[label]]
182185
} else {
183186
elements <- metadata_anno_df %>%

man/plotHeatmap.Rd

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/test-plotHeatmap.R

+1-8
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ copykit_obj <- copykit_obj[, sample(70)]
55
copykit_obj <- findClusters(copykit_obj)
66
copykit_obj <- calcConsensus(copykit_obj)
77
copykit_obj <- runConsensusPhylo(copykit_obj)
8-
colData(copykit_obj)$section <- stringr::str_extract(colData(copykit_obj)$sample,
9-
"(L[0-9]+L[0-9]+|L[0-9]+)")
108

119
#tests
1210

@@ -17,13 +15,8 @@ test_that("Testing plotting heatmap: ", {
1715
expect_s4_class(ht <-
1816
plotHeatmap(copykit_obj, label = "subclones"),
1917
"Heatmap")
20-
expect_s4_class(ht <- plotHeatmap(copykit_obj,
21-
label = c("section", "subclones")),
22-
"Heatmap")
18+
2319
expect_s4_class(ht <- plotHeatmap(copykit_obj, genes = c("MYC",
2420
"TP53")),
2521
"Heatmap")
26-
expect_s4_class(ht <- plotHeatmap(copykit_obj, group = "section"),
27-
"Heatmap")
28-
2922
})

0 commit comments

Comments
 (0)