Skip to content

Commit 8a1c634

Browse files
authored
Merge pull request #3 from jhudsl/cansavvy/update-description
Update descriptions in Rmd to not use citation tags
2 parents 3545a6b + dcb3b62 commit 8a1c634

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

01-heatmap.Rmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ _This analysis has been adapted from this [refine.bio-examples notebook](https:/
1212

1313
# Purpose of the analysis
1414

15-
In this analysis, we will use this [acute myeloid leukemia sample dataset](https://www.refine.bio/experiments/SRP070849) from @Shih2017 and pre-processed by @refinebio.
15+
In this analysis, we will use this [acute myeloid leukemia sample dataset](https://www.refine.bio/experiments/SRP070849) from [Shih et al., 2017](https://pubmed.ncbi.nlm.nih.gov/28193779/) and pre-processed by [refinebio](https://www.refine.bio/).
1616

17-
The data that we downloaded from [refine.bio](https://www.refine.bio/) for this analysis has 19 samples (obtained from 19 mice with acute myeloid leukemia (AML)), containing RNA-sequencing results for types of AML under controlled treatment conditions.
17+
The data that we downloaded from [refine.bio](https://www.refine.bio/) for this analysis has 19 samples (obtained from 19 acute myeloid leukemia (AML) model mice), containing RNA-sequencing results for types of AML under controlled treatment conditions.
1818

1919
This [dataset can be downloaded from this page on refine.bio](https://www.refine.bio/experiments/SRP070849).
20-
`00-download-data.py` downloads it already [processed and quantile normalized](http://docs.refine.bio/en/latest/main_text.html#refine-bio-processed-refinebio-processedibadge).
20+
We will download it already [processed and quantile normalized](http://docs.refine.bio/en/latest/main_text.html#refine-bio-processed-refinebio-processedibadge).
2121

2222
## Set up analysis folders
2323

@@ -60,7 +60,7 @@ metadata_file <- file.path(data_dir, "metadata_SRP070849.tsv")
6060

6161
## Install libraries
6262

63-
We will use `pheatmap` [@Slowikowski2017] for clustering and creating a heatmap.
63+
We will use []`pheatmap` by Slowikowski et al., 2017](https://www.rdocumentation.org/packages/pheatmap/versions/1.0.12/topics/pheatmap) for clustering and creating a heatmap.
6464

6565
```{r}
6666
if (!("pheatmap" %in% installed.packages())) {
@@ -132,15 +132,15 @@ df_by_var <- data.frame(expression_df) %>%
132132
dplyr::filter(variances > upper_var)
133133
```
134134

135-
Let's save these to our results folder as a TSV file.
135+
Let's save these to our results folder as a TSV file.
136136

137137
```{r}
138138
readr::write_tsv(df_by_var, file.path(results_dir, "top_90_var_genes.tsv"))
139139
```
140140

141141
## Prepare metadata for annotation
142142

143-
From the accompanying [paper](https://pubmed.ncbi.nlm.nih.gov/28193779/), we know that the mice with `IDH2` mutant AML were treated with vehicle or AG-221 (the first small molecule in-vivo inhibitor of IDH2 to enter clinical trials) and the mice with `TET2` mutant AML were treated with vehicle or 5-Azacytidine (Decitabine, hypomethylating agent). [@Shih2017]
143+
From the accompanying [paper](https://pubmed.ncbi.nlm.nih.gov/28193779/), we know that the mice with `IDH2` mutant AML were treated with vehicle or AG-221 (the first small molecule in-vivo inhibitor of IDH2 to enter clinical trials) and the mice with `TET2` mutant AML were treated with vehicle or 5-Azacytidine (Decitabine, hypomethylating agent) [Shih et al., 2017](https://pubmed.ncbi.nlm.nih.gov/28193779/).
144144

145145
```{r}
146146
# Let's prepare the annotation for the uncollapsed `DESeqData` set object

0 commit comments

Comments
 (0)