Skip to content

Commit

Permalink
Update scSNViz.r
Browse files Browse the repository at this point in the history
Corrected the issue of VAF = 0 cells not shown (line #743)
  • Loading branch information
tushar2016sharma authored Nov 28, 2024
1 parent d596130 commit f819094
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scSNViz/scSNViz.r
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Last updated: Oct 23, 2024
# Last updated: Nov 27, 2024

suppressPackageStartupMessages({
library('optparse')
Expand Down Expand Up @@ -740,7 +740,7 @@ if (!args$`hide-ind-plots`) {

# generate VAF plot
y$vaf.label <- 'Undetected'
y$vaf.label[y$vaf==0] <- '0 VAF, N_VAR Only'
y$vaf.label[y$vaf==0] <- '0 VAF, N_REF Only'
y$vaf.label[0<y$vaf & y$vaf<=0.25] <- '0<VAF<=0.25'
y$vaf.label[0.25<y$vaf & y$vaf<=0.75] <- '0.25<VAF<=0.75'
y$vaf.label[0.75<y$vaf & y$vaf<=1.00] <- '0.75<VAF<=1.00'
Expand Down

0 comments on commit f819094

Please sign in to comment.