Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a few typos in the heatmap notebook #790

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions RNA-seq/06-openpbta_heatmap.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This notebook will demonstrate how to:
---

In this notebook, we cluster RNA-seq data from the Open Pediatric Brain Tumor Atlas (OpenPBTA) project and create a heatmap.
OpenPBTA is a collaborative project organized by the CCDL and the Center for Data-Driven Discovery in Biomedicine (D3b) at the Children's Hospital of Philadelphia conducted openly on GitHub.
OpenPBTA is a collaborative project organized by the Data Lab and the Center for Data-Driven Discovery in Biomedicine (D3b) at the Children's Hospital of Philadelphia conducted openly on GitHub.

You can read more about the project [here](https://github.com/alexslemonade/openpbta-analysis/#openpbta-analysis).

Expand Down Expand Up @@ -66,7 +66,7 @@ fs::dir_create(plots_dir)
histologies_file <- file.path(data_dir, "pbta-histologies-subset.tsv")

# The RNA-seq counts table
rnaseq_file = file.path(data_dir, "pbta-rsem-expected_count-subset.rds")
rnaseq_file <- file.path(data_dir, "pbta-rsem-expected_count-subset.rds")
```

#### Output files
Expand Down Expand Up @@ -311,7 +311,7 @@ Heatmap(zscores_mat,
name = "z-score")
```

`ComplexHeatmap` gives a few warning here, but nothing to be concerned about.
`ComplexHeatmap` gives a few warnings here, but nothing to be concerned about.
One is complaining that the color scale may be truncated relative to our data.
The other warns that our very large heatmap itself is being drawn at a lower resolution to speed things up.

Expand Down
Loading