write.expr_matrix {geneExpression} R Documentation

write the gene expression data matrix file

Description

Usage

write.expr_matrix(expr, file,
    id = "geneID",
    binary = FALSE);

Arguments

expr

The gene expression matrix object. [as Matrix]

file

The file path to a csv matrix file that used for export the given `expr` matrix data. [as string]

id

The string content inside the first cell. [as string]

binary

write matrix data in binary data format? default value is False means write matrix as csv matrix file. [as boolean]

Details

Authors

phenotype_kit

Value

A logical vector for indicates that the expression matrix save success or not.

clr value class

Examples

 geneExpression::write.expr_matrix(expr_mat, file = "/path/to/matrix.csv", id = "gene_id");

[Package geneExpression version 1.0.0.0 Index]