fasta.read: Read fasta formate and convert it to data frame

Description Usage Arguments Value Note Author(s) Examples

View source: R/read.fasta.R

Description

Read fasta formate and convert it to data frame

Usage

1
fasta.read(virus.fasta,host.fasta)

Arguments

virus.fasta

directory path to the virus fasta file.

host.fasta

directory path to the host fasta file.

Value

A list with two data frames.

Note

The list with two data.frames; the first one for virus DNA sequences and the second one for the host.

Author(s)

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

Examples

1
2
3
fasta <- fasta.read("virus.fasta", "host.fasta")
fasta.v <- fasta[[1]]
fasta.h <- fasta[[2]]

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

Related to fasta.read in vhcub...