You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When use the plot_multisample_CNA() for plotting multi-regional CNAs, I found some errors in your codes
The original code is: #line 62-66 #Default blank genome -- remove labels with label_chr = NA bl_genome = suppressMessages( CNAqc:::blank_genome(label_chr = NA) + labs(x = "", y = "") )
This code forgets to set some parameters. The corrected code may be:
In addition, I suggest adding some parameters in this function to control the output styles, like parameters of plot_segments as well as KARYO_colors and min_length_show ( the minimal length of chromosomes to show )
Yours sincerely,
Qingjian Chen
The text was updated successfully, but these errors were encountered:
are you suggesting we miss the reference? If yes I think you are correct.
Reply: Yes, the original code missed the reference.
upgrades are indeed possible, only those 2 would be required in your opinion?
Reply: I only set the two parameters. In addition, users maybe want to show the total copy numbers, rather than Karyotypes. I think this set would be helpful for users.
Hi:
When use the plot_multisample_CNA() for plotting multi-regional CNAs, I found some errors in your codes
The original code is:
#line 62-66 #Default blank genome -- remove labels with label_chr = NA bl_genome = suppressMessages( CNAqc:::blank_genome(label_chr = NA) + labs(x = "", y = "") )
This code forgets to set some parameters. The corrected code may be:
bl_genome = suppressMessages(CNAqc:::blank_genome( ref = L[[1]]$reference_genome, chromosomes = chromosomes, label_chr = NA) + labs(x = "", y = ""))
In addition, I suggest adding some parameters in this function to control the output styles, like parameters of plot_segments as well as KARYO_colors and min_length_show ( the minimal length of chromosomes to show )
Yours sincerely,
Qingjian Chen
The text was updated successfully, but these errors were encountered: