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] | |
| studyset | MetaAnalysisStudyset | [optional] | |
| annotation | MetaAnalysisAnnotation | [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] | |
| cached_studyset_id | str | The id of the studyset on neurosynth-compose (as opposed to the id of the studyset on neurostore). Multiple snapshots of the studyset can be stored on neurosynth-compose so knowing which snapshot is being referenced is necessary. | [optional] |
| cached_annotation_id | str | The id of the annotation on neurosynth-compose (as opposed to the id of the annotation on neurostore). Multiple snapshots of the annotation can be stored on neurosynth-compose so knowing which snapshot is being referenced is necessary. | [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] |
| 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] | |
| cached_studyset | str | [optional] [readonly] | |
| cached_annotation | str | [optional] [readonly] | |
| 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)