Skip to content

Commit a90c4d2

Browse files
committed
Fix typographic error
1 parent 04fe040 commit a90c4d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

workflow/scripts/report_summarized_timeline.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if (snakemake@params$separate_location) {
3333
} else {
3434
# Rename country column
3535
plot.data <- plot.data %>%
36-
rename(Country = !!loccol)
36+
rename(Country = !!loccol) %>%
3737
drop_na(Haplotype)
3838
}
3939

workflow/scripts/report_timeline.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if (snakemake@params$separate_location) {
3131
} else {
3232
# Rename country column
3333
plot.data <- plot.data %>%
34-
rename(Country = !!loccol)
34+
rename(Country = !!loccol) %>%
3535
drop_na(Haplotype)
3636
}
3737

0 commit comments

Comments
 (0)