Skip to content

Commit

Permalink
Specify empty types
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmig committed Apr 17, 2024
1 parent 1a456f7 commit 801df54
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions workflow/scripts/report/NV_description.R
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ date_order <- metadata %>%

empty_vcf <- tibble(
REGION = date_order,
variant = NA,
ALT_FREQ = NA,
GFF_FEATURE = NA,
synonimous = NA,
POS = NA,
ALT = NA,
NV_class = NA,
group = NA
variant = as.character(NA),
ALT_FREQ = as.numeric(NA),
GFF_FEATURE = as.character(NA),
synonimous = as.character(NA),
POS = as.numeric(NA),
ALT = as.character(NA),
NV_class = as.character(NA),
group = as.character(NA)
)

# Create SNP variable and select useful variables
Expand Down

0 comments on commit 801df54

Please sign in to comment.