Skip to content

Commit

Permalink
fix output report
Browse files Browse the repository at this point in the history
  • Loading branch information
ycao6928 committed Oct 14, 2023
1 parent 224dc90 commit 01e0f58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/extdata/output_report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -645,9 +645,9 @@ plot_heatmap_bulk <- function(data , num_features = 20 ){
if (length(top_gene ) == 0){
}else if (length(top_gene) == 1){
pheatmap( thiscelltype[top_gene, , drop=FALSE] ,
pheatmap( data[top_gene, , drop=FALSE] ,
annotation = condition,
main = label , cluster_rows = FALSE , color=colorRampPalette(c("navy", "white", "red"))(50) )
cluster_rows = FALSE , color=colorRampPalette(c("navy", "white", "red"))(50) )
}else{
p <- pheatmap( data[top_gene, ] , annotation = condition,
Expand Down

0 comments on commit 01e0f58

Please sign in to comment.