Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For your doctest example, you're going to get
lh.out.stl. Is that whatmris_convertproduces? And if so, is that the same whether you passlh.pialorrh.pialasin_file1?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From what I've seen:
mris_convert --combinesurfs lh.pial rh.pial out.stlcreates lh.out.stlmris_convert --combinesurfs rh.pial lh.pial out.stlcreates lh.out.stlmris_convert --combinesurfs rh.pial rh.smoothwm out.stlcreates lh.out.stlmris_convert --combinesurfs lh.pial rh.pial rh.out.stlcreates rh.out.stlSo it doesn't seem to matter what order you pass in the files or even if both files are from the right hemisphere. As long as the output file doesn't start with
lh.orrh., it will prependlh.to the output filename.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haha. That's awful. Can you add a short comment explaining that this is a FreeSurfer behavior you're accommodating?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added an explanation to the docstring for
_list_outputsin a7bafda. Should be clear now.