We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 236b8f9 commit 49db6c4Copy full SHA for 49db6c4
R/Assemble_report.r
@@ -11,9 +11,9 @@ assemble_report <- function(config, metadata) {
11
write(json_config, file = paste0(paths$dataset, "/config.json"))
12
13
df <- utils::read.csv(paths$input_file, stringsAsFactor = FALSE) |>
14
+ unnest_vertex_column(config$author_column_name, config$author_delimiter) |>
15
dplyr::distinct(.data[[config$edge_id]], .data[[config$author_column_name]], .keep_all = TRUE) |>
- apply_filters(config$filters) |>
16
- unnest_vertex_column(config$author_column_name, config$author_delimiter)
+ apply_filters(config$filters)
17
18
if (!is.null(config$node_properties_file_path)) {
19
node_props <- utils::read.csv(config$node_properties_file_path, stringsAsFactor = FALSE) |>
0 commit comments