revCompl: Reverse Complementary DNA or RNA Sequence

Description Usage Arguments Value Author(s) References Examples

Description

Sequence manipulation Tool for Molecular Biology. Retrieves the complementary, reverse or reverse-complementary sequence of the DNA or RNA sequence(s) passed as argument.

Usage

1
revCompl(DNAsequence, rev = TRUE, compl = TRUE)

Arguments

DNAseq

characther string containing the DNA/RNA sequence(s) to be manipulated

rev

boolean. If TRUE, the reverse sequence is returned. Can be combined with compl = TRUE to return the reverse-complement of the sequence(s) passed in as argument

compl

boolean. If TRUE, the complementary sequence is returned. Can be combined with rev = TRUE to return the reverse-complement of the sequence(s) passed in as argument

Value

character String including the reverse-complementary sequences.

Author(s)

Damiano Fantini <damiano.fantini@gmail.com>

References

https://github.com/dami82/damitools

Examples

1
2
dnaSequences <- c("AAACCG","AACUUUGGG","CCAANNNNTTGG")
revCompl(dnaSequences)

dami82/damitools documentation built on May 14, 2019, 3:33 p.m.