dnaCopySf: Runs DNAcopy in parallel mode

Description Usage Arguments Value Author(s) Examples

Description

This function even works very well with ff matrices,

Usage

1
dnaCopySf(x, chrom, maploc, cores = 1, smoothing, ...)

Arguments

x

A matrix with data of the copy number experiments

chrom

The chromosomes (or other group identifier) from which the markers came

maploc

The locations of marker on the genome

cores

Number of cores to use

smoothing

States if smoothing of the data should be done

...

Further parameter for the function segment of DNAcopy

Value

An instance of ExpressionSet containing the segments.

Author(s)

Djork-Arne Clevert okko@clevert.de and Andreas Mitterecker mitterecker@bioinf.jku.at

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
load(system.file("exampleData/mlData.RData", package = "cn.farms"))
mlData <- mlData[, 1:3]
colnames(assayData(mlData)$L_z) <- sampleNames(mlData)
segments <- dnaCopySf(
        x         = assayData(mlData)$L_z,
        chrom     = fData(mlData)$chrom,
        maploc    = fData(mlData)$start,
        cores     = 1,
        smoothing = FALSE)
fData(segments)

cn.farms documentation built on Nov. 8, 2020, 7:59 p.m.