Description Usage Arguments Value Author(s) See Also
Computes for each genomic segment provided a score reflecting its likelihood to a polymorphism (CNV) dataset, as can be download from the Database of Genomic Variants.
1 2 |
sample.map |
A |
dgv.map |
A |
hangingThreshold |
Single numeric value, segments to score must cover at least this proportion of union(CNV, segment) for a CNV to be considered. Decrease this value to allow poorly overlapping CNVs to (modestly) contribute to the final score, at the cost of longer computing time. |
minGain |
Single numeric value, CNVs must add at least this value to the path's score to be retained. Increase this value to allow poorly overlapping CNVs to (modestly) contribute to the final score, at the cost of longer computing time. |
maxPaths |
Single integer value, the maximal amount of paths to be computed for each segment (use |
trace |
Single logical value, whether to produce a trace of every path constructed or only the final CNV score. This is mainly provided for debugging purpose, and increase the computing time. |
expand |
Single logical value, whether to return a vector of scores with one element for each row in |
quiet |
Single logical value, whether to print diagnostic |
If trace
is FALSE
, returns a numeric vector storing the resulting CNV score. See expand
for further details on this vector size.
If trace
is TRUE
, returns a named list
of two elements: "scores", that holds the numeric vector of scores (see above), and "traces", that described every path that has been built to compute the scores. The columns in "traces" are:
seg |
Range of the original track indexes corresponding to the assessed segment. |
seg.score |
Final CNV score for the assessed segment, all paths comprised. |
path.count |
How many times the CNV path described was built. |
path.jaccard |
Jaccard index between the assessed segment and the CNV path described. |
path.cnvCount |
How many CNVs are included in the CNV path described. |
path.cnvList |
Indexes in |
path.score |
'path.jaccard' corrected for the amount of CNVs included in the CNV path described. |
Sylvain Mareschal
map2design
, applyMap
, trace2track
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.