forked from lima1/PureCN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readIntervalFile.Rd
36 lines (32 loc) · 1 KB
/
readIntervalFile.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/readIntervalFile.R
\name{readIntervalFile}
\alias{readIntervalFile}
\title{Read interval file}
\usage{
readIntervalFile(interval.file, strict = TRUE, verbose = TRUE)
}
\arguments{
\item{interval.file}{A mapping file that assigns GC content and gene symbols
to each exon in the coverage files. Used for generating gene-level calls.
First column in format CHR:START-END. Second column GC content (0 to 1).
Third column gene symbol. This file is generated with the
\code{\link{preprocessIntervals}} function.}
\item{strict}{Error out with missing columns}
\item{verbose}{Verbose output}
}
\value{
A \code{GRanges} object with the parsed intervals.
}
\description{
Read file containing coordinates of on- and off-target intervals
generated by \code{\link{preprocessIntervals}}.
}
\examples{
interval.file <- system.file("extdata", "example_intervals.txt",
package = "PureCN")
x <- readIntervalFile(interval.file)
}
\author{
Markus Riester
}