Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.56 KB

File metadata and controls

46 lines (37 loc) · 2.56 KB

MetaAnalysisPostBody

Properties

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]

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_from_dict = MetaAnalysisPostBody.from_dict(meta_analysis_post_body_dict)

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