Skip to content

Commit dfe9aee

Browse files
committed
Merge branch 'master' of github.com:astewartau/pydra-fsl
2 parents 8fa661e + 4e4badf commit dfe9aee

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ pip install -e /path/to/pydra-fsl/[dev]
2626
- yml file with additional spec: `specs/fsl_{module_name}_params.yml` contains additional spec that are written based
2727
on additional functions from nipype (including `list_outputs`), each interface can have the following fields:
2828
- inputs_metadata: additional metadata for fields from input_spec
29-
(it will be included in `metadata` in pydra spec),
30-
e.g., used in `specs/fsl_preprocess_params.yml` for `FAST` to set default value for `number_classes`
31-
(it's not part of nipype's spec, but it's set in `list_output`)
29+
(it will be included in `metadata` in pydra spec),
30+
e.g., used in `specs/fsl_preprocess_params.yml` for `FAST` to set default value for `number_classes`
31+
(it's not part of nipype's spec, but it's set in `list_output`, see [here](https://github.com/nipy/nipype/blob/f4343d6ddaee814aa16b197cc729a10d437990bf/nipype/interfaces/fsl/preprocess.py#L403))
3232

3333
- output_requirements: providing required fields for the output to be created,
34-
taken from `list_output` structure;
35-
it's a part of the `requires` field in metadata in pydra spec
34+
taken from `list_output` structure (e.g. requirements for tissue_class_files [here](https://github.com/nipy/nipype/blob/f4343d6ddaee814aa16b197cc729a10d437990bf/nipype/interfaces/fsl/preprocess.py#L418));
35+
it's a part of the `requires` field in metadata in pydra spec (e.g. [here](https://github.com/nipype/pydra-fsl/blob/ceae758f76bde81465e86cff029b40e334a7939a/pydra/tasks/fsl/preprocess/fast.py#L237))
3636

3737
- output_templates: providing template to create the output file name,
38-
taken from `list_output` structure;
39-
it is set as `output_file_template` in metadata
38+
taken from `list_output` structure (e.g., [here](https://github.com/nipy/nipype/blob/f4343d6ddaee814aa16b197cc729a10d437990bf/nipype/interfaces/fsl/preprocess.py#L205));
39+
it is set as `output_file_template` in metadata (e.g. [here](https://github.com/nipype/pydra-fsl/blob/ceae758f76bde81465e86cff029b40e334a7939a/pydra/tasks/fsl/preprocess/bet.py#L204))
4040

4141
- output_callables: providing function name that should be used to gather output,
42-
based on the `list_output` structure and used only for `FAST`;
43-
it is set as `callable` in metadata
42+
based on the `list_output` structure and used only for `FAST`;
43+
it is set as `callable` in metadata (e.g. [here](https://github.com/nipype/pydra-fsl/blob/ceae758f76bde81465e86cff029b40e334a7939a/pydra/tasks/fsl/preprocess/fast.py#L237))
4444

4545
- tests_inputs, tests_outputs: specification for tests,
4646
the fields should have the same length and each element should contain

0 commit comments

Comments
 (0)