#' flipstrand
#'
#' flipstrand
#'
#' @param x a vector of alleles
#'
#' @export
flipstrand <- function(x){
if(x == 'A'){return('T')}
if(x == 'T'){return('A')}
if(x == 'G'){return('C')}
if(x == 'C'){return('G')}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.