Skip to content
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 episomer/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: episomer
Title: Early Detection of Public Health Threats from Social Media Data
Version: 3.0.34
Version: 3.0.35
Authors@R: c(
person(given = "Laura",
family = "Espinosa",
Expand Down
4 changes: 2 additions & 2 deletions episomer/R/plans.R
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ finish_plans <- function(plans = list()) {
} else {
# creating a new plan if expected end has passed
lapply(plans, function(p) {
attr <- list(
attrs <- list(
network = p$network,
expected_end = strftime(
if (is.null(p$end_on)) {
Expand Down Expand Up @@ -216,7 +216,7 @@ finish_plans <- function(plans = list()) {
progress = 1.0
)

updated <- do.call(parse_plan, attrs)
updated <- do.call(parse_plan_attributes, attrs)
merge_plans(p, updated)
})
}
Expand Down
Loading