Closed forestrywhale closed 4 years ago
With multiple conditions, Eschers expect a list. I think what you're looking for is:
mydata = [
{gene1: 2.2, gene2: 2.2...}, # "condition 1"
{gene1: 2.2, gene2: 2.2...}, # "condition 2"
]
Thank you so much! I'll try that.
This is exactly what I needed!
Hi, I aware that this might looks similar to one other question on using reaction_scale and gene_data option in python API, but I'm having trouble understanding how it works.
I am not sure how to implement compared gene data using the Builder.opitions.gene_data. I generated a dictionary like:
But if I use both conditions, the graph would give me all blank pathways, for now I only figured out way to use one condition is adding
gene_data = mydict["condition 1"]
toBuilder()
, in this case, how can I map two conditions on the pathways?