R/sum_aln.R

"sum_aln" <-
function(x){
##Calculate the number of amino acids in each position in amino acid matrix
##
ans="";
for(j in 1:20){
    z<-sum_20_cols(x,j)
    ans<-c(ans,z)
    }
    
return(ans)
}

Try the bgafun package in your browser

Any scripts or data that you put into this service are public.

bgafun documentation built on April 28, 2020, 7:56 p.m.