Description Usage Arguments Value Author(s) Examples
View source: R/miRBaseConvert.R
This function converts a group of any species' miRNA name to the Accessions defined in miRBase.
1 | miRNA_NameToAccession(miRNANames, version = "v22")
|
miRNANames |
A character vector representing the source miRNA names needed to be convert. |
version |
A character value representing the version corresponding the miRNANames.
Users can apply the function getAllVersionInfo() to get the available miRNA version names.
The optional values are in below: |
A nx2 data frame. The number of rows equal to the input miRNA names. The two columns are defined as below:
miRNAName_{Version} : The input miRNA names (Column 1).
Accession : The convert Accession(Column 2).
Xu, Taosheng taosheng.x@gmail.com
1 2 3 4 5 6 | data(miRNATest)
miRNANames=miRNATest$miRNA_Name
version=checkMiRNAVersion(miRNANames,verbose=TRUE)
result1=miRNA_NameToAccession(miRNANames,version=version)
result2=miRNA_AccessionToName(result1[,2],targetVersion="v22")
result3=miRNAVersionConvert(miRNANames,targetVersion="v22",exact=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.