diff --git a/modules/imaging_browser/help/viewSession.md b/modules/imaging_browser/help/viewSession.md index 76840c7f1c1..e1ab5c29a72 100644 --- a/modules/imaging_browser/help/viewSession.md +++ b/modules/imaging_browser/help/viewSession.md @@ -1,6 +1,6 @@ # Imaging Browser: View Session -This page displays a candidate's scans collected from a single timepoint. Click on any image to launch the BrainBrowser visualization tool. With every file displayed, there are different actions you can take, such as change the file's QC status, add or edit the QC comments, download the MINC file, or see a longitudinal view (in BrainBrowser). Click **Header Info** to see further scan parameters from the DICOM header. +This page displays a candidate's scans collected from a single timepoint. Click on any image to launch the BrainBrowser visualization tool. With every file displayed, there are different actions you can take, such as change the file's QC status, add or edit the QC comments, download the imaging files (MINC/NIfTI), or see a longitudinal view (in BrainBrowser). Click **Header Info** to see further scan parameters from the DICOM header. To the right of image thumbnails, there is a list of scan parameters including QC Status, "Selected" (indicating which scan will be available in the data query tool when there are multiple scans of a single modality), and a Caveat flag (True/False). Within the same panel, you click **Header Info** located in the top right corner to expand the panel, revealing further scan parameters from the diff --git a/modules/imaging_browser/jsx/ImagePanel.js b/modules/imaging_browser/jsx/ImagePanel.js index 428512a2443..ba47d4430e0 100644 --- a/modules/imaging_browser/jsx/ImagePanel.js +++ b/modules/imaging_browser/jsx/ImagePanel.js @@ -826,6 +826,10 @@ class ImageDownloadButtons extends Component { BaseURL={this.props.BaseURL} Label="Download NRRD" /> + getParameter('processing:DTIPrepXmlReport'); $XMLprotocol = $FileObj->getParameter('ProtocolFile'); $NrrdFile = $FileObj->getParameter('processing:nrrd_file'); + $NiiFile = $FileObj->getParameter('check_nii_filename'); $BvalFile = $FileObj->getParameter('check_bval_filename'); $BvecFile = $FileObj->getParameter('check_bvec_filename'); $JsonFile = $FileObj->getParameter('bids_json_file'); @@ -361,6 +362,7 @@ class ViewSession extends \NDB_Form 'XMLreport' => $XMLreport, 'XMLprotocol' => $XMLprotocol, 'NrrdFile' => $NrrdFile, + 'NiiFile' => $NiiFile, 'BvalFile' => $BvalFile, 'BvecFile' => $BvecFile, 'JsonFile' => $JsonFile, diff --git a/modules/imaging_browser/templates/form_viewSession.tpl b/modules/imaging_browser/templates/form_viewSession.tpl index 3efa142f9ba..9e559509b06 100644 --- a/modules/imaging_browser/templates/form_viewSession.tpl +++ b/modules/imaging_browser/templates/form_viewSession.tpl @@ -66,6 +66,7 @@ "XMLProtocol" : "{$files[file].XMLprotocol}", "XMLReport" : "{$files[file].XMLreport}", "NrrdFile" : "{$files[file].NrrdFile}", + "NiiFile" : "{$files[file].NiiFile}", "BvalFile" : "{$files[file].BvalFile}", "BvecFile" : "{$files[file].BvecFile}", "JsonFile" : "{$files[file].JsonFile}",