comparison tools/myTools/bin/sfa/data/molinelli_2013/__init__.py @ 1:7e5c71b2e71f draft default tip

Uploaded
author laurenmarazzi
date Wed, 22 Dec 2021 16:00:34 +0000
parents
children
comparison
equal deleted inserted replaced
0:f24d4892aaed 1:7e5c71b2e71f
1 # -*- coding: utf-8 -*-
2
3 """
4 [Reference]
5 Molinelli, E. J. et al.
6 Perturbation biology: inferring signaling networks in cellular systems.
7 PLoS Computational Biology, (2013) 9(12), e1003290.
8 http://doi.org/10.1371/journal.pcbi.1003290
9
10 """
11
12 import os
13
14 import pandas as pd
15
16 import sfa
17 import sfa.base
18
19 def create_data():
20 return MolinelliData()
21
22
23 class MolinelliData(sfa.base.Data):
24
25 def __init__(self):
26
27 self._abbr = "MOLINELLI_2013"
28 self._name = "Molinell et al. 2013 PLoS Comput Biol 9(12): e1003290"
29
30 self.initialize(__file__)
31
32 # end of def __init__
33
34
35
36