sim.plot.overlapping.indep.dep.features(input.regions,
input.region.indep = NULL,
adjust.method = "BY",
log = FALSE,
significance = 0.2,
max.pow = 5,
z.threshold = c(-3,3),
summarize = c("consecutive", "stretch", "window"),
stretch = 10,
window = 1e6,
percentage = 0.5,
xlim=NULL,
pdf = FALSE,
method = c("full", "smooth", "window", "overlap"),
run.name = "analysis_results", ...)
vector
indicating the dependent regions to be analyzed. Can be defined in four ways:
1) predefined input region:
insert a predefined input region, choices are:
all chrs,
all chrs auto,
all arms,
all arms auto
In the predefined regions all arms and all arms auto the arms 13p, 14p, 15p, 21p and 22p
are left out, because in most studies there are no or few probes in these regions.
To include them, just make your own vector of arms.
2) whole chromosome(s):
insert a single chromosome or a list of chromosomes as a
vector:
c(1, 2, 3)
.
3) chromosome arms:
insert a single chromosome arm or a list of chromosome arms like
c("1q", "2p", "2q")
.
4) subregions of a chromosome:
insert a chromosome number followed by the start and end position like
"chr1:1-1000000"
These regions can also be combined, e.g. c("chr1:1-1000000","2q", 3)
.
See integrated.analysis
for more information.logical
default log = FALSE
, if log = TRUE
P-values are plotting on $log[10]$ scale.numeric
only when log = TRUE
scale of the y-axis.z.threshold
(high positive
association) or below -z.threshold
(high negative association).percentage
significant stretch of size stretch
integer
length of stretch, default stretch = 10
integer
length of window, default window = 1e6
numeric
a number between $[0,1]$ given the percentage of significance in either the stretch of windowc(min, max)
scale of the x-axis. Can be used for zooming in on a region.logical
indicate whether to generate a pdf of the plots in the current working directory or not.integrated.analysis
.integrated.analysis
run.name
as pdf.#first run example(assemble.data)
#and example(integrated.analysis)
#overview plot of the dependent and independent features
sim.plot.overlapping.indep.dep.features(input.regions="8q",
adjust.method="BY",
significance=0.1,
z.threshold= c(-1,1),
log=TRUE,
summarize="consecutive",
pdf=FALSE,
method="full",
run.name="chr8q")
Run the code above in your browser using DataLab