donorpy.pl.BasicClass

class donorpy.pl.BasicClass(adata)

A basic class.

Parameters:

adata (AnnData) – The AnnData object to preprocess.

Attributes table

my_attribute

my_other_attribute

Methods table

my_method(param)

A basic method.

my_other_method(param)

Another basic method.

Attributes

BasicClass.my_attribute: str = 'Some attribute.'
BasicClass.my_other_attribute: int = 0

Methods

BasicClass.my_method(param)

A basic method.

Parameters:

param (int) – A parameter.

Return type:

int

Returns:

Some integer value.

BasicClass.my_other_method(param)

Another basic method.

Parameters:

param (str) – A parameter.

Return type:

str

Returns:

Some integer value.