Skip to content

Commit 0014b30

Browse files
committed
Fix error separator
1 parent 394055e commit 0014b30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow/scripts/format_vcf_fields_longer.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ read_tsv(snakemake@input$tsv) %>%
3434
convert = TRUE
3535
) %>%
3636
# Separate &-delimited error column (more than one error/warning/info message per row is possible)
37-
separate_rows_if_exist("ERRORS", sep = snakemake@params$sep) %>%
37+
separate_rows_if_exist("ERRORS", sep = "&") %>%
3838
# Rename "...[*]..." columns using the provided lookup via Snakemake config
3939
rename(all_of(unlist(snakemake@params$colnames_mapping))) %>%
4040
# Apply dynamic filters from the Snakemake config:

0 commit comments

Comments
 (0)