miRNA_MatureToPrecursor {miRBaseConverter} | R Documentation |
This function converts the mature miRNAs to the corresponding precursors in the specified miRBase version.
miRNA_MatureToPrecursor(miRNANames, version = NULL)
miRNANames |
A character vector representing the miRNA names. |
version |
The default is NULL representing the most possible latest version of the input miRNA Names will be checked automatically.
Otherwise, a character value representing the version corresponding the input miRNA Names.
Users can apply the function getAllVersionInfo() to get the available miRNA version names.
The optional values are in below: |
A data frame(nx2). The number of rows equal to the input miRNA Names. The two columns are defined as below:
OriginalName : The input miRNA Names.
Precursor : The corresponding precursors of the mature miRNAs.
Xu, Taosheng taosheng.x@gmail.com
data(miRNATest) miRNANames=miRNATest$miRNA_Name result=miRNA_MatureToPrecursor(miRNANames)