Skip to content

Commit

Permalink
fix plot_exp_roll error #169
Browse files Browse the repository at this point in the history
  • Loading branch information
teng-gao committed May 3, 2024
1 parent d6b5c58 commit 9f01af6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/class.R
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Numbat <- R6::R6Class("Numbat", lock_objects=FALSE,

if (is.null(self$gexp_roll_wide)) {

self$gexp_roll_wide = read_file(inputfile=glue('{out_dir}/gexp_roll_wide.tsv.gz'), filetype="tsv")
self$gexp_roll_wide = read_file(inputfile=glue('{self$out_dir}/gexp_roll_wide.tsv.gz'), filetype="tsv")

if (!is.null(self$gexp_roll_wide)) {
if ('V1' %in% colnames(self$gexp_roll_wide)) {
Expand Down Expand Up @@ -196,6 +196,7 @@ Numbat <- R6::R6Class("Numbat", lock_objects=FALSE,
self$mut_graph = read_file(inputfile=glue('{out_dir}/mut_graph_{i}.rds'), filetype="rds")
self$gtree = read_file(inputfile=glue('{out_dir}/tree_final_{i}.rds'), filetype="rds")
self$clone_post = read_file(inputfile=glue('{out_dir}/clone_post_{i}.tsv'), filetype="tsv")
self$hc = read_file(inputfile=glue('{out_dir}/hc.rds'), filetype="rds")

})
)

0 comments on commit 9f01af6

Please sign in to comment.