comparison contamination.xml @ 0:3f73568fafdc draft default tip

planemo upload for repository https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/phabox commit 3c8e23e1dea22f625fb6f77ae61e1f4b605aaae2
author ufz
date Tue, 12 Nov 2024 09:30:43 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3f73568fafdc
1 <tool id="phabox_contamination" name="PhaBOX contamination" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.1" license="MIT">
2 <description>Contamination/provirus detection</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <xrefs>
7 <xref type="bio.tools">phabox</xref>
8 </xrefs>
9 <requirements>
10 <requirement type="package" version="@TOOL_VERSION@">phabox</requirement>
11 </requirements>
12 <command detect_errors="exit_code"><![CDATA[
13 phabox2 --task contamination
14 @GENERAL@
15 @CONTAMINATION@
16 ]]></command>
17 <inputs>
18 <expand macro="general"/>
19 <expand macro="contamination"/>
20 </inputs>
21 <outputs>
22 <data name="out" format="tabular" from_work_dir="output/final_prediction/contamination_prediction.tsv"/>
23 </outputs>
24 <tests>
25 <test>
26 <param name="dbdir" value="phaboxdb"/>
27 <param name="contigs" value="example_contigs.fa"/>
28 <output name="out">
29 <assert_contents>
30 <has_line line="Accession&#9;Length&#9;Total_genes&#9;Viral_genes&#9;Prokaryotic_genes&#9;Kmer_freq&#9;Contamination&#9;Provirus&#9;Pure_viral"/>
31 <has_n_lines n="11"/>
32 <has_n_columns n="9"/>
33 </assert_contents>
34 </output>
35 </test>
36 </tests>
37 <help><![CDATA[
38
39 Check for contaminations / proviruses.
40
41
42 @COMMON_INPUT_DOC@
43
44 **Output**:
45
46 @COMMON_OUTPUT_DOC@
47 - Total_genes: number of genes in the contigs (predicted by prodigal-gv)
48 - Viral_genes: number of viral marker genes
49 - Prokaryotic_genes: number of prokaryotic marker genes
50 - Kmer_freq: average frequency of 20-mer. This is a value to estimate the copy number of the genes; usually, the Kmer_freq of 99.9% virus is less than 1.25.
51 - Contamination:
52 - Provirus: Whether the sequence is a provirus
53 - Pure_viral: High quality or Medium quality or Low quality
54
55
56 ]]></help>
57 <expand macro="citations"/>
58 </tool>