annotate proteinortho_summary.xml @ 6:2bb8251d132c draft

planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit ebbb4da7c0c0176df539f9baa7c9323d9ff5f201
author iuc
date Tue, 31 Oct 2023 16:31:54 +0000
parents de26b312c0d2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
c3f58c2eee1e "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 95f1ae4ed1cdd56114df76d215f9e1ed549aa4c5"
iuc
parents: 0
diff changeset
1 <tool id="proteinortho_summary" name="Proteinortho summary" version="@TOOL_VERSION@+galaxy@WRAPPER_VERSION@" profile="@PROFILE@">
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
2 <description>summaries the orthology-pairs/RBH files</description>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
3 <macros>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
4 <import>proteinortho_macros.xml</import>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
5 </macros>
6
2bb8251d132c planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit ebbb4da7c0c0176df539f9baa7c9323d9ff5f201
iuc
parents: 5
diff changeset
6 <expand macro="biotools"/>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
8 <expand macro="version_command"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
10 export TERM=dumb &&
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
11 proteinortho_summary.pl
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
12 $queryfile
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
13 #if $queryfile2:
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
14 '$queryfile2'
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
15 #end if
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
16 2>&1
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
17 | awk '/^$/ && !f{f=1;next}1' ## remove potentially present 1st empty line
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
18 | awk 'BEGIN{i=0} /^$/{i+=1}{print > ("output" i ".tsv")}' ## split file at empty lines
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
19 &&
5
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
20 mv output0.tsv '$distribution' &&
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
21 mv output1.tsv '$adjacencyMat' &&
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
22 mv output2.tsv '$average1paths' &&
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
23 mv output3.tsv '$adjacencyMatSquared' &&
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
24 mv output4.tsv '$average2paths'
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
25 ]]></command>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
26 <inputs>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
27 <param name="queryfile" type="data" format="tabular" label="A orthology-pairs / RBH file"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
28 <param name="queryfile2" type="data" format="tabular" optional="true" label="(optional) A second orthology-pairs / RBH file" help="If you provide a second file, then difference is calculated (GRAPH - second GRAPH)"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
29 </inputs>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
30 <outputs>
5
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
31 <data name="distribution" format="tabular" label="${tool.name} on ${on_string}: Protein-Group distribution"/>
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
32 <data name="adjacencyMat" format="tabular" label="${tool.name} on ${on_string}: Adjacency Matrix"/>
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
33 <data name="average1paths" format="tabular" label="${tool.name} on ${on_string}: Average number of Edges"/>
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
34 <data name="adjacencyMatSquared" format="tabular" label="${tool.name} on ${on_string}: Matrix of 2-paths"/>
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
35 <data name="average2paths" format="tabular" label="${tool.name} on ${on_string}: Average number of 2-paths"/>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
36 </outputs>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
37 <tests>
5
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
38 <test expect_num_outputs="5">
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
39 <param name="queryfile" value="result.proteinortho-graph"/>
5
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
40 <output name="distribution">
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
41 <assert_contents>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
42 <has_text text="%"/>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
43 </assert_contents>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
44 </output>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
45 <output name="adjacencyMat">
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
46 <assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
47 <has_text text="18"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
48 <has_text text="14"/>
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
49 <has_text text="TERM" negate="true"/>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
50 </assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
51 </output>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
52 <output name="average1paths">
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
53 <assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
54 <has_text text="9.6"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
55 <has_text text="15"/>
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
56 <has_text text="TERM" negate="true"/>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
57 </assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
58 </output>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
59 <output name="adjacencyMatSquared">
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
60 <assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
61 <has_text text="750"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
62 <has_text text="74"/>
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
63 <has_text text="TERM" negate="true"/>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
64 </assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
65 </output>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
66 <output name="average2paths">
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
67 <assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
68 <has_text text="1088.8"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
69 <has_text text="1374.2"/>
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
70 <has_text text="TERM" negate="true"/>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
71 </assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
72 </output>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
73 </test>
5
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
74 <test expect_num_outputs="5">
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
75 <param name="queryfile" value="result.proteinortho-graph"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
76 <param name="queryfile2" value="result.blast-graph"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
77 <output name="average2paths">
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
78 <assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
79 <has_text text="49.6"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
80 <has_text text="59.8"/>
4
9b67a50799e9 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 84c463c8317d7c16c2b86b1d8657932cc0f39791
iuc
parents: 1
diff changeset
81 <has_text text="TERM" negate="true"/>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
82 </assert_contents>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
83 </output>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
84 </test>
5
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
85 <test expect_num_outputs="5">
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
86 <param name="queryfile" value="result.blast-graph"/>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
87 <output name="average2paths">
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
88 <assert_contents>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
89 <has_text text="115.2"/>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
90 <has_text text="TERM" negate="true"/>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
91 </assert_contents>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
92 </output>
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
93 </test>
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
94 </tests>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
95 <help><![CDATA[proteinortho summary
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
96
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
97 **What it does**
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
98
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
99 proteinortho_summary : Summaries the (orthology-pairs/RBH) file(s) to determine how well the species are connected to each other.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
100
5
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
101 * **Protein-Group distribution** (for orthology-pairs) : This report contains overal statistics about the output. (i) Number of groups that contains at least p% input species (with p ranging between 0 and 100). (ii) number of groups for each input species.
de26b312c0d2 planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit b4d8b8da2a259973c9ad90e4b9d1a3e22ae4348f
iuc
parents: 4
diff changeset
102
0
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
103 * **Adjacency Matrix** : How well are the species connected to each other directly.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
104
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
105 * **Average number of Edges** : Averaged number of connections for each species.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
106
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
107 * **Matrix of 2-paths** : The square of the adjacency matrix = The number of paths of length 2 between two species.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
108
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
109 * **Average number of 2-paths** : The average number of 2-paths for each species. If a species is not well connected to all the other species, it will result in a low average.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
110
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
111 If you supply a second orthology-pairs/RBH then the difference is calculated for all 4 outputs.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
112
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
113 E.g. given the RBH and the orthology-pairs of the same run : The outputs show how much the clustering removed from the initial reciprocal best hit graph.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
114 Or given 2 orthology-pairs from the same set of fasta files with different parameters (evalue,...) : The output show how the parameters change the connectivity of the output.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
115
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
116 **Other Proteinortho-Tools for downstream analysis**
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
117
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
118 * `proteinortho grab proteins` : find proteins/genes in a given fasta file and retrieve their sequence(s). You can also use a orthology-groups file.
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
119
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
120 More information can be found on github https://gitlab.com/paulklemm_PHD/proteinortho
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
121 ]]>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
122 </help>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
123 <expand macro="citations"/>
2e0e9c418a85 "planemo upload for repository https://gitlab.com/paulklemm_PHD/proteinortho commit 889335c0a31f156c3f90d4c2048cb4df155a53b2"
iuc
parents:
diff changeset
124 </tool>