You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -39,12 +39,13 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
39
39
feature_filter = ['feature_filter_example'] # List[str] | Filter results by feature content. Format: \"PipelineName[:version]:field_path=value\". Examples: - \"TestPipeline:1.0.0:groups.diagnosis=ADHD\" (specific version) - \"TestPipeline:groups.diagnosis=ADHD\" (latest version) Field path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. (optional)
40
40
feature_flatten =True# bool | (optional)
41
41
pipeline_config = ['pipeline_config_example'] # List[str] | Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. (optional)
42
+
feature_display = ['feature_display_example'] # List[str] | Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions. (optional)
42
43
study_id = ['study_id_example'] # List[str] | Filter results by base study ID (optional)
43
44
version ='version_example'# str | Filter results by pipeline config version (optional)
print("The response of PipelineStudyResultsApi->pipeline_study_results_get:\n")
49
50
pprint(api_response)
50
51
exceptExceptionas e:
@@ -61,6 +62,7 @@ Name | Type | Description | Notes
61
62
**feature_filter** | [**List[str]**](str.md)| Filter results by feature content. Format: \"PipelineName[:version]:field_path=value\". Examples: - \"TestPipeline:1.0.0:groups.diagnosis=ADHD\" (specific version) - \"TestPipeline:groups.diagnosis=ADHD\" (latest version) Field path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. | [optional]
62
63
**feature_flatten** | **bool**| | [optional]
63
64
**pipeline_config** | [**List[str]**](str.md)| Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. | [optional]
65
+
**feature_display** | [**List[str]**](str.md)| Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions. | [optional]
64
66
**study_id** | [**List[str]**](str.md)| Filter results by base study ID | [optional]
65
67
**version** | **str**| Filter results by pipeline config version | [optional]
Copy file name to clipboardExpand all lines: neurostore_sdk/api/pipeline_study_results_api.py
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ def pipeline_study_results_get(
47
47
feature_filter: Annotated[Optional[List[StrictStr]], Field(description="Filter results by feature content. Format: \"PipelineName[:version]:field_path=value\". Examples: - \"TestPipeline:1.0.0:groups.diagnosis=ADHD\" (specific version) - \"TestPipeline:groups.diagnosis=ADHD\" (latest version) Field path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. ")] =None,
48
48
feature_flatten: Optional[StrictBool] =None,
49
49
pipeline_config: Annotated[Optional[List[StrictStr]], Field(description="Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. ")] =None,
50
+
feature_display: Annotated[Optional[List[StrictStr]], Field(description="Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions. ")] =None,
50
51
study_id: Annotated[Optional[List[StrictStr]], Field(description="Filter results by base study ID")] =None,
51
52
version: Annotated[Optional[StrictStr], Field(description="Filter results by pipeline config version")] =None,
52
53
_request_timeout: Union[
@@ -71,6 +72,8 @@ def pipeline_study_results_get(
71
72
:type feature_flatten: bool
72
73
:param pipeline_config: Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=.
73
74
:type pipeline_config: List[str]
75
+
:param feature_display: Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions.
76
+
:type feature_display: List[str]
74
77
:param study_id: Filter results by base study ID
75
78
:type study_id: List[str]
76
79
:param version: Filter results by pipeline config version
feature_filter: Annotated[Optional[List[StrictStr]], Field(description="Filter results by feature content. Format: \"PipelineName[:version]:field_path=value\". Examples: - \"TestPipeline:1.0.0:groups.diagnosis=ADHD\" (specific version) - \"TestPipeline:groups.diagnosis=ADHD\" (latest version) Field path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. ")] =None,
130
134
feature_flatten: Optional[StrictBool] =None,
131
135
pipeline_config: Annotated[Optional[List[StrictStr]], Field(description="Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. ")] =None,
136
+
feature_display: Annotated[Optional[List[StrictStr]], Field(description="Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions. ")] =None,
132
137
study_id: Annotated[Optional[List[StrictStr]], Field(description="Filter results by base study ID")] =None,
133
138
version: Annotated[Optional[StrictStr], Field(description="Filter results by pipeline config version")] =None,
:param pipeline_config: Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=.
155
160
:type pipeline_config: List[str]
161
+
:param feature_display: Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions.
162
+
:type feature_display: List[str]
156
163
:param study_id: Filter results by base study ID
157
164
:type study_id: List[str]
158
165
:param version: Filter results by pipeline config version
feature_filter: Annotated[Optional[List[StrictStr]], Field(description="Filter results by feature content. Format: \"PipelineName[:version]:field_path=value\". Examples: - \"TestPipeline:1.0.0:groups.diagnosis=ADHD\" (specific version) - \"TestPipeline:groups.diagnosis=ADHD\" (latest version) Field path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. ")] =None,
212
220
feature_flatten: Optional[StrictBool] =None,
213
221
pipeline_config: Annotated[Optional[List[StrictStr]], Field(description="Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=. ")] =None,
222
+
feature_display: Annotated[Optional[List[StrictStr]], Field(description="Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions. ")] =None,
214
223
study_id: Annotated[Optional[List[StrictStr]], Field(description="Filter results by base study ID")] =None,
215
224
version: Annotated[Optional[StrictStr], Field(description="Filter results by pipeline config version")] =None,
:param pipeline_config: Filter results by pipeline config content. Format: \"PipelineName[:version]:config_path=value\". Examples: - \"TestPipeline:1.0.0:preprocessing.smoothing=8\" (specific version) - \"TestPipeline:model.type=linear\" (latest version) Config path supports array notation with [], regex search with ~, and comparisons with =, >, <, >=, <=.
237
246
:type pipeline_config: List[str]
247
+
:param feature_display: Filter results by pipeline name and optionally version. Format: \"pipeline_name[:version]\". Examples: - \"TestPipeline\" (all results from pipeline) - \"TestPipeline:1.0.0\" (results from specific version) Multiple values can be provided to get results from multiple pipelines/versions.
248
+
:type feature_display: List[str]
238
249
:param study_id: Filter results by base study ID
239
250
:type study_id: List[str]
240
251
:param version: Filter results by pipeline config version
0 commit comments