-
Notifications
You must be signed in to change notification settings - Fork 12
/
README.Rmd
executable file
·56 lines (40 loc) · 1.36 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
51
52
53
54
55
56
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
[![Build Status](https://travis-ci.org/mskilab/fragCounter.svg?branch=master)](https://travis-ci.org/mskilab/fragCounter)
[![codecov.io](https://img.shields.io/codecov/c/github/mskilab/fragCounter.svg)](https://codecov.io/github/mskilab/fragCounter?branch=master)
# fragCounter
The goal of fragCounter is to correct Whole genome or targeted sequencing data for GC and mappability bias.
The GC bias curve is determined by loess regression of read count by GC and mappability scores.
Segmentation is done by circular binary segmentation (CBS) algorithm after getting tumor/normal ratios of corrected read counts.
## Installation
You can install fragCounter from github with:
Install dependent packages
```{r gh-installation, eval = FALSE}
install.packages('DNAcopy')
```
Install devtools from CRAN (if you don't have it already)
```{r}
install.packages('devtools')
```
Install dependent mskilab R packages
```{r}
devtools::install_github('mskilab/gUtils')
```
Install fragCounter
```{r}
devtools::install_github("mskilab/fragCounter")
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
## basic example code
```