Description Usage Arguments Value See Also Examples
Constructing regioned_dna from DNAStringSet. Optionally input a
region data.frame to define restricted amino-acid region for mutation.
| 1 2 3 4 5 6 7 8 9 10 | 
| object | Filepath or DNAstringSet. The input sequences is suggested to be in open reading frame(ORF). | 
| region | 
 | 
| ... | ... | 
A regioned_dna-class object
get_cu, get_du,
get_region, get_dna
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | # Creating a input_seq class directly from system file
filepath <- system.file("extdata", "example.fasta", package = "SynMut")
rgd.seq <- input_seq(filepath)
# Optionally input with region dataframe
filepath.fasta <- system.file("extdata", "example.fasta", package = "SynMut")
fp.csv <- system.file("extdata", "target_regions.csv", package = "SynMut")
region <- read.csv(fp.csv)
rgd.seq <- input_seq(filepath.fasta, region)
# Creating from exsisting DNAStringSet object
seq <- Biostrings::DNAStringSet("ATCGATCGA")
rgd.seq <- input_seq(seq)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.