View source: R/process.input.R
process.input | R Documentation |
process.input
process.input(
input,
tmpDir = NULL,
include.names = TRUE,
check.zero.based = TRUE,
check.chr = TRUE,
check.valid = TRUE,
check.sort = TRUE,
check.merge = TRUE,
verbose = TRUE
)
input |
regions input or a file in one of the standard formats. these are bed, vcf, gff, bam, sam, csv, tsv, txt |
tmpDir |
The directory to be used for writing files |
include.names |
should the names of the input files be included in the output |
check.zero.based |
should 0 based coordinates be checked |
check.chr |
should chr prefix be checked |
check.valid |
should the region be checked for integerity |
check.sort |
should the region sorting be checked |
check.merge |
should overlapping regions be checked |
verbose |
messages and checks |
list of input files
Daryl Waggott
if (check.binary("bedtools")) {
index <- get.example.regions();
a <- index[[1]];
a <- bedr(engine = "bedtools", input = list(i = a), method = "sort", params = "");
a.processed <- process.input(a, verbose = FALSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.