Learn R Programming

metevalue (version 0.2.4)

metevalue.RNA_general: A general method to calculate the e-value for RNA-seq data.

Description

A general method to calculate the e-value for RNA-seq data.

Usage

metevalue.RNA_general(rna, group1_name, group2_name)

Value

evalue

Arguments

rna

data.frame: A data.frame object of RNAseq data. For example:

TAGtreated1fbtreated2fbuntreated1fbuntreated2fb
TAG14.4496484.7501044.3922854.497514
TAG28.2411168.3028528.3181258.488796
...............

Row names (TAG1 and TAG2 in the above example) is also suggested.

group1_name

charactor: The name (pattern) of the first group. For example, "treated" in the above example. For example `treated_abc` and `treated` will be considered as the same group if `group1_name = "treated"`. Use this with care in practice.

group2_name

charactor: The name (pattern) of the second group. For example, "untreated" in the above example. For example `untreated_abc` and `untreated` will be considered as the same group if `group2_name = "untreated"`. Use this with care in practice.

Examples

Run this code
data("demo_desq_out")
# \donttest{
evalue = metevalue.RNA_general(demo_desq_out, 'treated','untreated')
# }

Run the code above in your browser using DataLab