export.wiggle: Export as wiggle format

Description Usage Arguments Value References See Also Examples

View source: R/utils_exports.R

Description

Will create 2 files, 1 for + strand (*_forward.wig) and 1 for - strand (*_reverse.wig). If all files are * stranded, will output 1 file. Can be direct input for ucsc browser or IGV

Usage

1

Arguments

x

A GRangesList, GAlignment GAlignmentPairs with score column. Will be converted to 5' end position of original range. If score column does not exist, will group ranges and give replicates as score column.

file

a character path to valid output file name

Value

invisible(NULL) (File is saved as 2 .wig files)

References

https://genome.ucsc.edu/goldenPath/help/wiggle.html

See Also

Other utils: bedToGR(), convertToOneBasedRanges(), export.bed12(), fimport(), findFa(), fread.bed(), optimizeReads(), readBam(), readWig()

Examples

1
2
x <- c(GRanges("1", c(1,3,5), "-"), GRanges("1", c(1,3,5), "+"))
# export.wiggle(x, "output/path/rna.wig")

ORFik documentation built on March 27, 2021, 6 p.m.