Description Usage Arguments Details Value See Also
With this function it is possibile to create and initialize a new RUBIC object.
1 2 3 4 5 6 | rubic(fdr, seg.cna, markers, samples = NULL, genes = NULL,
amp.level = 0.1, del.level = -0.1, min.seg.markers = 1,
min.mean = NA_real_, max.mean = NA_real_, min.probes = 260000,
focal.threshold = 1e+07, seg.cna.header = T, markers.header = T,
samples.header = F, col.sample = 1, col.chromosome = 2, col.start = 3,
col.end = 4, col.log.ratio = 6, ...)
|
fdr |
A number indicating the wanted event based false descovery rate. For example 0.25. |
seg.cna |
Either a character string naming a file or a |
markers |
Either a character string naming a file or a |
samples |
Either a character string naming a file or a character vector containing the sample IDs used for the analysis.
In case a file name is provided the file will be open and read as a |
genes |
Either a character string naming a file or a |
amp.level |
A positive number specifying the threshold used for calling amplifications. The default value is set to 0.1. |
del.level |
A negative number specifying the threshold used for calling deletions. The default value is set to -0.1. |
min.seg.markers |
A positive integer specifying the number of probes allowed in each segment. The default value is set to 1, which means that no segments will be merged.
If this parameter is set to a number larger than 1, all segments with less than |
min.mean |
A number specifying the minimum mean copy number allowed. By default segments will not be filtered based on their minimum mean copy number. |
max.mean |
A number specifying the maximum mean copy number allowed. By default segments will not be filtered based on their maximum mean copy number. |
min.probes |
The minimum number of probes to be considered in the analysis. |
focal.threshold |
The maximum length of a recurrent region to be called focal. Only regions smaller than |
seg.cna.header |
A logical value indicating whether the seg.cna file contains the names of the variables as its first line.
The default is set to |
markers.header |
A logical value indicating whether the markers file contains the names of the variables as its first line.
The default is set to |
samples.header |
A logical value indicating whether the samples file contains the names of the variables as its first line.
Please notice that while the default value of |
col.sample |
The number of the column contaning the sample name in the |
col.chromosome |
The number of the column contaning the chromosome name in the |
col.start |
The number of the column contaning the start position of each segment in the |
col.end |
The number of the column contaning the end position of each segment in the |
col.log.ratio |
The number of the column contaning the log.ratio name in the |
... |
Additional arguments to be passed to the constructor. Reserved for future use. |
In order to use the RUBIC method it is necessary to create e initialize a new RUBIC object
using data and parameters specific to your analysis. This function reads and preprocess all
the data and returns an object of the RUBIC
class. It is possibile to start the analysis
using the method estimate.parameters
or any other method of the RUBIC
class.
A new RUBIC object.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.