rev.comp: a function returning the reverse compliment of a sequence.

Usage Arguments Examples

View source: R/rev.comp.R

Usage

1

Arguments

x

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (x) 
{
    paste(chartr("CGAT", "GCTA", rev(unlist(strsplit(x, "")))), 
        collapse = "")
  }

muhligs/Regmex documentation built on Sept. 5, 2020, 1:11 a.m.