Description Usage Arguments Value Examples
as.eset_map() converts an object of class 
fpkm_counts or raw_counts to an ExpressionSet object, 
with a lot of other details that are normally required for DGE analysis, 
but might be necessary at times. 
This function is still in development, hence not exported.
1 2 3 4 5 6 7 8 9 10 11 12  | as.eset_map(x, entrez_map = NULL, reference_group = "", ...)
## Default S3 method:
as.eset_map(x, entrez_map = NULL, ...)
## S3 method for class 'fpkm_counts'
as.eset_map(x, entrez_map = NULL, genome_annotation,
  gene_name_col, reference_group = "", ...)
## S3 method for class 'raw_counts'
as.eset_map(x, entrez_map = NULL, genome_annotation,
  gene_name_col, reference_group = "", ...)
 | 
x | 
 An object of class   | 
entrez_map | 
 Full path to file that contains mapping of gene names to 
ENTREZ ids along with corresponding gene ids . It must be a three column 
 If the argument is   | 
reference_group | 
 A character vector of length=1 indicating the reference sample.  | 
... | 
 Additional arguments specific to methods.  | 
genome_annotation | 
 An object of class   | 
gene_name_col | 
 A character vector of length=1 indicating the name of 
the column corresponding to gene names in   | 
An object of class ExpressionSet tuned for MAP.
1 2 3 4 5 6  | ## Not run: 
  # my_gtf is obtained using gread::read_format.
  eset_obj = as.eset_map(x, genome_annotation = my_gtf, 
                   gene_name_col = "gene_name")
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.