Skip to content

Commit

Permalink
multimir summaru tables has been added for reports 2
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseCorCab committed Sep 24, 2024
1 parent 2a695d8 commit 1edb401
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion inst/templates/global_cormit.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,24 @@ cols <- c("Eg Em"= "#1F77B4", "Cg Cm"="#FF7F0E", "Eg Cm"="#2CA02C", "Hg Cm"="#D6

This section describes the general statistics about coRmiT execution.


### **multiMiR stats**
#### MultiMiR version summary
```{r multimir_stats, echo=FALSE, results = 'asis', warning = FALSE, message = FALSE}
knitr::kable(multimir_stats, row.names = FALSE)
```
#### Expression data in MultiMiR summary

```{r exp_multimir_stats, echo=FALSE, results = 'asis', warning = FALSE, message = FALSE}
pred_db <- c("diana_microt", "elmmo", "microcosm","miranda",
"mirdb","pictar","pita", "targetscan")
databases <- c("mirecords","mirtarbase","tarbase", pred_db)
expressed_multimir <- integrated_pairs[,c("RNAseq","miRNAseq", databases)]
expressed_multimir[,pred_db] <- !is.na(expressed_multimir[,pred_db])
colnames(expressed_multimir)[match(c("RNAseq","miRNAseq"), colnames(expressed_multimir))] <- c("target_ensembl", "mature_mirna_acc")
exp_multimir_stats <- get_multimir_stats(expressed_multimir)
knitr::kable(exp_multimir_stats, row.names = FALSE)
```
### **Executed strategies**

```{r executes_str, echo=FALSE, results = 'asis', warning = FALSE, message = FALSE}
Expand Down

0 comments on commit 1edb401

Please sign in to comment.