-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy patharm_level_changes.Rd
36 lines (32 loc) · 1.3 KB
/
arm_level_changes.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/arm-level-changes.R
\name{arm_level_changes}
\alias{arm_level_changes}
\title{Arm-level changes}
\source{
\url{https://www.ncbi.nlm.nih.gov/pubmed/29622463}
}
\usage{
arm_level_changes(segs, ploidy, genome = c("hg19", "hg18", "hg38"),
algorithm = c("em", "cncf"))
}
\arguments{
\item{segs}{FACETS segmentation output.}
\item{ploidy}{Sample ploidy.}
\item{genome}{Genome build.}
\item{algorithm}{Choice between FACETS \code{em} and \code{cncf} algorithm.}
}
\value{
List of items, containing:
\code{data.frame} for all genes mapping onto a segment in the output segmentation, with the columns:
\itemize{
\item{\code{genome_doubled}:} {Boolean indicating whether sample genome is doubled.}
\item{\code{fraction_cna}:} {Fraction of genome altered.}
\item{\code{weighted_fraction_cna}:} {A weighted version of \code{fraction_cna} where only altered chromosomes are counted and weighted according to their length relative to total genome.}
\item{\code{aneuploidy_scores}:} {Count of the number of altered arms, see source URL.}
\item{\code{full_output}:} {Full per-arm copy-number status.}
}
}
\description{
Get the altered chromosome arms in sample. Does not include the acrocentric p arms of chromosomes 12, 14, 15, 31, and 22.
}