
Takes a list that contains an $x and $y data.frame for a number of chromosomes and writes it out to a WIG BED style format.
writewig(dat, fname, feature, threshold = 5, zip = F)
Chromosome coordinate-value data. dat
is a list,
each member of a list is a data frame with $x and $y columns
containing chromosome positions and associated values. The names of
the list elements correspond to the chromosomes.
Filename to which the output should be written
Data description to be incorporated into the WIG header
Optional threshold to be saved in the WIG file
Wheter to invoke a zip program to compress the file
~~objects to See Also as help
, ~~~
# NOT RUN {
data <- list("chr1"=data.frame(x=c(100,130,200),y=c(1.2,4.0,2.3)));
writewig(data,"filename");
# }
Run the code above in your browser using DataLab