Is there a way to programmatically query the spreadsheet that is used to create an Experiment?
I attempted to do this by first creating an Experiment from an existing .xlsx spreadsheet file (using the web interface). I can see that this operation succeeded (the Samples tab is populated). Then I expected to be able to programmatically query the name of this file using the Python API:
# Get list of all projects you have access to
project = c.get_all_projects()[0]
## Get all experiments in a project
x = c.get_all_experiments(project.id)[0]
print(x.files)
...but this just returns an empty list!
Is there a way to programmatically query the spreadsheet that is used to create an Experiment?
I attempted to do this by first creating an Experiment from an existing .xlsx spreadsheet file (using the web interface). I can see that this operation succeeded (the Samples tab is populated). Then I expected to be able to programmatically query the name of this file using the Python API:
...but this just returns an empty list!