Source code for tvb.adapters.uploaders.gifti_surface_importer
# -*- coding: utf-8 -*-
#
#
# TheVirtualBrain-Framework Package. This package holds all Data Management, and
# Web-UI helpful to run brain-simulations. To use it, you also need to download
# TheVirtualBrain-Scientific Package (for simulators). See content of the
# documentation-folder for more details. See also http://www.thevirtualbrain.org
#
# (c) 2012-2023, Baycrest Centre for Geriatric Care ("Baycrest") and others
#
# This program is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along with this
# program. If not, see <http://www.gnu.org/licenses/>.
#
#
# CITATION:
# When using The Virtual Brain for scientific publications, please cite it as explained here:
# https://www.thevirtualbrain.org/tvb/zwei/neuroscience-publications
#
#
"""
.. moduleauthor:: Mihai Andrei <mihai.andrei@codemart.ro>
.. moduleauthor:: Calin Pavel <calin.pavel@codemart.ro>
"""
from tvb.adapters.uploaders.gifti.parser import GIFTIParser
from tvb.basic.logger.builder import get_logger
from tvb.basic.neotraits.api import Attr, EnumAttr
from tvb.core.adapters.exceptions import LaunchException, ParseException
from tvb.core.adapters.abcuploader import ABCUploader, ABCUploaderForm
from tvb.adapters.datatypes.db.surface import SurfaceIndex
from tvb.core.neotraits.forms import SelectField, TraitUploadField, BoolField
from tvb.core.neotraits.uploader_view_model import UploaderViewModel
from tvb.core.neotraits.view_model import Str
from tvb.datatypes.surfaces import SurfaceTypesEnum
[docs]class GIFTISurfaceImporterModel(UploaderViewModel):
file_type = EnumAttr(
label='Specify file type : ',
default=SurfaceTypesEnum.CORTICAL_SURFACE
)
data_file = Str(
label='Please select a .gii (LH if cortex)'
)
data_file_part2 = Str(
required=False,
label="Optionally select 2'nd .gii (RH if cortex)"
)
should_center = Attr(
field_type=bool,
required=False,
default=False,
label='Center surface using vertex means along axes'
)
[docs]class GIFTISurfaceImporter(ABCUploader):
"""
This importer is responsible for import of surface from GIFTI format (XML file)
and store them in TVB as Surface.
"""
_ui_name = "Surface GIFTI"
_ui_subsection = "gifti_surface_importer"
_ui_description = "Import a surface from GIFTI"
[docs] def get_output(self):
return [SurfaceIndex]
[docs] def launch(self, view_model):
# type: (GIFTISurfaceImporterModel) -> [SurfaceIndex]
"""
Execute import operations:
"""
parser = GIFTIParser(self.operation_id)
try:
surface = parser.parse(view_model.data_file, view_model.data_file_part2, view_model.file_type,
should_center=view_model.should_center)
surface.compute_triangle_normals()
surface.compute_vertex_normals()
validation_result = surface.validate()
if validation_result.warnings:
self.add_operation_additional_info(validation_result.summary())
surface_idx = self.store_complete(surface)
return [surface_idx]
except ParseException as excep:
logger = get_logger(__name__)
logger.exception(excep)
raise LaunchException(excep)