niwrap-mrtrix3tissue 0.6.2__tar.gz → 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of niwrap-mrtrix3tissue might be problematic. Click here for more details.

@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: niwrap-mrtrix3tissue
3
+ Version: 0.7.0
4
+ Summary: Neuroimaging wrappers.
5
+ Author: CMI DAIR
6
+ License-Expression: MIT
7
+ Requires-Dist: styxdefs>=0.5.0,<0.6.0
8
+ Requires-Python: >=3.10
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "niwrap_mrtrix3tissue"
3
+ version = "0.7.0"
4
+ description = "Neuroimaging wrappers."
5
+ license = "MIT"
6
+ authors = [{ name = "CMI DAIR" }]
7
+ requires-python = ">=3.10"
8
+ dependencies = [
9
+ "styxdefs>=0.5.0,<0.6.0"
10
+ ]
11
+
12
+ [tool.uv.build-backend]
13
+ module-name = "niwrap_mrtrix3tissue.mrtrix3tissue"
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.8.13,<0.9.0"]
17
+ build-backend = "uv_build"
@@ -0,0 +1,32 @@
1
+ """
2
+ MRTrix3Tissue
3
+
4
+ MRtrix3Tissue is a fork of the MRtrix3 project. It aims to add capabilities for
5
+ 3-Tissue CSD modelling and analysis to a complete version of the MRtrix3
6
+ software.
7
+
8
+ Author: MRTrix3Tissue Developers
9
+
10
+ URL: https://3tissue.github.io/
11
+ """
12
+ # This file was auto generated by Styx.
13
+ # Do not edit this file directly.
14
+
15
+ from .ss3t_csd_beta1 import *
16
+ from styxdefs import Runner as _Runner
17
+
18
+
19
+ def execute(
20
+ params: dict,
21
+ runner: _Runner | None = None,
22
+ ) -> None:
23
+ """
24
+ Run a command in this package dynamically from a params object.
25
+
26
+ Args:
27
+ params: The parameters.
28
+ runner: Command runner.
29
+ """
30
+ return {
31
+ "mrtrix3tissue/ss3t_csd_beta1": ss3t_csd_beta1_execute,
32
+ }[params["@type"]](params, runner)
@@ -6,7 +6,7 @@ import pathlib
6
6
  from styxdefs import *
7
7
 
