Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 2.71 KB

MetaAnalysisPostBody.md

File metadata and controls

46 lines (38 loc) · 2.71 KB

MetaAnalysisPostBody

Properties

Name Type Description Notes
specification MetaAnalysisSpecification
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]
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.
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.
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]

Example

from neurosynth_compose_sdk.models.meta_analysis_post_body import MetaAnalysisPostBody

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

# convert the object into a dict
meta_analysis_post_body_dict = meta_analysis_post_body_instance.to_dict()
# create an instance of MetaAnalysisPostBody from a dict
meta_analysis_post_body_form_dict = meta_analysis_post_body.from_dict(meta_analysis_post_body_dict)

[Back to Model list] [Back to API list] [Back to README]