Skip to content

Commit 7dbaeaa

Browse files
authored
Merge pull request #21 from nipype/pydra-tasks-rename
renamed references to pydra-* to pydra-tasks-*
2 parents 23db794 + 11e26a4 commit 7dbaeaa

File tree

103 files changed

+207
-190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+207
-190
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ jobs:
129129
- name: Install task package
130130
run: |
131131
pip install "./related-packages/fileformats[test]" "./related-packages/fileformats-extras[test]"
132-
python -c "import fileformats.medimage_freesurfer as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
132+
python -c "import fileformats.vendor.freesurfer.medimage as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
133133
- name: Test fileformats with pytest
134134
run: >-
135-
pytest ./related-packages -sv --cov fileformats.medimage_freesurfer
136-
--cov fileformats.extras.medimage_freesurfer --cov-report xml .
135+
pytest ./related-packages -sv --cov fileformats.vendor.freesurfer.medimage
136+
--cov fileformats.extras.vendor.freesurfer.medimage --cov-report xml .
137137
138138
deploy-fileformats:
139139
needs: [build, test, fileformats-test]

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,6 @@ cython_debug/
156156

157157
# Generated files
158158
/pydra/tasks/freesurfer/_version.py
159-
/related-packages/fileformats/fileformats/medimage_freesurfer/_version.py
160-
/related-packages/fileformats-extras/fileformats/extras/medimage_freesurfer/_version.py
159+
/related-packages/fileformats/fileformats/vendor/freesurfer/_version.py
160+
/related-packages/fileformats-extras/fileformats/extras/vendor/freesurfer/_version.py
161161
/pydra/tasks/freesurfer/auto

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# -- Project information -----------------------------------------------------
99
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1010

11-
project = "pydra-freesurfer"
11+
project = "pydra-tasks-freesurfer"
1212
author = "Pydra Developers"
1313
copyright = f"2022-2023, {author}"
1414
release = __version__

nipype-auto-conv/specs/interfaces/aparc_2_aseg.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ inputs:
6363
# type=file|default=<undefined>: Implicit input filled file. Only required with FS v5.3.
6464
lh_annotation: generic/file
6565
# type=file|default=<undefined>: Input file must be <subject_id>/label/lh.aparc.annot
66-
lh_pial: fileformats.medimage_freesurfer.Pial
66+
lh_pial: fileformats.vendor.freesurfer.medimage.Pial
6767
# type=file|default=<undefined>: Input file must be <subject_id>/surf/lh.pial
6868
lh_ribbon: medimage/mgh-gz
6969
# type=file|default=<undefined>: Input file must be <subject_id>/mri/lh.ribbon.mgz
70-
lh_white: fileformats.medimage_freesurfer.Pial
70+
lh_white: fileformats.vendor.freesurfer.medimage.Pial
7171
# type=file|default=<undefined>: Input file must be <subject_id>/surf/lh.white
72-
rh_annotation: fileformats.medimage_freesurfer.Pial
72+
rh_annotation: fileformats.vendor.freesurfer.medimage.Pial
7373
# type=file|default=<undefined>: Input file must be <subject_id>/label/rh.aparc.annot
7474
rh_pial: generic/file
7575
# type=file|default=<undefined>: Input file must be <subject_id>/surf/rh.pial

nipype-auto-conv/specs/interfaces/concatenate_lta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ inputs:
4747
# from the nipype interface, but you may want to be more specific, particularly
4848
# for file types, where specifying the format also specifies the file that will be
4949
# passed to the field in the automatically generated unittests.
50-
in_lta1: fileformats.medimage_freesurfer.Lta
50+
in_lta1: fileformats.vendor.freesurfer.medimage.Lta
5151
# type=file|default=<undefined>: maps some src1 to dst1
5252
subjects_dir: generic/directory
5353
# type=directory|default=<undefined>: subjects directory
@@ -71,7 +71,7 @@ outputs:
7171
# from the nipype interface, but you may want to be more specific, particularly
7272
# for file types, where specifying the format also specifies the file that will be
7373
# passed to the field in the automatically generated unittests.
74-
out_file: fileformats.medimage_freesurfer.Lta
74+
out_file: fileformats.vendor.freesurfer.medimage.Lta
7575
# type=file: the combined LTA maps: src1 to dst2 = LTA2*LTA1
7676
# type=file|default=<undefined>: the combined LTA maps: src1 to dst2 = LTA2*LTA1
7777
callables:

