-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
51 lines (35 loc) · 1.38 KB
/
README.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
44
45
46
47
48
49
50
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# igsc
<!-- badges: start -->
<!-- badges: end -->
## Installation
Please install packages from bioconductor manually.
``` r
install.packages("BiocManager")
BiocManager::install("DECIPHER")
BiocManager::install("Biostrings")
```
Please install igsc from GitHub. This requires devtools.
``` r
install.packages("devtools")
devtools::install_github("Close-your-eyes/igsc")
```
## What it is
This small package provides a standardized workflow to extract the V(D)J sequences from CellRangers output (10X Genomics).
Only TCRs are handled at the moment.
To gain confidence reference sequences from the [IMGT](http://www.imgt.org) database are included in an R-friendly format (data frame) which may be aligned to one's sequencing data.
Based on this alignment the V(D)J sequence of TRA and TRB are retrieved and are made available for further processing.
The data from IMGT have been downloaded in Oct-2021. Using the files included in this package as template one can also download and process updated versions from IMGT.
## Vignettes (tutorials)
[prepare TCR sequences](https://close-your-eyes.github.io/igsc/articles/prepare_tcr_seq_data.html)