Mercurial > repos > guerler > springsuite
annotate spring_roc.xml @ 36:2fe8ffff530d draft
"planemo upload commit 135985d861c02f01fb4fb139834dc4d9b9521f53-dirty"
author | guerler |
---|---|
date | Tue, 24 Nov 2020 18:16:01 +0000 |
parents | b300ddbbf9d0 |
children | 80a4b98121b6 |
rev | line source |
---|---|
30
b0e195a47df7
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7"
guerler
parents:
29
diff
changeset
|
1 <tool id="spring_roc" name="SPRING ROC" version="0.1.0" python_template_version="3.5" license="MIT"> |
29
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
2 <description>plot generator</description> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
3 <requirements> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
4 <requirement type="package" version="3.3.3">matplotlib</requirement> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
5 </requirements> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
6 <command detect_errors="exit_code"><![CDATA[ |
34
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
7 python3 '$__tool_directory__/spring_roc.py' -i '$input' -b '$database' -e '$experiment.type' -m '$experiment.method' -t '$throughput' -l '$sampling.locations' -r '$sampling.regions' -n '$sampling.negative' -o '$rocplot' |
29
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
8 ]]></command> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
9 <inputs> |
36
2fe8ffff530d
"planemo upload commit 135985d861c02f01fb4fb139834dc4d9b9521f53-dirty"
guerler
parents:
34
diff
changeset
|
10 <param name="input" type="data" format="tabular" label="Interacting Pairs" help="Prediction input containing UniProt Accession codes (2-columns)."/> |
31
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
11 <conditional name="sampling"> |
36
2fe8ffff530d
"planemo upload commit 135985d861c02f01fb4fb139834dc4d9b9521f53-dirty"
guerler
parents:
34
diff
changeset
|
12 <param name="type" type="select" label="Non-interacting Pairs" display="radio" help="Specify how to determine non-interacting pairs."> |
32
11b3fc8b5b48
"planemo upload commit 90edad77d24453810d6792eaf54ae2ce2ee0913f-dirty"
guerler
parents:
31
diff
changeset
|
13 <option value="random">Random Sampling</option> |
11b3fc8b5b48
"planemo upload commit 90edad77d24453810d6792eaf54ae2ce2ee0913f-dirty"
guerler
parents:
31
diff
changeset
|
14 <option value="uniprot">Sampling with UniProt Localization</option> |
34
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
15 <option value="negative">Specify non-interacting pairs</option> |
32
11b3fc8b5b48
"planemo upload commit 90edad77d24453810d6792eaf54ae2ce2ee0913f-dirty"
guerler
parents:
31
diff
changeset
|
16 </param> |
11b3fc8b5b48
"planemo upload commit 90edad77d24453810d6792eaf54ae2ce2ee0913f-dirty"
guerler
parents:
31
diff
changeset
|
17 <when value="uniprot"> |
34
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
18 <param name="locations" type="data" format="tabular" label="UniProt Localization Database" help="UniProt tabular export with localization column to sample non-interacting pairs." /> |
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
19 <param name="negative" type="hidden" value="" /> |
33
f115fbf3ac63
"planemo upload commit 90edad77d24453810d6792eaf54ae2ce2ee0913f-dirty"
guerler
parents:
32
diff
changeset
|
20 <param name="regions" type="select" multiple="True" label="Choose Subcellular Locations"> |
31
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
21 <option value="Membrane" selected="True">Membrane</option> |
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
22 <option value="Mitochondrion" selected="True">Mitochondrion</option> |
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
23 <option value="Nucleus">Nucleus</option> |
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
24 <option value="Secreted">Secreted</option> |
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
25 </param> |
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
26 </when> |
32
11b3fc8b5b48
"planemo upload commit 90edad77d24453810d6792eaf54ae2ce2ee0913f-dirty"
guerler
parents:
31
diff
changeset
|
27 <when value="random"> |
34
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
28 <param name="negative" type="hidden" value="" /> |
31
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
29 <param name="locations" type="hidden" value="" /> |
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
30 <param name="regions" type="hidden" value="" /> |
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
31 </when> |
34
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
32 <when value="negative"> |
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
33 <param name="locations" type="hidden" value="" /> |
36
2fe8ffff530d
"planemo upload commit 135985d861c02f01fb4fb139834dc4d9b9521f53-dirty"
guerler
parents:
34
diff
changeset
|
34 <param name="negative" type="data" format="tabular" label="Non-interacting Pairs" help="Tabular file containing non-interacting pairs (2-columns)." /> |
34
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
35 <param name="regions" type="hidden" value="" /> |
b300ddbbf9d0
"planemo upload commit 0410e2fadc4e9fc1df6010de7b3678154cbdfe62-dirty"
guerler
parents:
33
diff
changeset
|
36 </when> |
31
3071750405c9
"planemo upload commit b306c715d8284c097220bc5c8461399fdc05eac7-dirty"
guerler
parents:
30
diff
changeset
|
37 </conditional> |
36
2fe8ffff530d
"planemo upload commit 135985d861c02f01fb4fb139834dc4d9b9521f53-dirty"
guerler
parents:
34
diff
changeset
|
38 <param name="database" type="data" format="tabular" label="BioGRID Database" help="BioGRID Database in TAB 3.0 format."/> |
29
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
39 <conditional name="experiment"> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
40 <param name="type" type="select" label="Experimental Type" display="radio" help="Choose a specific experimental system type."> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
41 <option value="">Any</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
42 <option value="physical">Physical</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
43 <option value="genetic">Genetic</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
44 </param> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
45 <when value="physical"> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
46 <param name="method" type="select" label="Experimental Method" help="Choose a specific experimental method name."> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
47 <option value="">Any</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
48 <option value="Affinity Capture">Affinity Capture-Any</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
49 <option value="Affinity Capture-Luminescence"></option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
50 <option value="Affinity Capture-MS">Affinity Capture-MS</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
51 <option value="Affinity Capture-RNA">Affinity Capture-RNA</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
52 <option value="Affinity Capture-Western">Affinity Capture-Western</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
53 <option value="Biochemical Activity">Biochemical Activity</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
54 <option value="Co-crystal Structure">Co-crystal Structure</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
55 <option value="Co-fractionation">Co-fractionation</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
56 <option value="Co-localization">Co-localization</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
57 <option value="Co-purification">Co-purification</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
58 <option value="Far Western">Far Western</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
59 <option value="FRET">FRET</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
60 <option value="PCA">PCA</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
61 <option value="Protein-peptide">Protein-peptide</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
62 <option value="Protein-RNA">Protein-RNA</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
63 <option value="Proximity Label-MS">Proximity Label-MS</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
64 <option value="Reconstituted Complex">Reconstituted Complex</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
65 <option value="Two-hybrid">Two-hybrid</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
66 </param> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
67 </when> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
68 <when value="genetic"> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
69 <param name="method" type="hidden" value="" /> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
70 </when> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
71 <when value=""> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
72 <param name="method" type="hidden" value="" /> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
73 </when> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
74 </conditional> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
75 <param name="throughput" type="select" label="Experimental Throughput" display="radio" help="Choose the experimental throughput grade."> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
76 <option value="">Any</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
77 <option value="Low Throughput">Low</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
78 <option value="High Throughput">High</option> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
79 </param> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
80 </inputs> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
81 <outputs> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
82 <data format="png" name="rocplot" label="SPRING ROC Image" /> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
83 </outputs> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
84 <tests> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
85 <test> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
86 <param format="tabular" name="input" value="roc/human_hv1h2.txt" /> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
87 <param format="tabular" name="database" value="roc/biogrid_fret.txt" /> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
88 <output name="output" file="roc/human_hv1h2.png" /> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
89 </test> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
90 </tests> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
91 <help><![CDATA[ |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
92 This tool generates a ROC plot for a given 2-column tabular prediction file containing UniProt Accession codes. The prediction is compared |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
93 to a given BioGRID database file in TAB 3.0 format. Non-interacting protein pairs are randomly sampled. Optionally, users may filter the BioGRID database by |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
94 choosing a specific experimental method. |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
95 ]]></help> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
96 <citations> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
97 <citation type="bibtex"> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
98 @misc{githubhh-suite, |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
99 author = {Guerler, Govindarajoo, Zhang}, |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
100 year = {2013}, |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
101 title = {Mapping Monomeric Threading to Protein-Protein Structure Prediction}, |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
102 publisher = {ACS Publications}, |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
103 journal = {Journal of Chemical Information and Modeling}, |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
104 url = {https://pubs.acs.org/doi/10.1021/ci300579r}, |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
105 } |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
106 </citation> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
107 </citations> |
41353488926c
"planemo upload commit 1c0a60f98e36bccb6d6c85ff82a8d737a811b4d5"
guerler
parents:
diff
changeset
|
108 </tool> |