R/remove_3rd_codon.R

#' Create a sequence alignment with only the 1st and 2nd codon
#' @param aln a sequence alignment 
#' @export
remove_3rd_codon <- function(aln, ...){
  is_inFrame(aln)
  aln_1st_2nd<-aln[, -seq(0, ncol(aln), by=3)]
}
genomewalker/oligo4fun documentation built on May 17, 2019, 1:11 a.m.