Download this file

17 lines (11 with data), 607 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
from singlecellmultiomics.molecule.molecule import Molecule
from singlecellmultiomics.molecule.featureannotatedmolecule import FeatureAnnotatedMolecule
class VASA(FeatureAnnotatedMolecule):
"""VASA seq molecule
Args:
fragments (singlecellmultiomics.fragment.Fragment): Fragments to associate to the molecule
features (singlecellmultiomics.features.FeatureContainer) : container to use to obtain features from
**kwargs: extra args
"""
def __init__(self, fragment, features, **kwargs):
FeatureAnnotatedMolecule.__init__(self, fragment, features, **kwargs)