Skip to content

File parameter models

This file contains data classes for parameters of spoc data structures

ContactsParameters

Bases: GlobalParameters

Parameters for multiway contacts

Source code in spoc/models/file_parameter_models.py
class ContactsParameters(GlobalParameters):
    """Parameters for multiway contacts"""

    @classmethod
    def get_uri_fields(cls) -> List[str]:
        """Returns the fields that should be included in the URI"""
        # Specific parameters needed to enforce order
        return [
            "number_fragments",
            "metadata_combi",
            "binary_labels_equal",
            "symmetry_flipped",
            "label_sorted",
        ]

get_uri_fields() classmethod

Returns the fields that should be included in the URI

Source code in spoc/models/file_parameter_models.py
@classmethod
def get_uri_fields(cls) -> List[str]:
    """Returns the fields that should be included in the URI"""
    # Specific parameters needed to enforce order
    return [
        "number_fragments",
        "metadata_combi",
        "binary_labels_equal",
        "symmetry_flipped",
        "label_sorted",
    ]

GlobalParameters

Bases: BaseModel

Base class for global file parameters

Source code in spoc/models/file_parameter_models.py
class GlobalParameters(BaseModel):
    """Base class for global file parameters"""

    number_fragments: Optional[int] = None
    metadata_combi: Optional[Tuple[str, ...]] = None
    label_sorted: bool = False
    binary_labels_equal: bool = False
    symmetry_flipped: bool = False

    @classmethod
    def get_uri_fields(cls) -> List[str]:
        """Returns the fields that should be included in the URI"""
        raise NotImplementedError

    def __hash__(self) -> int:
        # get metadata hash
        return hash(
            (
                self.number_fragments,
                self.metadata_combi,
                self.label_sorted,
                self.binary_labels_equal,
                self.symmetry_flipped,
            )
        )

get_uri_fields() classmethod

Returns the fields that should be included in the URI

Source code in spoc/models/file_parameter_models.py
@classmethod
def get_uri_fields(cls) -> List[str]:
    """Returns the fields that should be included in the URI"""
    raise NotImplementedError

PixelParameters

Bases: GlobalParameters

Parameters for genomic pixels

Source code in spoc/models/file_parameter_models.py
class PixelParameters(GlobalParameters):
    """Parameters for genomic pixels"""

    binsize: Optional[int] = None
    same_chromosome: bool = True

    @classmethod
    def get_uri_fields(cls) -> List[str]:
        """Returns the fields that should be included in the URI"""
        # Specific parameters needed to enforce order
        return [
            "number_fragments",
            "binsize",
            "metadata_combi",
            "binary_labels_equal",
            "symmetry_flipped",
            "label_sorted",
            "same_chromosome",
        ]

    def __hash__(self) -> int:
        return hash(
            (
                self.number_fragments,
                self.binsize,
                self.metadata_combi,
                self.label_sorted,
                self.binary_labels_equal,
                self.symmetry_flipped,
                self.same_chromosome,
            )
        )

get_uri_fields() classmethod

Returns the fields that should be included in the URI

Source code in spoc/models/file_parameter_models.py
@classmethod
def get_uri_fields(cls) -> List[str]:
    """Returns the fields that should be included in the URI"""
    # Specific parameters needed to enforce order
    return [
        "number_fragments",
        "binsize",
        "metadata_combi",
        "binary_labels_equal",
        "symmetry_flipped",
        "label_sorted",
        "same_chromosome",
    ]