Skip to content

Commit

Permalink
Updated report layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Hailey-Z committed Oct 20, 2022
1 parent 1b4f70c commit c168f7b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions LFQ_report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -43,32 +43,31 @@ Statistical analysis was performed using an in-house generated R script based on

#### MaxQuant result output contains `r nrow(params$data)` proteins groups of which _`r nrow(params$dep())`_ proteins were reproducibly quantified.

#### `r params$num_signif` proteins differ significantly between samples.
#### `r params$num_signif` proteins differ significantly between samples.

\pagebreak



## Exploratory Analysis (QC Plots)

#### Principle Component Analysis (PCA) plot


```{r pca_plot, echo=FALSE, fig.height= 4}
```{r pca_plot, echo=FALSE, fig.height= 4, fig.align='center', warning=FALSE}
print(params$pca_input())
```
\pagebreak

#### Sample Correlation matrix

```{r correlation_heatmap, echo=FALSE, fig.keep='first'}
```{r correlation_heatmap, echo=FALSE, fig.keep='first',fig.align='center'}
print(params$correlation_input())
```
\pagebreak

#### Sample Coefficient of variation (CVs)

```{r sample_cv, echo=FALSE, warning=FALSE }
```{r sample_cv, echo=FALSE, warning=FALSE, message=FALSE, fig.align='center'}
print(params$cvs_input())
```
\pagebreak
Expand Down Expand Up @@ -117,13 +116,15 @@ print(params$imputation_input())
A plot representing an overview of expression of all significant (differencially expressed) proteins (rows) in all samples (columns).


```{r heatmap_2, echo=FALSE, warning=FALSE, results='hide', fig.keep='all'}
```{r heatmap_2, echo=FALSE, warning=FALSE, results='hide', fig.keep='first',fig.align='center'}
print(params$heatmap_input())
```

\pagebreak

#### Volcano Plots

```{r volcano, echo=FALSE, warning=FALSE, comment=NA}
```{r volcano, echo=FALSE, warning=FALSE, comment=NA,fig.align='center'}
for(i in params$tested_contrasts){
# print(paste0('volcano_plot_',i,sep=""))
print(plot_volcano_new(params$dep(),contrast = i,label_size = 2, add_names = F))
Expand Down

0 comments on commit c168f7b

Please sign in to comment.