-
Notifications
You must be signed in to change notification settings - Fork 0
/
VDJ.Rmd
43 lines (33 loc) · 899 Bytes
/
VDJ.Rmd
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
---
title:
output: html_document
---
```{r, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, message = FALSE, warning = FALSE)
library(dplyr)
library(kableExtra)
library(DT)
library(downloadthis)
library(ggplot2)
```
To generate single-cell V(D)J sequences and annotations for a single library, run cellranger vdj with the following parameters.
```{r, echo = FALSE}
appliation='cellranger-6.1.1 vdj';
DiagrammeR::grViz("
digraph graph2 {
graph [layout = dot, rankdir = LR]
# node definitions with substituted label text
node [shape = box, style=rounded, color=brown, fillcolor=azure3, fontsize=25]
a [label = '@@1']
b [label = '@@2']
c [label = '@@3']
d [label = '@@4']
a -> b -> c -> d
}
[1]: 'bcl2fastq'
[2]: appliation[1]
[3]: 'Generation of metadata'
[4]: 'Secondary analyses'
",
height = 100)
```