@@ -14,6 +14,7 @@ You can submit your dataset in any of the following formats:
1414Please ensure that the dataset minimally has a column 'Node' containing node IDs. You can also optionally add the
1515following columns to your dataset:
1616
17+ - NodeType
1718- LogFC [*]_
1819- p-value
1920
@@ -42,39 +43,53 @@ details.
4243| D |
4344+------------+
4445
45- 2. You can also choose to provide a dataset with a column 'Node' containing node IDs as well as a column 'logFC' with
46- their abs(LogFC).
46+ 2. You can also provide a dataset with a column 'Node' containing node IDs as well as a column 'NodeType', indicating
47+ the entity type of the node to run diffusion by entity type.
48+
49+ +------------+--------------+
50+ | Node | NodeType |
51+ +============+==============+
52+ | A | Gene |
53+ +------------+--------------+
54+ | B | Gene |
55+ +------------+--------------+
56+ | C | Metabolite |
57+ +------------+--------------+
58+ | D | Gene |
59+ +------------+--------------+
60+
61+ 3. You can also choose to provide a dataset with a column 'Node' containing node IDs as well as a column 'logFC' with
62+ their logFC. You may also add a 'NodeType' column to run diffusion by entity type.
4763
4864+--------------+------------+
4965| Node | LogFC |
5066+==============+============+
51- | Gene A | 4 |
67+ | A | 4 |
5268+--------------+------------+
53- | Gene B | -1 |
69+ | B | -1 |
5470+--------------+------------+
55- | Metabolite C | 1.5 |
71+ | C | 1.5 |
5672+--------------+------------+
57- | Gene D | 3 |
73+ | D | 3 |
5874+--------------+------------+
5975
60- 3 . Finally, you can provide a dataset with a column 'Node' containing node IDs, a column 'logFC' with their abs(LogFC)
61- and a column 'p-value' with adjusted p-values.
76+ 4 . Finally, you can provide a dataset with a column 'Node' containing node IDs, a column 'logFC' with their logFC and a
77+ column 'p-value' with adjusted p-values. You may also add a 'NodeType' column to run diffusion by entity type .
6278
6379+--------------+------------+---------+
6480| Node | LogFC | p-value |
6581+==============+============+=========+
66- | Gene A | 4 | 0.03 |
82+ | A | 4 | 0.03 |
6783+--------------+------------+---------+
68- | Gene B | -1 | 0.05 |
84+ | B | -1 | 0.05 |
6985+--------------+------------+---------+
70- | Metabolite C | 1.5 | 0.001 |
86+ | C | 1.5 | 0.001 |
7187+--------------+------------+---------+
72- | Gene D | 3 | 0.07 |
88+ | D | 3 | 0.07 |
7389+--------------+------------+---------+
7490
75- You can also take a look at our `sample datasets <https://github.com/multipaths/DiffuPy/tree/master/examples/datasets >`_
76- folder for some examples files.
77-
91+ See the `sample datasets <https://github.com/multipaths/DiffuPy/tree/master/examples/datasets >`_ directory for example
92+ files.
7893
7994Networks
8095--------
@@ -119,13 +134,13 @@ Custom-network example
119134~~~~~~~~~~~~~~~~~~~~~~
120135
121136+-----------+--------------+-------------+
122- | Source | Target | Relation |
137+ | Source | Target | Relation |
123138+===========+==============+=============+
124- | Gene A | Gene B | Increase |
139+ | A | B | Increase |
125140+-----------+--------------+-------------+
126- | Gene B | Metabolite C | Association |
141+ | B | C | Association |
127142+-----------+--------------+-------------+
128- | Gene A | Pathology D | Association |
143+ | A | D | Association |
129144+-----------+--------------+-------------+
130145
131146You can also take a look at our `sample networks <https://github.com/multipaths/DiffuPy/tree/master/examples/networks >`_
0 commit comments