Description Usage Arguments Value Note Author(s) References Examples
This function sorts a dataset file by the genomic position of the probes. This function makes very easy the integration of VegaMC with the output of PennCNV tool.
1 | sortData(dataset, output_file_name = "")
|
dataset |
Dataset file. |
output_file_name |
Name of the file in which sorted data are stored. |
This function returns the input matrix ordered by the genomic position of the probes.
This function allows to sort a dataset by the genomic position. The input file must have the chromosome and the position in column two and three respectively. This format follows the standard output of PennCNV. An example of file can be found in inst/example folder.
Sandro Morganella
Morganella S., and Ceccarelli M. VegaMC: a R/bioconductor package for fast downstream analysis of large array comparative genomic hybridization datasets. Bioinformatics, 28(19):2512-4 (2012).
1 2 3 4 5 6 7 | ## Copy the example dataset in current folder
file.copy(system.file("example/breast_Affy500K.txt", package="VegaMC"),
".")
## Sort data and save results in sorted.txt file
sortData("breast_Affy500K.txt", "sorted.txt");
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.