Skip to content

Commit

Permalink
[DOC] paste error in file descriptions (#506)
Browse files Browse the repository at this point in the history
bval and bvec were switched
  • Loading branch information
cookpa committed Feb 22, 2023
1 parent 8a03a41 commit b6e3867
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qsiprep/interfaces/dwi_merge.py
Expand Up @@ -38,8 +38,8 @@ class MergeDWIsInputSpec(BaseInterfaceInputSpec):

class MergeDWIsOutputSpec(TraitedSpec):
out_dwi = File(desc='the merged dwi image')
out_bval = File(desc='the merged bvec file')
out_bvec = File(desc='the merged bval file')
out_bval = File(desc='the merged bval file')
out_bvec = File(desc='the merged bvec file')
original_images = traits.List()
merged_metadata = traits.Dict()
merged_denoising_confounds = File(exists=True)
Expand Down

0 comments on commit b6e3867

Please sign in to comment.