Skip to content

Commit

Permalink
avoid errors with step different than 1
Browse files Browse the repository at this point in the history
  • Loading branch information
SeviJordi committed Oct 2, 2023
1 parent 8caa739 commit 98eee45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflow/scripts/report/NV_description.R
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ window_plot_spike <- window %>%
variants_spike <- vcf %>%
filter(
ALT_FREQ > 0,
POS %in% spike.pos
POS %in% c(min(spike.pos):max(spike.pos))
) %>%
ggplot() +
aes(
Expand All @@ -336,6 +336,7 @@ variants_spike <- vcf %>%
)



figura_spike <- ggarrange(
window_plot_spike,
variants_spike,
Expand Down

0 comments on commit 98eee45

Please sign in to comment.