Open bruvellu opened 5 years ago
If I pass cluster_transcripts = FALSE to the plot_transcript_heatmap, the transcripts are still clustered because the default in pheatmap is cluster_rows = TRUE.
cluster_transcripts = FALSE
plot_transcript_heatmap
pheatmap
cluster_rows = TRUE
This can be fixed by explicitly calling cluster_rows = FALSE after the line below: https://github.com/pachterlab/sleuth/blob/24ca2859f13d1eac588d6dd2ac90bf860b4fe07e/R/plots.R#L1085
cluster_rows = FALSE
If I pass
cluster_transcripts = FALSE
to theplot_transcript_heatmap
, the transcripts are still clustered because the default inpheatmap
iscluster_rows = TRUE
.This can be fixed by explicitly calling
cluster_rows = FALSE
after the line below: https://github.com/pachterlab/sleuth/blob/24ca2859f13d1eac588d6dd2ac90bf860b4fe07e/R/plots.R#L1085