Open wangbenwang123 opened 1 month ago
In part of the Compute_CCI function, the following code appears:
Compute_CCI
gene_expr <- as.data.frame(gene_expr)
However, in the function's parameters, there is no gene_expr, only data.
gene_expr
data
Compute_CCI( data = data, )
Additionally, does the data input always need to be in TPM format? Are there any optimized methods for handling counts instead?
and a new error In file(filename, "r", encoding = encoding) : cannot open file 'Pvalue_target_genes_all_cluster.R': No such file or directory
In part of the
Compute_CCI
function, the following code appears:However, in the function's parameters, there is no
gene_expr
, onlydata
.Additionally, does the
data
input always need to be in TPM format? Are there any optimized methods for handling counts instead?