nipype-auto-conv/specs/interfaces/contrast.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ inputs:
3737
# from the nipype interface, but you may want to be more specific, particularly
3838
# for file types, where specifying the format also specifies the file that will be
3939
# passed to the field in the automatically generated unittests.
40-
annotation: fileformats.medimage_freesurfer.Annot
40+
annotation: fileformats.vendor.freesurfer.medimage.Annot
4141
# type=file|default=<undefined>: Input annotation file must be <subject_id>/label/<hemisphere>.aparc.annot
4242
cortex: generic/file
4343
# type=file|default=<undefined>: Input cortex label must be <subject_id>/label/<hemisphere>.cortex.label
@@ -49,7 +49,7 @@ inputs:
4949
# type=directory|default=<undefined>: subjects directory
5050
thickness: generic/file
5151
# type=file|default=<undefined>: Input file must be <subject_id>/surf/?h.thickness
52-
white: fileformats.medimage_freesurfer.White
52+
white: fileformats.vendor.freesurfer.medimage.White
5353
# type=file|default=<undefined>: Input file must be <subject_id>/surf/<hemisphere>.white
5454
callable_defaults:
5555
# dict[str, str] - names of methods/callable classes defined in the adjacent `*_callables.py`

nipype-auto-conv/specs/interfaces/curvature.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ inputs:
3333
# from the nipype interface, but you may want to be more specific, particularly
3434
# for file types, where specifying the format also specifies the file that will be
3535
# passed to the field in the automatically generated unittests.
36-
in_file: fileformats.medimage_freesurfer.Pial
36+
in_file: fileformats.vendor.freesurfer.medimage.Pial
3737
# type=file|default=<undefined>: Input file for Curvature
3838
subjects_dir: generic/directory
3939
# type=directory|default=<undefined>: subjects directory

nipype-auto-conv/specs/interfaces/curvature_stats.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ inputs:
5858
# passed to the field in the automatically generated unittests.
5959
curvfile1: generic/file
6060
# type=file|default=<undefined>: Input file for CurvatureStats
61-
curvfile2: fileformats.medimage_freesurfer.Pial
61+
curvfile2: fileformats.vendor.freesurfer.medimage.Pial
6262
# type=file|default=<undefined>: Input file for CurvatureStats
6363
subjects_dir: generic/directory
6464
# type=directory|default=<undefined>: subjects directory
@@ -80,7 +80,7 @@ outputs:
8080
# from the nipype interface, but you may want to be more specific, particularly
8181
# for file types, where specifying the format also specifies the file that will be
8282
# passed to the field in the automatically generated unittests.
83-
out_file: fileformats.medimage_freesurfer.Stats
83+
out_file: fileformats.vendor.freesurfer.medimage.Stats
8484
# type=file: Output curvature stats file
8585
# type=file|default=<undefined>: Output curvature stats file
8686
callables:

nipype-auto-conv/specs/interfaces/em_register.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ outputs:
5959
# from the nipype interface, but you may want to be more specific, particularly
6060
# for file types, where specifying the format also specifies the file that will be
6161
# passed to the field in the automatically generated unittests.
62-
out_file: fileformats.medimage_freesurfer.Lta
62+
out_file: fileformats.vendor.freesurfer.medimage.Lta
6363
# type=file: output transform
6464
# type=file|default=<undefined>: output transform
6565
callables:

nipype-auto-conv/specs/interfaces/euler_number.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ inputs:
3030
# from the nipype interface, but you may want to be more specific, particularly
3131
# for file types, where specifying the format also specifies the file that will be
3232
# passed to the field in the automatically generated unittests.
33-
in_file: fileformats.medimage_freesurfer.Pial
33+
in_file: fileformats.vendor.freesurfer.medimage.Pial
3434
# type=file|default=<undefined>: Input file for EulerNumber
3535
subjects_dir: generic/directory
3636
# type=directory|default=<undefined>: subjects directory

0 commit comments

Comments
 (0)