Source code for pyfibre.model.objects.segments
from pyfibre.model.core.base_segment import BaseSegment
[docs]class CellSegment(BaseSegment):
"""Segment representing a cellular region"""
[docs] def get_tag(self):
return 'Cell'
[docs]class FibreSegment(BaseSegment):
"""Segment representing a fibrous region"""
[docs] def get_tag(self):
return 'Fibre'