Mercurial > repos > idot > prop_venn
annotate README.md @ 1:cc6707a1e044 draft default tip
added fixes from Brad Langhorst; https://bitbucket.org/account/notifications/read/3443176/patch-for-proportional-venn-tool-in-galaxy; added tool_dependencies for Mako template untested
author | Ido Tamir <ido.tamir@imp.ac.at> |
---|---|
date | Mon, 24 Sep 2012 16:46:21 +0200 |
parents | 8ea9b4e5a389 |
children |
rev | line source |
---|---|
0 | 1 prop_venn |
2 --------- | |
3 | |
4 crates proportional venn diagrams from 2 or 3 files using google charts. | |
5 pure python implementation | |
6 | |
7 contains galaxy tool xml (prop_venn.xml) | |
8 | |
9 cli interface expects all arguments for the inputs concatenated | |
10 with , i.e. file1,file2,file3 ... | |
11 | |
12 contains an integration test for the cli interface (vennerTest.py), no galaxy unit tests. | |
13 | |
1
cc6707a1e044
added fixes from Brad Langhorst; https://bitbucket.org/account/notifications/read/3443176/patch-for-proportional-venn-tool-in-galaxy; added tool_dependencies for Mako template untested
Ido Tamir <ido.tamir@imp.ac.at>
parents:
0
diff
changeset
|
14 CLI example: |
cc6707a1e044
added fixes from Brad Langhorst; https://bitbucket.org/account/notifications/read/3443176/patch-for-proportional-venn-tool-in-galaxy; added tool_dependencies for Mako template untested
Ido Tamir <ido.tamir@imp.ac.at>
parents:
0
diff
changeset
|
15 python venner.py --files testFiles/fileA.tab,testFiles/fileB.tab --columns 1,1 --outname out.html --asNames As,Bs |
0 | 16 |
17 Proportional Venn Diagram: | |
18 -------------------------- | |
19 Creates a proportional Venn diagram from 2 or 3 tab delimited input files. | |
20 The 0 based column index decides which column is used for extracting the sets to compare between the files. | |
21 Multiple items with the same value per column are counted as one. | |
22 | |
23 Requirements: | |
24 ------------- | |
25 - 2-3 tab delimited input files. | |
26 - 0 based index of the columns to extract for each file | |
27 | |
28 Outputs: | |
29 -------- | |
1
cc6707a1e044
added fixes from Brad Langhorst; https://bitbucket.org/account/notifications/read/3443176/patch-for-proportional-venn-tool-in-galaxy; added tool_dependencies for Mako template untested
Ido Tamir <ido.tamir@imp.ac.at>
parents:
0
diff
changeset
|
30 - Html page with the proportional Venn diagram and a table for the counts in each set. |
0 | 31 |
32 |