Skip to content

Commit

Permalink
Merge pull request #89 from naveau/bids-sequenceName
Browse files Browse the repository at this point in the history
Add SequenceName BIDS entry
  • Loading branch information
neurolabusc authored Mar 3, 2017
2 parents 9c29ed6 + 27a572d commit 81e90c3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions console/nii_dicom_batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,8 @@ void nii_SaveBIDS(char pathoutname[], struct TDICOMdata d, struct TDCMopts opts,
fprintf(fp, "\t\"ProcedureStepDescription\": \"%s\",\n", d.procedureStepDescription );
if (strlen(d.protocolName) > 0)
fprintf(fp, "\t\"ProtocolName\": \"%s\",\n", d.protocolName );
if (strlen(d.sequenceName) > 0)
fprintf(fp, "\t\"SequenceName\": \"%s\",\n", d.sequenceName );
if (strlen(d.imageType) > 0) {
fprintf(fp, "\t\"ImageType\": [\"");
bool isSep = false;
Expand Down

0 comments on commit 81e90c3

Please sign in to comment.