Skip to content

DEResponseResultsPerGeneInner

Properties

Name Type Description Notes
gene_id str Gene identifier.
case_cell_count int Number of cells expressing the gene in the case group.
control_cell_count int Number of cells expressing the gene in the control group.
case_avg_ex float Mean expression level across case cells.
control_avg_ex float Mean expression level across control cells.
ex_difference float Numerical difference between average expressions.
fold_change float Ratio of average expressions between case and control groups.
log2_fc float Logarithm with base 2 of the Fold change value.
mann_whitney_u float Mann–Whitney U test statistic that measures the difference between Case and Control groups.
p_value float The probability of observing results as extreme as (or more extreme than) those obtained, assuming that the null hypothesis is true.

Example

from odm_api.models.de_response_results_per_gene_inner import DEResponseResultsPerGeneInner

# TODO update the JSON string below
json = "{}"
# create an instance of DEResponseResultsPerGeneInner from a JSON string
de_response_results_per_gene_inner_instance = DEResponseResultsPerGeneInner.from_json(json)
# print the JSON string representation of the object
print(DEResponseResultsPerGeneInner.to_json())

# convert the object into a dict
de_response_results_per_gene_inner_dict = de_response_results_per_gene_inner_instance.to_dict()
# create an instance of DEResponseResultsPerGeneInner from a dict
de_response_results_per_gene_inner_from_dict = DEResponseResultsPerGeneInner.from_dict(de_response_results_per_gene_inner_dict)
[Back to Model list] [Back to API list] [Back to README]