Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
title: "Creating an extension package for i2dash"
author:
- name: Jens Preussner
affiliation:
email: jens.preussner@mpi-bn.mpg.de
- name: Arsenij Ustjanzew
affiliation:
email: arsenij.ustjanzew@@gmail.com
date: "`r BiocStyle::doc_date()`"
package: "`r BiocStyle::pkg_ver('i2dash')`"
output:
rmarkdown::html_document:
toc: true
toc_float: true
fig_caption: true
vignette: >
%\VignetteIndexEntry{Creating an extension package for i2dash}
%\VignettePackage{i2dash}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
Vignette last complied on `r Sys.Date()`. i2dash is licenced under `r utils::packageDescription("i2dash")[["License"]]`.
```{r style, echo = FALSE, results = 'asis', include = FALSE}
BiocStyle::markdown()
```
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
error = FALSE,
warning = FALSE,
message = FALSE
)
stopifnot(requireNamespace("htmltools"))
htmltools::tagList(rmarkdown::html_dependency_font_awesome())
library(magrittr)
```
<img src="images/i2dash_logo.png" align="center" width="150px"/>
# Introduction and scope
## Directory structure
## Understanding of the system
# Main function
# Template of the component
## two visualization modes
# Testing the package extension
# Session Info {.unnumbered}
```{r sessioninfo}
sessionInfo()
```