28
|
1 <tool id="PhageDPO" name="PhageDPO" version="0.1.0" python_template_version="3.5">
|
|
2 <description>
|
|
3 Phage Depolymerase Finder
|
|
4 </description>
|
|
5 <requirements>
|
|
6 <requirement type="package" version="1.78">biopython</requirement>
|
|
7 <requirement type="package" version="0.24.1">scikit-learn</requirement>
|
|
8 <requirement type="package" version="1.19.2">numpy</requirement>
|
|
9 <requirement type="package" version="1.2.3">pandas</requirement>
|
|
10 </requirements>
|
|
11 <command detect_errors="exit_code"><![CDATA[
|
|
12 python '$__tool_directory__/DPOGALAXY.py' '$adv.model' '${input1}'
|
|
13 ]]></command>
|
|
14 <inputs>
|
|
15 <param type="data" name="input1" format="fasta" label="Fasta file"/>
|
|
16 </inputs>
|
|
17 <outputs>
|
|
18 <data name="output1" format="html" from_work_dir="output.html"
|
|
19 label="DPO Prediction"/>
|
|
20 </outputs>
|
|
21 <tests>
|
|
22 <test>
|
|
23 <param name="model" value="SVM4311"/>
|
|
24 <param name="input1" value="fasta_file.fasta"/>
|
|
25 <output name="output1" file="output.html"/>
|
|
26 </test>
|
|
27 </tests>
|
|
28 <help><![CDATA[
|
|
29
|
|
30 ========
|
|
31 PhageDPO
|
|
32 ========
|
|
33
|
|
34 Predicts the existance of Phage Polysaccharide Depolymerase.
|
|
35
|
|
36 PhageDPO is a python script that predicts the existance of depolymerases (DPOs) using supervised machine learning models.
|
|
37
|
|
38 **Inputs:**
|
|
39
|
|
40 * fasta file: fasta file format contain the nucleotide sequences.
|
|
41
|
|
42 **Outputs:**
|
|
43
|
|
44 The tool outputs an html file containing the name of the sequence and the percentage of positive prediction for DPO.
|
|
45
|
|
46 **Requirements:**
|
|
47
|
|
48 * Biopython
|
33
|
49 * Sklearn
|
28
|
50 * Numpy
|
33
|
51 * Pandas
|
28
|
52
|
|
53 ]]></help>
|
|
54 </tool> |