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