Skip to content

Commit 7324427

Browse files
authored
Merge pull request #1899 from cmf1997/fix/bug-RegionPlot-bin-fix
Fix:RegionPlot-bin-fix
2 parents 39df167 + f5f0145 commit 7324427

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

R/visualization.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,9 +1001,11 @@ RegionPlot <- function(
10011001
)
10021002
)
10031003
}
1004-
# fix bin label
1005-
df$bin <- (df$bin - (upstream/window)) * window
10061004
}
1005+
1006+
# fix bin label
1007+
df$bin <- (df$bin - (upstream/window)) * window
1008+
10071009
df$assay <- assay[[j]]
10081010
all.assay <- rbind(all.assay, df)
10091011
}

0 commit comments

Comments
 (0)