8
8
  SS3T_CSD_BETA1_METADATA = Metadata(
9
- id="02df08185e6be9ec2c2813ee30e45a9daebade1a.boutiques",
9
+ id="1232a653007a6a29f9cc9f7f319bd002a791411a.boutiques",
10
10
  name="ss3t_csd_beta1",
11
11
  package="mrtrix3tissue",
12
12
  container_image_tag="brainlife/3tissue:5.2.8",
@@ -14,21 +14,47 @@ SS3T_CSD_BETA1_METADATA = Metadata(
14
14
 
15
15
 
16
16
  Ss3tCsdBeta1ConfigParameters = typing.TypedDict('Ss3tCsdBeta1ConfigParameters', {
17
- "__STYXTYPE__": typing.Literal["config"],
17
+ "@type": typing.NotRequired[typing.Literal["config"]],
18
+ "key": str,
19
+ "value": str,
20
+ })
21
+ Ss3tCsdBeta1ConfigParametersTagged = typing.TypedDict('Ss3tCsdBeta1ConfigParametersTagged', {
22
+ "@type": typing.Literal["config"],
18
23
  "key": str,
19
24
  "value": str,
20
25
  })
21
26
 
22
27
 
23
28
  Ss3tCsdBeta1ResponseOdfParameters = typing.TypedDict('Ss3tCsdBeta1ResponseOdfParameters', {
24
- "__STYXTYPE__": typing.Literal["response_odf"],
29
+ "@type": typing.NotRequired[typing.Literal["response_odf"]],
30
+ "response": InputPathType,
31
+ "odf": str,
32
+ })
33
+ Ss3tCsdBeta1ResponseOdfParametersTagged = typing.TypedDict('Ss3tCsdBeta1ResponseOdfParametersTagged', {
34
+ "@type": typing.Literal["response_odf"],
25
35
  "response": InputPathType,
26
36
  "odf": str,
27
37
  })
28
38
 
29
39
 
30
40
  Ss3tCsdBeta1Parameters = typing.TypedDict('Ss3tCsdBeta1Parameters', {
31
- "__STYXTYPE__": typing.Literal["ss3t_csd_beta1"],
41
+ "@type": typing.NotRequired[typing.Literal["mrtrix3tissue/ss3t_csd_beta1"]],
42
+ "mask": typing.NotRequired[InputPathType | None],
43
+ "bzero_pct": typing.NotRequired[float | None],
44
+ "niter": typing.NotRequired[int | None],
45
+ "info": bool,
46
+ "quiet": bool,
47
+ "debug": bool,
48
+ "force": bool,
49
+ "nthreads": typing.NotRequired[int | None],
50
+ "config": typing.NotRequired[list[Ss3tCsdBeta1ConfigParameters] | None],
51
+ "help": bool,
52
+ "version": bool,
53
+ "dwi": InputPathType,
54
+ "response_odf": list[Ss3tCsdBeta1ResponseOdfParameters],
55
+ })
56
+ Ss3tCsdBeta1ParametersTagged = typing.TypedDict('Ss3tCsdBeta1ParametersTagged', {
57
+ "@type": typing.Literal["mrtrix3tissue/ss3t_csd_beta1"],
32
58
  "mask": typing.NotRequired[InputPathType | None],
33
59
  "bzero_pct": typing.NotRequired[float | None],
34
60
  "niter": typing.NotRequired[int | None],
@@ -43,47 +69,12 @@ Ss3tCsdBeta1Parameters = typing.TypedDict('Ss3tCsdBeta1Parameters', {
43
69
  "dwi": InputPathType,
44
70
  "response_odf": list[Ss3tCsdBeta1ResponseOdfParameters],
45
71
  })
46
-
47
-
48
- def dyn_cargs(
49
- t: str,
50
- ) -> typing.Any:
51
- """
52
- Get build cargs function by command type.
53
-
54
- Args:
55
- t: Command type.
56
- Returns:
57
- Build cargs function.
58
- """
59
- return {
60
- "ss3t_csd_beta1": ss3t_csd_beta1_cargs,
61
- "config": ss3t_csd_beta1_config_cargs,
62
- "response_odf": ss3t_csd_beta1_response_odf_cargs,
63
- }.get(t)
64
-
65
-
66
- def dyn_outputs(
67
- t: str,
68
- ) -> typing.Any:
69
- """
70
- Get build outputs function by command type.
71
-
72
- Args:
73
- t: Command type.
74
- Returns:
75
- Build outputs function.
76
- """
77
- return {
78
- "ss3t_csd_beta1": ss3t_csd_beta1_outputs,
79
- "response_odf": ss3t_csd_beta1_response_odf_outputs,
80
- }.get(t)
81
72
 
82
73
 
83
74
  def ss3t_csd_beta1_config_params(
84
75
  key: str,
85
76
  value: str,
86
- ) -> Ss3tCsdBeta1ConfigParameters:
77
+ ) -> Ss3tCsdBeta1ConfigParametersTagged:
87
78
  """
88
79
  Build parameters.
89
80
 
@@ -94,7 +85,7 @@ def ss3t_csd_beta1_config_params(
94
85
  Parameter dictionary
95
86
  """
96
87
  params = {
97
- "__STYXTYPE__": "config",
88
+ "@type": "config",
98
89
  "key": key,
99
90
  "value": value,
100
91
  }
@@ -116,8 +107,8 @@ def ss3t_csd_beta1_config_cargs(
116
107
  """
117
108
  cargs = []
118
109
  cargs.append("-config")
119
- cargs.append(params.get("key"))
120
- cargs.append(params.get("value"))
110
+ cargs.append(params.get("key", None))
111
+ cargs.append(params.get("value", None))
121
112
  return cargs
122
113
 
123
114
 
@@ -134,7 +125,7 @@ class Ss3tCsdBeta1ResponseOdfOutputs(typing.NamedTuple):
134
125
  def ss3t_csd_beta1_response_odf_params(
135
126
  response: InputPathType,
136
127
  odf: str,
137
- ) -> Ss3tCsdBeta1ResponseOdfParameters:
128
+ ) -> Ss3tCsdBeta1ResponseOdfParametersTagged:
138
129
  """
139
130
  Build parameters.
140
131
 
@@ -145,7 +136,7 @@ def ss3t_csd_beta1_response_odf_params(
145
136
  Parameter dictionary
146
137
  """
147
138
  params = {
148
- "__STYXTYPE__": "response_odf",
139
+ "@type": "response_odf",
149
140
  "response": response,
150
141
  "odf": odf,
151
142
  }
@@ -166,8 +157,8 @@ def ss3t_csd_beta1_response_odf_cargs(
166
157
  Command-line arguments.
167
158
  """
168
159
  cargs = []
169
- cargs.append(execution.input_file(params.get("response")))
170
- cargs.append(params.get("odf"))
160
+ cargs.append(execution.input_file(params.get("response", None)))
161
+ cargs.append(params.get("odf", None))
171
162
  return cargs
172
163
 
173
164
 
@@ -186,14 +177,14 @@ def ss3t_csd_beta1_response_odf_outputs(
186
177
  """
187
178
  ret = Ss3tCsdBeta1ResponseOdfOutputs(
188
179
  root=execution.output_file("."),
189
- odf=execution.output_file(params.get("odf")),
180
+ odf=execution.output_file(params.get("odf", None)),
190
181
  )
191
182
  return ret
192
183
 
193
184
 
194
185
  class Ss3tCsdBeta1Outputs(typing.NamedTuple):
195
186
  """
196
- Output object returned when calling `ss3t_csd_beta1(...)`.
187
+ Output object returned when calling `Ss3tCsdBeta1Parameters(...)`.
197
188
  """
198
189
  root: OutputPathType
199
190
  """Output root folder. This is the root folder for all outputs."""
@@ -216,7 +207,7 @@ def ss3t_csd_beta1_params(
216
207
  config: list[Ss3tCsdBeta1ConfigParameters] | None = None,
217
208
  help_: bool = False,
218
209
  version: bool = False,
219
- ) -> Ss3tCsdBeta1Parameters:
210
+ ) -> Ss3tCsdBeta1ParametersTagged:
220
211
  """
221
212
  Build parameters.
222
213
 
@@ -246,7 +237,7 @@ def ss3t_csd_beta1_params(
246
237
  Parameter dictionary
247
238
  """
248
239
  params = {
249
- "__STYXTYPE__": "ss3t_csd_beta1",
240
+ "@type": "mrtrix3tissue/ss3t_csd_beta1",
250
241
  "info": info,
251
242
  "quiet": quiet,
252
243
  "debug": debug,
@@ -284,42 +275,42 @@ def ss3t_csd_beta1_cargs(
284
275
  """
285
276
  cargs = []
286
277
  cargs.append("ss3t_csd_beta1")
287
- if params.get("mask") is not None:
278
+ if params.get("mask", None) is not None:
288
279
  cargs.extend([
289
280
  "-mask",
290
- execution.input_file(params.get("mask"))
281
+ execution.input_file(params.get("mask", None))
291
282
  ])
292
- if params.get("bzero_pct") is not None:
283
+ if params.get("bzero_pct", None) is not None:
293
284
  cargs.extend([
294
285
  "-bzero_pct",
295
- str(params.get("bzero_pct"))
286
+ str(params.get("bzero_pct", None))
296
287
  ])
297
- if params.get("niter") is not None:
288
+ if params.get("niter", None) is not None:
298
289
  cargs.extend([
299
290
  "-niter",
300
- str(params.get("niter"))
291
+ str(params.get("niter", None))
301
292
  ])
302
- if params.get("info"):
293
+ if params.get("info", False):
303
294
  cargs.append("-info")
304
- if params.get("quiet"):
295
+ if params.get("quiet", False):
305
296
  cargs.append("-quiet")
306
- if params.get("debug"):
297
+ if params.get("debug", False):
307
298
  cargs.append("-debug")
308
- if params.get("force"):
299
+ if params.get("force", False):
309
300
  cargs.append("-force")
310
- if params.get("nthreads") is not None:
301
+ if params.get("nthreads", None) is not None:
311
302
  cargs.extend([
312
303
  "-nthreads",
313
- str(params.get("nthreads"))
304
+ str(params.get("nthreads", None))
314
305
  ])
315
- if params.get("config") is not None:
316
- cargs.extend([a for c in [dyn_cargs(s["__STYXTYPE__"])(s, execution) for s in params.get("config")] for a in c])
317
- if params.get("help"):
306
+ if params.get("config", None) is not None:
307
+ cargs.extend([a for c in [ss3t_csd_beta1_config_cargs(s, execution) for s in params.get("config", None)] for a in c])
308
+ if params.get("help", False):
318
309
  cargs.append("-help")
319
- if params.get("version"):
310
+ if params.get("version", False):
320
311
  cargs.append("-version")
321
- cargs.append(execution.input_file(params.get("dwi")))
322
- cargs.extend([a for c in [dyn_cargs(s["__STYXTYPE__"])(s, execution) for s in params.get("response_odf")] for a in c])
312
+ cargs.append(execution.input_file(params.get("dwi", None)))
313
+ cargs.extend([a for c in [ss3t_csd_beta1_response_odf_cargs(s, execution) for s in params.get("response_odf", None)] for a in c])
323
314
  return cargs
324
315
 
325
316
 
@@ -338,16 +329,18 @@ def ss3t_csd_beta1_outputs(
338
329
  """
339
330
  ret = Ss3tCsdBeta1Outputs(
340
331
  root=execution.output_file("."),
341
- response_odf=[dyn_outputs(i["__STYXTYPE__"])(i, execution) if dyn_outputs(i["__STYXTYPE__"]) else None for i in params.get("response_odf")],
332
+ response_odf=[ss3t_csd_beta1_response_odf_outputs(i, execution) if ss3t_csd_beta1_response_odf_outputs else None for i in params.get("response_odf")],
342
333
  )
343
334
  return ret
344
335
 
345
336
 
346
337
  def ss3t_csd_beta1_execute(
347
338
  params: Ss3tCsdBeta1Parameters,
348
- execution: Execution,
339
+ runner: Runner | None = None,
349
340
  ) -> Ss3tCsdBeta1Outputs:
350
341
  """
342
+ ss3t_csd_beta1
343
+
351
344
  SS3T-CSD: beta 1 implementation
352
345
 
353
346
  * Dhollander, T. & Connelly, A. A novel iterative approach to reap the
@@ -360,10 +353,12 @@ def ss3t_csd_beta1_execute(
360
353
 
361
354
  Args:
362
355
  params: The parameters.
363
- execution: The execution object.
356
+ runner: Command runner.
364
357
  Returns:
365
358
  NamedTuple of outputs (described in `Ss3tCsdBeta1Outputs`).
366
359
  """
360
+ runner = runner or get_global_runner()
361
+ execution = runner.start_execution(SS3T_CSD_BETA1_METADATA)
367
362
  params = execution.params(params)
368
363
  cargs = ss3t_csd_beta1_cargs(params, execution)
369
364
  ret = ss3t_csd_beta1_outputs(params, execution)
@@ -388,6 +383,8 @@ def ss3t_csd_beta1(
388
383
  runner: Runner | None = None,
389
384
  ) -> Ss3tCsdBeta1Outputs:
390
385
  """
386
+ ss3t_csd_beta1
387
+
391
388
  SS3T-CSD: beta 1 implementation
392
389
 
393
390
  * Dhollander, T. & Connelly, A. A novel iterative approach to reap the
@@ -424,8 +421,6 @@ def ss3t_csd_beta1(
424
421
  Returns:
425
422
  NamedTuple of outputs (described in `Ss3tCsdBeta1Outputs`).
426
423
  """
427
- runner = runner or get_global_runner()
428
- execution = runner.start_execution(SS3T_CSD_BETA1_METADATA)
429
424
  params = ss3t_csd_beta1_params(
430
425
  mask=mask,
431
426
  bzero_pct=bzero_pct,
@@ -441,18 +436,16 @@ def ss3t_csd_beta1(
441
436
  dwi=dwi,
442
437
  response_odf=response_odf,
443
438
  )
444
- return ss3t_csd_beta1_execute(params, execution)
439
+ return ss3t_csd_beta1_execute(params, runner)
445
440
 
446
441
 
447
442
  __all__ = [
448
443
  "SS3T_CSD_BETA1_METADATA",
449
- "Ss3tCsdBeta1ConfigParameters",
450
444
  "Ss3tCsdBeta1Outputs",
451
- "Ss3tCsdBeta1Parameters",
452
445
  "Ss3tCsdBeta1ResponseOdfOutputs",
453
- "Ss3tCsdBeta1ResponseOdfParameters",
454
446
  "ss3t_csd_beta1",
455
447
  "ss3t_csd_beta1_config_params",
448
+ "ss3t_csd_beta1_execute",
456
449
  "ss3t_csd_beta1_params",
457
450
  "ss3t_csd_beta1_response_odf_params",
458
451
  ]
@@ -1,301 +0,0 @@
1
- # NODE #
2
-
3
- # Logs
4
- logs
5
- *.log
6
- npm-debug.log*
7
- yarn-debug.log*
8
- yarn-error.log*
9
- lerna-debug.log*
10
- .pnpm-debug.log*
11
-
12
- # Diagnostic reports (https://nodejs.org/api/report.html)
13
- report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
14
-
15
- # Runtime data
16
- pids
17
- *.pid
18
- *.seed
19
- *.pid.lock
20
-
21
- # Directory for instrumented libs generated by jscoverage/JSCover
22
- lib-cov
23
-
24
- # Coverage directory used by tools like istanbul
25
- coverage
26
- *.lcov
27
-
28
- # nyc test coverage
29
- .nyc_output
30
-
31
- # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
32
- .grunt
33
-
34
- # Bower dependency directory (https://bower.io/)
35
- bower_components
36
-
37
- # node-waf configuration
38
- .lock-wscript
39
-
40
- # Compiled binary addons (https://nodejs.org/api/addons.html)
41
- build/Release
42
-
43
- # Dependency directories
44
- node_modules/
45
- jspm_packages/
46
-
47
- # Snowpack dependency directory (https://snowpack.dev/)
48
- web_modules/
49
-
50
- # TypeScript cache
51
- *.tsbuildinfo
52
-
53
- # Optional npm cache directory
54
- .npm
55
-
56
- # Optional eslint cache
57
- .eslintcache
58
-
59
- # Optional stylelint cache
60
- .stylelintcache
61
-
62
- # Microbundle cache
63
- .rpt2_cache/
64
- .rts2_cache_cjs/
65
- .rts2_cache_es/
66
- .rts2_cache_umd/
67
-
68
- # Optional REPL history
69
- .node_repl_history
70
-
71
- # Output of 'npm pack'
72
- *.tgz
73
-
74
- # Yarn Integrity file
75
- .yarn-integrity
76
-
77
- # dotenv environment variable files
78
- .env
79
- .env.development.local
80
- .env.test.local
81
- .env.production.local
82
- .env.local
83
-
84
- # parcel-bundler cache (https://parceljs.org/)
85
- .cache
86
- .parcel-cache
87
-
88
- # Next.js build output
89
- .next
90
- out
91
-
92
- # Nuxt.js build / generate output
93
- .nuxt
94
- dist
95
-
96
- # Gatsby files
97
- .cache/
98
- # Comment in the public line in if your project uses Gatsby and not Next.js
99
- # https://nextjs.org/blog/next-9-1#public-directory-support
100
- # public
101
-
102
- # vuepress build output
103
- .vuepress/dist
104
-
105
- # vuepress v2.x temp and cache directory
106
- .temp
107
- .cache
108
-
109
- # Docusaurus cache and generated files
110
- .docusaurus
111
-
112
- # Serverless directories
113
- .serverless/
114
-
115
- # FuseBox cache
116
- .fusebox/
117
-
118
- # DynamoDB Local files
119
- .dynamodb/
120
-
121
- # TernJS port file
122
- .tern-port
123
-
124
- # Stores VSCode versions used for testing VSCode extensions
125
- .vscode-test
126
-
127
- # yarn v2
128
- .yarn/cache
129
- .yarn/unplugged
130
- .yarn/build-state.yml
131
- .yarn/install-state.gz
132
- .pnp.*
133
-
134
- # PYTHON #
135
-
136
- # Byte-compiled / optimized / DLL files
137
- __pycache__/
138
- *.py[cod]
139
- *$py.class
140
-
141
- # C extensions
142
- *.so
143
-
144
- # Distribution / packaging
145
- .Python
146
- build/
147
- develop-eggs/
148
- dist/
149
- downloads/
150
- eggs/
151
- .eggs/
152
- lib/
153
- lib64/
154
- parts/
155
- sdist/
156
- var/
157
- wheels/
158
- share/python-wheels/
159
- *.egg-info/
160
- .installed.cfg
161
- *.egg
162
- MANIFEST
163
-
164
- # PyInstaller
165
- # Usually these files are written by a python script from a template
166
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
167
- *.manifest
168
- *.spec
169
-
170
- # Installer logs
171
- pip-log.txt
172
- pip-delete-this-directory.txt
173
-
174
- # Unit test / coverage reports
175
- htmlcov/
176
- .tox/
177
- .nox/
178
- .coverage
179
- .coverage.*
180
- .cache
181
- nosetests.xml
182
- coverage.xml
183
- *.cover
184
- *.py,cover
185
- .hypothesis/
186
- .pytest_cache/
187
- cover/
188
-
189
- # Translations
190
- *.mo
191
- *.pot
192
-
193
- # Django stuff:
194
- *.log
195
- local_settings.py
196
- db.sqlite3
197
- db.sqlite3-journal
198
-
199
- # Flask stuff:
200
- instance/
201
- .webassets-cache
202
-
203
- # Scrapy stuff:
204
- .scrapy
205
-
206
- # Sphinx documentation
207
- docs/_build/
208
-
209
- # PyBuilder
210
- .pybuilder/
211
- target/
212
-
213
- # Jupyter Notebook
214
- .ipynb_checkpoints
215
-
216
- # IPython
217
- profile_default/
218
- ipython_config.py
219
-
220
- # pyenv
221
- # For a library or package, you might want to ignore these files since the code is
222
- # intended to run in multiple environments; otherwise, check them in:
223
- # .python-version
224
-
225
- # pipenv
226
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
227
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
228
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
229
- # install all needed dependencies.
230
- #Pipfile.lock
231
-
232
- # poetry
233
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
234
- # This is especially recommended for binary packages to ensure reproducibility, and is more
235
- # commonly ignored for libraries.
236
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
237
- #poetry.lock
238
-
239
- # pdm
240
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
241
- #pdm.lock
242
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
243
- # in version control.
244
- # https://pdm.fming.dev/#use-with-ide
245
- .pdm.toml
246
-
247
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
248
- __pypackages__/
249
-
250
- # Celery stuff
251
- celerybeat-schedule
252
- celerybeat.pid
253
-
254
- # SageMath parsed files
255
- *.sage.py
256
-
257
- # Environments
258
- .env
259
- .venv
260
- env/
261
- *venv/
262
- ENV/
263
- env.bak/
264
- venv.bak/
265
-
266
- # Spyder project settings
267
- .spyderproject
268
- .spyproject
269
-
270
- # Rope project settings
271
- .ropeproject
272
-
273
- # mkdocs documentation
274
- /site
275
-
276
- # mypy
277
- .mypy_cache/
278
- .dmypy.json
279
- dmypy.json
280
-
281
- # Pyre type checker
282
- .pyre/
283
-
284
- # pytype static type analyzer
285
- .pytype/
286
-
287
- # Cython debug symbols
288
- cython_debug/
289
-
290
- # PyCharm
291
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
292
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
293
- # and can be added to the global gitignore or merged into this file. For a more nuclear
294
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
295
- .idea/
296
-
297
- .vscode
298
- /local_scripts
299
- report.html
300
- assets
301
- styx_tmp
@@ -1,8 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: niwrap_mrtrix3tissue
3
- Version: 0.6.2
4
- Summary: NiWrap wrappers for MRTrix3Tissue.
5
- Author-email: CMI DAIR <dair@childmind.org>
6
- License-Expression: LGPL-2.1
7
- Requires-Python: >=3.10
8
- Requires-Dist: styxdefs~=0.5.0
@@ -1,7 +0,0 @@
1
- # NiWrap wrappers for [MRTrix3Tissue](https://3tissue.github.io/)
2
-
3
- MRtrix3Tissue is a fork of the MRtrix3 project. It aims to add capabilities for 3-Tissue CSD modelling and analysis to a complete version of the MRtrix3 software.
4
-
5
- MRTrix3Tissue is made by MRTrix3Tissue Developers.
6
-
7
- This package contains wrappers only and has no affiliation with the original authors.
@@ -1,17 +0,0 @@
1
- [project]
2
- name = "niwrap_mrtrix3tissue"
3
- version = "0.6.2"
4
- description = "NiWrap wrappers for MRTrix3Tissue."
5
- license = "LGPL-2.1"
6
- authors = [{ name = "CMI DAIR", email = "dair@childmind.org" }]
7
- requires-python = ">=3.10"
8
- dependencies = [
9
- "styxdefs~=0.5.0"
10
- ]
11
-
12
- [tool.hatch.build.targets.wheel]
13
- packages = ["src/niwrap_mrtrix3tissue"]
14
-
15
- [build-system]
16
- requires = ["hatchling"]
17
- build-backend = "hatchling.build"
@@ -1,13 +0,0 @@
1
- """
2
- MRTrix3Tissue
3
-
4
- MRtrix3Tissue is a fork of the MRtrix3 project. It aims to add capabilities for
5
- 3-Tissue CSD modelling and analysis to a complete version of the MRtrix3
6
- software.
7
-
8
- URL: https://3tissue.github.io/
9
- """
10
- # This file was auto generated by Styx.
11
- # Do not edit this file directly.
12
-
13
- from .ss3t_csd_beta1 import *