Description Usage Arguments Value Author(s) See Also Examples
Produce PNG figures of segment plots (by chromosome) for aCGH segmentation results. Internal calls are parallelized for increased speed and we use ff objets to allow the handling of very large objects. The output can include files for creating HTML with imagemaps.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | pChromPlot(outRDataName, cghRDataName, chromRDataName,
probenamesRDataName = NULL,
posRDataName = NULL,
imgheight = 500,
pixels.point = 3,
pch = 20,
colors = c("orange", "red", "green", "blue", "black"),
imagemap = FALSE,
typeParall = "fork",
mc.cores = detectCores(),
typedev = "default",
certain_noNA = FALSE,
loadBalance = TRUE,
...)
|
outRDataName |
The RAM object or the RData file name that contains the results
from the segmentation (as an Note that the type of object in As well, note that if you use RAM objects, you must use
|
cghRDataName |
The Rdata file name that contains the
If this is an |
chromRDataName |
The RData file name with the ff (short integer)
vector with the chromosome indicator, or the name of the RAM object
with the data. Function |
posRDataName |
The RData file name with the ff double vector with
the location (e.g., position in kbases) of each probe in the
chromosome, or the name of the RAM object with the data. Function
This argument is used for the spacing in the plots. If NULL, the x-axis goes from 1:number of probes in that chromosome. |
probenamesRDataName |
The RData file name with the vector with
the probe names or the RAM object. Function
|
imgheight |
Height of png image. See |
pixels.point |
Approximate number of pixels that each point takes; this determines also final figure size. With many probes per chromosome, you will want to make this a small value. |
pch |
The type of plotting symbol. See |
colors |
A five-element character vector with the colors for: probes without change, probes that have a "gained" status, probes that have a "lost" status, the line that connects (smoothed values of) probes, the horizontal line at the 0 level. |
imagemap |
If FALSE only the png figure is produced. If TRUE, for each array * chromosome, two additional files are produced: "pngCoord_ChrNN@MM" and "geneNames_ChrNN@MM", where "NN" is the chromosome number and "MM" is the array name. The first file contains the coordinates of the png and radius and the second the gene or probe names, so that you can easily produce an HTML imagemap. (Former versions of ADaCGH did this automatically with Python. In this version we include the Python files under "imagemap-example".) |
typeParall |
One of "fork" or "cluster". "fork" is unavailable in
Windows, and will lead to sequential execution. "cluster" requires
having set up a cluster before, with appropriate calls to
Using "fork" and "cluster" will lead to different schemes for parallelization. See the vignette. If you use |
mc.cores |
The number of cores used if |
.
typedev |
The device type. One of "cairo", "cairo-png", "Cairo", or "default". "Cairo" requires the Cairo package to be available, but might work with headless Linux server without png support, and might be a better choice with Mac OS. "default" chooses "Cairo" for Mac, and "cairo" otherwise. |
certain_noNA |
Are you certain, absolutely sure, your data contain
no missing values? (Default is FALSE). If you are, you can achieve
considerable speed ups by setting it to TRUE. See the help for this
option in |
loadBalance |
If TRUE (the default) use load balancing with MPI
(use |
... |
Additional arguments; not used. |
Used only for its side effects of producing PNG plots, stored in the
current working directory (getwd()
.)
Ramon Diaz-Uriarte rdiaz02@gmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | #####################################################
###
### Using forking with RAM objects
###
#####################################################
### Note to windows users: under Windows, this will
### result in sequential execution, as forking is not
### available.
## Get example input data and create data objects
data(inputEx)
## (this is not necessary, but is convenient;
## you could do the subsetting in the call themselves)
cgh.dat <- inputEx[, -c(1, 2, 3)]
chrom.dat <- as.integer(inputEx[, 2])
pos.dat <- inputEx[, 3]
## Segment with HaarSeg
## You might want to adapt mc.cores to your hardware
haar.RAM.fork <- pSegmentHaarSeg(cgh.dat, chrom.dat,
merging = "MAD",
mc.cores = 2)
## You might want to adapt mc.cores to your hardware
pChromPlot(haar.RAM.fork,
cghRDataName = cgh.dat,
chromRDataName = chrom.dat,
posRDataName = pos.dat,
imgheight = 350,
mc.cores = 2)
## Not run:
#####################################################
###
### Using a cluster with ff objects and create imagemaps
###
#####################################################
## Create a temp dir for storing output
dir.create("ADaCGH2_plot_tmp_dir")
originalDir <- getwd()
setwd("ADaCGH2_plot_tmp_dir")
## Start a socket cluster. Change the appropriate number of CPUs
## for your hardware and use other types of clusters (e.g., MPI)
## if you want.
cl2 <- makeCluster(4,"PSOCK")
clusterSetRNGStream(cl2)
setDefaultCluster(cl2)
clusterEvalQ(NULL, library("ADaCGH2"))
## The following is not really needed if you create the cluster AFTER
## changing directories. But better to be explicit.
wdir <- getwd()
clusterExport(NULL, "wdir")
clusterEvalQ(NULL, setwd(wdir))
## Get input data in ff format
## (we loaded the RData above, but we need to find the full path
## to use it in the call to inputToADaCGH)
fname <- list.files(path = system.file("data", package = "ADaCGH2"),
full.names = TRUE, pattern = "inputEx.RData")
inputToADaCGH(ff.or.RAM = "ff",
RDatafilename = fname)
## Segment with HaarSeg
haar.ff.cluster <- pSegmentHaarSeg("cghData.RData",
"chromData.RData",
merging = "MAD",
typeParall= "cluster")
## Save the output (an ff object) and plot
save(haar.ff.cluster, file = "haar.ff.cluster.out.RData",
compress = FALSE)
pChromPlot(outRDataName = "haar.ff.cluster.out.RData",
cghRDataName = "cghData.RData",
chromRDataName = "chromData.RData",
posRDataName = "posData.RData",
probenamesRDataName = "probeNames.RData",
imgheight = 350,
imagemap = TRUE,
typeParall= "cluster")
### Explicitly stop cluster
stopCluster(NULL)
### Clean up (DO NOT do this with objects you want to keep!!!)
load("chromData.RData")
load("posData.RData")
load("cghData.RData")
delete(cghData); rm(cghData)
delete(posData); rm(posData)
delete(chromData); rm(chromData)
unlink("chromData.RData")
unlink("posData.RData")
unlink("cghData.RData")
unlink("probeNames.RData")
lapply(haar.ff.cluster, delete)
rm(haar.ff.cluster)
unlink("haar.ff.cluster.out.RData")
### Try to prevent problems in R CMD check
## Sys.sleep(2)
### Delete all png files and temp dir
setwd(originalDir)
## Sys.sleep(2)
unlink("ADaCGH2_plot_tmp_dir", recursive = TRUE)
## Sys.sleep(2)
## End(Not run)
### PNGs are in this directory
getwd()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.