Description Usage Arguments Details Value Author(s) See Also Examples
This function loads a given configuration file, and initialize a patternCNV session object with input sample information, exon information and output directories.
1 | createSession(config.file)
|
config.file |
the name of the configuration file which the patternCNV session information is to be read from. If it does not contain an absolute path, the file name is relative to the current working directory. The name could also be a URL. |
Configuratio file defines paths used by patternCNV functions. These include paths to where the results will be written and paths to the sample info config file along with the Exon Key.
Example configuration file:
plot_output_DIR = '/path/to/plot_output/'
txt_output_DIR = '/path/to/txt_output/'
exon_key_file = '/path/to/PatternCNV.Exon.Key.txt'
sample_info_file ='/path/to/sample_info.txt'
An object of PatCNVSession-class
Chen Wang
Scan exome coverage of multiple samples scanMultiCovg
;
compute CNV log2-ratio values of multiple samples computeMultiCNV
1 2 3 4 5 6 7 | ## load a simulation example
config.filename <- 'sim1.ini'
makeSimulation(config.filename)
sim.session <- createSession(config.filename)
##-- print basic session information
summary(sim.session)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.