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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/extensions-VCF.R
\name{align_breakpoints}
\alias{align_breakpoints}
\title{Adjusting the nominal position of a pair of partnered breakpoint.}
\usage{
align_breakpoints(
vcf,
align = c("centre"),
is_higher_breakend = names(vcf) < info(vcf)$PARID
)
}
\arguments{
\item{vcf}{A VCF object.}
\item{align}{The alignment type.}
\item{is_higher_breakend}{Breakpoint ID ordering.}
}
\value{
A VCF object with adjusted nominal positions.
}
\description{
Adjusting the nominal position of a pair of partnered breakpoint.
}
|