compute_pI | R Documentation |
This function is basically a wrapper for function computePI
.
This function translate DNA sequence into protein, and compute the theoretical isoelectric point
(pI) of this protein.
compute_pI(
Sequences,
label = NULL,
on.ORF = FALSE,
auto.full = FALSE,
ambiguous.base = FALSE,
parallel.cores = 2
)
Sequences |
A FASTA file loaded by function |
label |
Optional. String. Indicate the label of the sequences such as "NonCoding", "Coding". |
on.ORF |
Logical. If |
auto.full |
Logical. When |
ambiguous.base |
If |
parallel.cores |
Integer. The number of cores for parallel computation.
By default the number of cores is |
This function can compute the pI of DNA sequences. Method CPC2 (Kang et al. 2017) uses this feature to identify lncRNAs, and this feature is evaluated in the article LncFinder (Han et al. 2018).
Using this function, the theoretical pI can be computed on full sequence or the longest ORF region. In CPC2, pI is calculated on ORF region.
A dataframe.
HAN Siyu
## Not run:
data(demo_DNA.seq)
Sequences <- demo_DNA.seq
pI_res <- compute_pI(Sequences, on.ORF = TRUE, auto.full = FALSE, ambiguous.base = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.