@@ -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,55 @@ 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+ .. | logFC | replace:: Log\ :sub:`2`\ FC
77+
78+ 4. Finally, you can provide a dataset with a column 'Node' containing node IDs, a column 'logFC' with their | logFC |
79+ and a column 'p-value' with adjusted p-values. You may also add a 'NodeType' column to run diffusion by entity type.
6280
6381+--------------+------------+---------+
6482| Node | LogFC | p-value |
6583+==============+============+=========+
66- | Gene A | 4 | 0.03 |
84+ | A | 4 | 0.03 |
6785+--------------+------------+---------+
68- | Gene B | -1 | 0.05 |
86+ | B | -1 | 0.05 |
6987+--------------+------------+---------+
70- | Metabolite C | 1.5 | 0.001 |
88+ | C | 1.5 | 0.001 |
7189+--------------+------------+---------+
72- | Gene D | 3 | 0.07 |
90+ | D | 3 | 0.07 |
7391+--------------+------------+---------+
7492
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-
93+ See the `sample datasets <https://github.com/multipaths/DiffuPy/tree/master/examples/datasets >`_ directory for example
94+ files.
7895
7996Networks
8097--------
@@ -119,13 +136,13 @@ Custom-network example
119136~~~~~~~~~~~~~~~~~~~~~~
120137
121138+-----------+--------------+-------------+
122- | Source | Target | Relation |
139+ | Source | Target | Relation |
123140+===========+==============+=============+
124- | Gene A | Gene B | Increase |
141+ | A | B | Increase |
125142+-----------+--------------+-------------+
126- | Gene B | Metabolite C | Association |
143+ | B | C | Association |
127144+-----------+--------------+-------------+
128- | Gene A | Pathology D | Association |
145+ | A | D | Association |
129146+-----------+--------------+-------------+
130147
131148You can also take a look at our `sample networks <https://github.com/multipaths/DiffuPy/tree/master/examples/networks >`_
0 commit comments