-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add variant caller and link to about page
- Loading branch information
Showing
1 changed file
with
7 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,16 @@ title: "mtDNA-Server 2" | |
output: | ||
flexdashboard::flex_dashboard: | ||
orientation: rows | ||
navbar: | ||
- { title: "About", href: "https://mitoverse.i-med.ac.at/#!pages/contact", align: right } | ||
params: | ||
haplogroups: ../tests/data/report/haplogroups.txt | ||
haplocheck: ../tests/data/report/haplocheck.txt | ||
variants: ../tests/data/report/variants_ann.txt | ||
statistics: ../tests/data/report/sample_statistics.txt | ||
mapping: ../tests/data/report/sample_mappings.txt | ||
excluded_samples: ../tests/data/report/excluded_samples.txt | ||
pipeline_parameters: ../tests/data/report/params.txt | ||
pipeline_parameters: ../tests/data/report/params.txt | ||
--- | ||
|
||
```{r setup, include=FALSE} | ||
|
@@ -79,6 +81,8 @@ variants_count <- merge(variants_count, mapping, by.x="V2", by.y="Filename") %>% | |
variants <- merge(variants, mapping, by.x="ID", by.y="Filename") %>% | ||
arrange(Sample_Label) | ||
variant_caller <- pipeline_params %>% | ||
filter(Parameter == "Variant Caller") | ||
``` | ||
|
||
|
@@ -100,10 +104,10 @@ valueBox(nrow(statistics), icon = "fa-users") | |
valueBox(nrow(excluded_samples), icon = "fa-filter") | ||
``` | ||
|
||
### Samples with Bad Quality | ||
### Variant Caller | ||
|
||
```{r} | ||
valueBox(-1, icon = "fa-exclamation") | ||
valueBox(paste(variant_caller$Value), icon = "fa-cog") | ||
``` | ||
|
||
|
||
|
@@ -284,32 +288,3 @@ ggplotly( | |
theme(axis.text.x=element_text(angle=+90)) | ||
) | ||
``` | ||
|
||
|
||
|
||
--- | ||
|
||
# About | ||
|
||
Row | ||
------------------------------------- | ||
|
||
### About this report | ||
|
||
This software was developed at the [Institute of Genetic Epidemiology](https://genepi.i-med.ac.at/), [Medical University of Innsbruck](https://i-med.ac.at/) | ||
|
||
![](https://avatars2.githubusercontent.com/u/210220?s=30) [Lukas Forer](mailto:[email protected]) ([@lukfor](https://twitter.com/lukfor)) | ||
|
||
![](https://avatars2.githubusercontent.com/u/1931865?s=30) [Hansi Weissensteiner](mailto:[email protected]) ([@whansi](https://twitter.com/whansi)) | ||
|
||
![](https://avatars2.githubusercontent.com/u/1942824?s=30) [Sebastian Schoenherr](mailto:[email protected]) ([@seppinho](https://twitter.com/seppinho)) | ||
|
||
Row | ||
------------------------------------- | ||
|
||
### Workflow parameters and Software versions | ||
|
||
```{r echo=FALSE, results='asis'} | ||
pipeline_params %>% | ||
kable() | ||
``` |