@@ -1112,7 +1112,7 @@ Name | Type | Description | Notes
1112
1112
[[ Back to top]] ( # ) [[ Back to API list]] ( ../README.md#documentation-for-api-endpoints ) [[ Back to Model list]] ( ../README.md#documentation-for-models ) [[ Back to README]] ( ../README.md )
1113
1113
1114
1114
# ** base_studies_get**
1115
- > BaseStudyList base_studies_get(feature_filter=feature_filter, feature_display=feature_display, feature_flatten=feature_flatten, search=search, sort=sort, page=page, desc=desc, page_size=page_size, name=name, description=description, authors=authors, level=level, data_type=data_type, publication=publication, pmid=pmid, doi=doi, flat=flat, info=info)
1115
+ > BaseStudyList base_studies_get(feature_filter=feature_filter, pipeline_config=pipeline_config, feature_display=feature_display, feature_flatten=feature_flatten, search=search, sort=sort, page=page, desc=desc, page_size=page_size, name=name, description=description, authors=authors, level=level, data_type=data_type, publication=publication, pmid=pmid, doi=doi, flat=flat, info=info)
1116
1116
1117
1117
1118
1118
@@ -1146,7 +1146,8 @@ configuration = neurostore_sdk.Configuration(
1146
1146
with neurostore_sdk.ApiClient(configuration) as api_client:
1147
1147
# Create an instance of the API class
1148
1148
api_instance = neurostore_sdk.StoreApi(api_client)
1149
- feature_filter = ' feature_filter_example' # str | Filter studies by features (optional)
1149
+ feature_filter = [' feature_filter_example' ] # List[str] | Filter studies by feature content. Format: \"PipelineName[:version]:field_path=value\". Examples: - \"TestPipeline:1.0.0:predictions.age_mean>20\" (specific version) - \"TestPipeline:groups.diagnosis=ADHD\" (latest version) Field path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. (optional)
1150
+ pipeline_config = [' pipeline_config_example' ] # List[str] | Filter studies by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:settings.min_age=20\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. (optional)
1150
1151
feature_display = ' feature_display_example' # str | display features from pipelines (optional)
1151
1152
feature_flatten = True # bool | (optional)
1152
1153
search = ' imagin' # str | search for entries that contain the substring (optional)
@@ -1167,7 +1168,7 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
1167
1168
1168
1169
try :
1169
1170
#
1170
- api_response = api_instance.base_studies_get(feature_filter = feature_filter, feature_display = feature_display, feature_flatten = feature_flatten, search = search, sort = sort, page = page, desc = desc, page_size = page_size, name = name, description = description, authors = authors, level = level, data_type = data_type, publication = publication, pmid = pmid, doi = doi, flat = flat, info = info)
1171
+ api_response = api_instance.base_studies_get(feature_filter = feature_filter, pipeline_config = pipeline_config, feature_display = feature_display, feature_flatten = feature_flatten, search = search, sort = sort, page = page, desc = desc, page_size = page_size, name = name, description = description, authors = authors, level = level, data_type = data_type, publication = publication, pmid = pmid, doi = doi, flat = flat, info = info)
1171
1172
print (" The response of StoreApi->base_studies_get:\n " )
1172
1173
pprint(api_response)
1173
1174
except Exception as e:
@@ -1181,7 +1182,8 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
1181
1182
1182
1183
Name | Type | Description | Notes
1183
1184
------------- | ------------- | ------------- | -------------
1184
- ** feature_filter** | ** str** | Filter studies by features | [ optional]
1185
+ ** feature_filter** | [ ** List[ str] ** ] ( str.md ) | Filter studies by feature content. Format: \& quot;PipelineName[ : version ] : field_path = ; value\& quot;. Examples: - \& quot;TestPipeline:1.0.0: predictions .age_mean> ; 20\& quot; (specific version) - \& quot;TestPipeline: groups .diagnosis= ; ADHD\& quot; (latest version) Field path supports array notation with [ ] , regex search with ~ , and comparisons with = ; , > ; , < ; , > ; = ; , < ; = ; . | [ optional]
1186
+ ** pipeline_config** | [ ** List[ str] ** ] ( str.md ) | Filter studies by pipeline config content. Format: \& quot;PipelineName[ : version ] : config_path = ; value\& quot;. Examples: - \& quot;TestPipeline:1.0.0: settings .min_age= ; 20\& quot; (specific version) - \& quot;TestPipeline: model .type= ; linear\& quot; (latest version) Config path supports array notation with [ ] , regex search with ~ , and comparisons with = ; , > ; , < ; , > ; = ; , < ; = ; . | [ optional]
1185
1187
** feature_display** | ** str** | display features from pipelines | [ optional]
1186
1188
** feature_flatten** | ** bool** | | [ optional]
1187
1189
** search** | ** str** | search for entries that contain the substring | [ optional]
0 commit comments