The combination of the specification determining what meta-analysis to run (required), the studyset to act as input to the meta-analytic algorithm (required), and the annotation to provide human readable annotations as well as acts as an optional filter on which analyses to select within the studyset (optional, but suggested).
| Name | Type | Description | Notes |
|---|---|---|---|
| specification | MetaAnalysisSpecification | [optional] | |
| neurostore_studyset | MetaAnalysisNeurostoreStudyset | [optional] | |
| neurostore_annotation | MetaAnalysisNeurostoreAnnotation | [optional] | |
| name | str | Human-readable name of the meta-analysis. | [optional] |
| description | str | Long form description of the meta-analysis. | [optional] |
| public | bool | whether the meta-analysis is public or private | [optional] |
| tags | MetaAnalysisTags | [optional] | |
| results | MetaAnalysisResults | [optional] | |
| provenance | object | [optional] | |
| project | str | [optional] | |
| run_key | str | a special key used to upload the results of this meta analysis. Can be used as an alternative to using your auth token from login. | [optional] [readonly] |
| snapshots | List[object] | Ordered history of (studyset, annotation) snapshot pairs recorded each time a MetaAnalysisResult is created. Each entry contains studyset_id, studyset_md5, annotation_id, annotation_md5, result_id, and created_at. | [optional] [readonly] |
| neurostore_analysis | NeurostoreAnalysis | [optional] | |
| cognitive_contrast_cogatlas | str | [optional] | |
| cognitive_contrast_cogatlas_id | str | [optional] | |
| cognitive_paradigm_cogatlas | str | [optional] | |
| cognitive_paradigm_cogatlas_id | str | [optional] | |
| neurostore_url | str | [optional] [readonly] |
from neurosynth_compose_sdk.models.meta_analysis import MetaAnalysis
# TODO update the JSON string below
json = "{}"
# create an instance of MetaAnalysis from a JSON string
meta_analysis_instance = MetaAnalysis.from_json(json)
# print the JSON string representation of the object
print(MetaAnalysis.to_json())
# convert the object into a dict
meta_analysis_dict = meta_analysis_instance.to_dict()
# create an instance of MetaAnalysis from a dict
meta_analysis_from_dict = MetaAnalysis.from_dict(meta_analysis_dict)