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

Exe 1340 update merge #3

Merged
merged 6 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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 R/cell_count_plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ CellCountPlot.data.frame <- function(
#' seur_obj1 <- seur_obj2 <- seur_obj
#' seur_obj1$sample <- "1"
#' seur_obj2$sample <- "2"
#' seur_obj_merged <- merge(seur_obj1, seur_obj2)
#' seur_obj_merged <- merge(seur_obj1, seur_obj2, add.cell.ids = c("A", "B"))
#' CellCountPlot(seur_obj_merged, group.by = "labels", color.by = "sample")
#'
#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/differential_colocalization_analysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ RunDCA.data.frame <- function (
#' seur1 <- seur2 <- ReadMPX_Seurat(pxl_file, overwrite = TRUE)
#' seur1$sample <- "Sample1"
#' seur2$sample <- "Sample2"
#' seur_merged <- merge(seur1, seur2)
#' seur_merged <- merge(seur1, seur2, add.cell.ids = c("A", "B"))
#'
#' # Run DCA
#' dca_markers <- RunDCA(seur_merged, contrast_column = "sample",
Expand Down
2 changes: 1 addition & 1 deletion R/differential_polarity_analysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ RunDPA.data.frame <- function (
#' seur1 <- seur2 <- ReadMPX_Seurat(pxl_file, overwrite = TRUE)
#' seur1$sample <- "Sample1"
#' seur2$sample <- "Sample2"
#' seur_merged <- merge(seur1, seur2)
#' seur_merged <- merge(seur1, seur2, add.cell.ids = c("A", "B"))
#'
#' # Run DPA
#' dpa_markers <- RunDPA(seur_merged, contrast_column = "sample",
Expand Down
55 changes: 41 additions & 14 deletions R/load_cell_graphs.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,33 +45,56 @@ LoadCellGraphs.FileSystemDataset <- function (
(chunk_length > 0)
)

# Ensure that all cell names are available in edgelist
stopifnot(
"All 'cells' must be present in the edgelist" =
all(cells %in% (object %>% pull(component, as_vector = TRUE)))
)

# Validate load_as
load_as <- match.arg(load_as, choices = c("bipartite", "Anode", "linegraph"))

# Select load function
graph_load_fkn <- switch (load_as,
graph_load_fkn <- switch(load_as,
"bipartite" = .load_as_bipartite,
"Anode" = .load_as_anode,
"linegraph" = .load_as_linegraph
)
"linegraph" = .load_as_linegraph)

# Convert edgelist to list of Cell Graphs
if (verbose && check_global_verbosity())
cli_alert(" Loading {length(cells)} edgelist(s) as {col_br_magenta(load_as)} graph(s)")

# Split cells id into chunks
cells_chunks <- split(cells, ceiling(seq_along(cells) / chunk_length))
sample_id_table <- do.call(rbind, strsplit(cells, "_"))
if (ncol(sample_id_table) == 1) {
sample_id_table <- cbind("S1", sample_id_table)
}
colnames(sample_id_table) <- c("sample", "component")
sample_id_table <- as_tibble(sample_id_table) %>%
group_by(sample) %>%
mutate(group = ceiling(seq_len(n()) / chunk_length)) %>%
group_by(sample, group)

# Load cell graphs
p <- progressr::progressor(along = cells_chunks)
cellgraphs <- lapply(cells_chunks, function (cell_ids) {
g_list <- graph_load_fkn(object, cell_ids = cell_ids, add_markers = add_marker_counts)
key_pairs <- sample_id_table %>% group_keys()

sample_id_table_list <- sample_id_table %>%
group_split() %>%
as.list()

# Set up progressor
p <- progressr::progressor(along = sample_id_table_list)

# Process chunks
cellgraphs <- lapply(seq_along(sample_id_table_list), function (i) {

cell_ids <- sample_id_table_list[[i]]
sample_id <- key_pairs[i, 1, drop = TRUE]

# Load chunks for specific sample
object_filtered <- object %>% filter(sample == sample_id)
g_list <- try({graph_load_fkn(object_filtered,
cell_ids = cell_ids[, 2, drop = TRUE],
add_markers = add_marker_counts)}, silent = TRUE)

if (inherits(g_list, what = "try-error") || any(sapply(g_list, is.null))) {
abort(glue("Failed to load edge list data. Most likely reason is that invalid cells were provided."))
}

# Add marker counts
if (add_marker_counts) {
g_list <- lapply(g_list, function(g) {
return(CreateCellGraphObject(g$graph, counts = g$counts, verbose = FALSE))
Expand All @@ -81,10 +104,14 @@ LoadCellGraphs.FileSystemDataset <- function (
return(CreateCellGraphObject(g, verbose = FALSE))
})
}

# Log progress
p()
return(g_list)
}) %>% Reduce(c, .)

cellgraphs <- setNames(cellgraphs, nm = cells)

return(cellgraphs)
}

Expand Down
Loading