ENc.values: Effective Number of Codons (ENc).

Description Usage Arguments Details Value Author(s) Examples

View source: R/ENc.values.R

Description

Measure the Effective Number of Codons (ENc) of DNA sequence. Using its modified version (Novembre, 2002).

Usage

1
ENc.values(df.fasta,genetic.code = "1",threshold=0)

Arguments

df.fasta

a data frame with seq_name and its DNA sequence.

genetic.code

a single string that uniquely identifies a genetic code to use.

threshold

optional numeric, specifying sequence length, in codons, used for filtering.

Details

For more information about ENc Novembre, 2002.

Value

A data.frame containing the computed ENc values for each DNA sequences within df.fasta.

Author(s)

Ali Mostafa Anwar ali.mo.anwar@std.agr.cu.edu.eg and Mohmed Soudy MohmedSoudy2009@gmail.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# read DNA from fasta file
fasta <- fasta.read("virus.fasta", "host.fasta")
fasta.v <- fasta[[1]]
fasta.h <- fasta[[2]]


# Calculate ENc
enc.df.v <- ENc.values(fasta.v)

enc.df.h <- ENc.values(fasta.h)

vhcub documentation built on Nov. 15, 2019, 5:10 p.m.

Related to ENc.values in vhcub...