annotate plasflow.xml @ 0:9ae55813ab79 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
author iuc
date Thu, 27 Sep 2018 06:41:00 -0400
parents
children c9c60a241c7e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
1 <tool id="PlasFlow" name="PlasFlow" version="1.0">
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
2 <description>Prediction of plasmid sequences in metagenomic contigs</description>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
3 <requirements>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
4 <requirement type="package" version="1.1.0">plasflow</requirement>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
5 </requirements>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
6 <command detect_errors="exit_code"><![CDATA[
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
7 PlasFlow.py
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
8 --input '$readFile'
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
9 --output 'output'
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
10 --threshold '$threshold'
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
11 ]]></command>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
12 <inputs>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
13 <param name="readFile" type="data" format="fastq,fasta" optional="true" label="Sequence Reads" />
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
14 <param argument="threshold" type="float" value="0.7" label="Threshold for porbability filtering"/>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
15 </inputs>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
16 <outputs>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
17 <data name="probability_table" from_work_dir="output" format="tabular" label="${tool.name} on ${on_string}: Probability table" />
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
18 <data name="chromosomes" from_work_dir="output_chromosomes.fasta" format="fasta" label="${tool.name} on ${on_string}: Chromosomes" />
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
19 <data name="plasmids" from_work_dir="output_plasmids.fasta" format="fasta" label="${tool.name} on ${on_string}: Plasmids" />
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
20 <data name="unclassified" from_work_dir="output_unclassified.fasta" format="fasta" label="${tool.name} on ${on_string}: Unclassified" />
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
21 </outputs>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
22 <tests>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
23 <test>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
24 <param name="readFile" value="test.fasta"/>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
25 <param name="threshold" value="0.7"/>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
26 <output name="probability_table" value="output"/>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
27 <output name="chromosomes" value="output_chromosomes.fasta"/>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
28 <output name="plasmids" value="output_plasmids.fasta"/>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
29 <output name="unclassified" value="output_unclassified.fasta"/>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
30 </test>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
31 </tests>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
32 <help><![CDATA[
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
33 PlasFlow is a set of scripts used for prediction of plasmid sequences in metagenomic contigs. It relies on the neural network models trained on full genome and plasmid sequences and is able to differentiate between plasmids and chromosomes with accuracy reaching 96%. It outperforms other available solutions for plasmids recovery from metagenomes and incorporates the thresholding which allows for exclusion of incertain predictions. PlasFlow has been published in Nucleic Acids Research
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
34 ]]></help>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
35 <citations>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
36 <citation type="doi">10.1093/nar/gkx1321</citation>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
37 </citations>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
38 </tool>
9ae55813ab79 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow commit 987797df67fb05506a5d5fa730aa03fd8dd739d8
iuc
parents:
diff changeset
39