class pxblat.Status(mashumaro.mixins.json.DataClassJSONMixin, mashumaro.mixins.dict.DataClassDictMixin)[source]

A data class representing the status of a server.

version

The version of the server.

Type:

str

serverType

The type of the server.

Type:

str

types

The type of the server, an alias for ‘serverType’.

Type:

str

host

The hostname or IP address of the server.

Type:

str

port

The port number the server is listening on.

Type:

int

tileSize

The tile size used by the server.

Type:

int

stepSize

The step size used by the server.

Type:

int

minMatch

The minimum match used by the server.

Type:

int

pcr_requests

The number of PCR requests the server has handled, an alias for ‘pcr requests’.

Type:

int

blat_requests

The number of BLAT requests the server has handled, an alias for ‘blat requests’.

Type:

int

bases

The number of bases processed by the server.

Type:

int

misses

The number of misses by the server.

Type:

int

noSig

The number of ‘noSig’ (no signature) events by the server.

Type:

int

trimmed

The number of trimmed events by the server.

Type:

int

warnings

The number of warnings issued by the server.

Type:

int

Public members

classmethod from_dict(d, *, dialect=None)
to_dict()
__eq__(other)

Return self==value.

version : str
serverType : str
types : str
host : str
port : int
tileSize : int
stepSize : int
minMatch : int
pcr_requests : int
blat_requests : int
bases : int
misses : int
noSig : int
trimmed : int
warnings : int
to_json(...) str | bytes | bytearray
classmethod from_json[T](...) T
classmethod __init_subclass__(**kwargs: Any)

This method is called when a class is subclassed.

Constructors

Status(version: str, serverType: str, types: str, host: str, ...)

Initialize self. See help(type(self)) for accurate signature.

String representation

__repr__()

Return repr(self).