Skip to content

Commit 1daf1e8

Browse files
committed
remove . as a global variable
1 parent a4e0e32 commit 1daf1e8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

R/package.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ NULL
3434
# Define valid global variables
3535
if(getRversion() >= "2.15.1") {
3636
utils::globalVariables(c(
37-
".", "branch_id", "cell_id", "comp_1", "comp_2",
37+
"branch_id", "cell_id", "comp_1", "comp_2",
3838
"correlation", "correlation_mean", "directed", "dist",
3939
"divergence_id", "edge_id", "feature_id", "flip", "from",
4040
"from_milestone_id", "from_waypoint", "from2", "group_id",
4141
"housekeeping", "id", "in_divergence", "index", "input_id", "is_start",
4242
"ix", "label", "length1", "length2", "milestone_id", "new_milestone_id",
4343
"new_new_milestone_id", "node", "node1", "node2", "num_cells",
4444
"one", "percentage", "PREDICT", "prior_id", "required", "rowname",
45-
"id", "match", "membership", "order", "path",
45+
"match", "membership", "order", "path",
4646
"sd", "start", "waypoint_id", "weight", "zero", "time", "to", "to_waypoint",
4747
"triangle_id", "triangle_part", "type", "comp_1_from", "comp_2_from",
4848
"comp_1_to", "comp_2_to", "str_subset"))

R/wrap_add_dimred.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ connect_dimred_segments <- function(dimred_segment_progressions, dimred_segment_
285285
})
286286

287287
connecting_progressions <- connections |> map_dfr("progressions")
288-
connecting_points <- connections |> map("points") |> do.call(rbind, .)
288+
connecting_points <- connections |> map("points") |> do.call(rbind)
289289

290290
list(
291291
dimred_segment_progressions = bind_rows(dimred_segment_progressions, connecting_progressions),

0 commit comments

Comments
 (0)