perc_overlap {HTSSIP}R Documentation

Calculate the percent overlap between two ranges (x & y).

Description

The fraction of overlap is relative to Range X (see examples).

Usage

perc_overlap(x.start, x.end, y.start, y.end)

Arguments

x.start

The start value for Range X

x.end

The end value for Range X

y.start

The start value for Range Y

y.end

The end value for Range Y

Value

the percent overlap of the ranges

Examples

## Not run: 
x = HTSSIP:::perc_overlap(0, 1, 0, 0.5)
stopifnot(x == 50)
x = HTSSIP:::perc_overlap(0, 0.5, 0, 1)
stopifnot(x == 100)

## End(Not run)


[Package HTSSIP version 1.4.1 Index]