Mercurial > repos > ufz > phabox_contamination
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contamination.xml Tue Nov 12 09:30:43 2024 +0000 @@ -0,0 +1,58 @@ +<tool id="phabox_contamination" name="PhaBOX contamination" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.1" license="MIT"> + <description>Contamination/provirus detection</description> + <macros> + <import>macros.xml</import> + </macros> + <xrefs> + <xref type="bio.tools">phabox</xref> + </xrefs> + <requirements> + <requirement type="package" version="@TOOL_VERSION@">phabox</requirement> + </requirements> + <command detect_errors="exit_code"><![CDATA[ + phabox2 --task contamination + @GENERAL@ + @CONTAMINATION@ + ]]></command> + <inputs> + <expand macro="general"/> + <expand macro="contamination"/> + </inputs> + <outputs> + <data name="out" format="tabular" from_work_dir="output/final_prediction/contamination_prediction.tsv"/> + </outputs> + <tests> + <test> + <param name="dbdir" value="phaboxdb"/> + <param name="contigs" value="example_contigs.fa"/> + <output name="out"> + <assert_contents> + <has_line line="Accession	Length	Total_genes	Viral_genes	Prokaryotic_genes	Kmer_freq	Contamination	Provirus	Pure_viral"/> + <has_n_lines n="11"/> + <has_n_columns n="9"/> + </assert_contents> + </output> + </test> + </tests> + <help><![CDATA[ + +Check for contaminations / proviruses. + + +@COMMON_INPUT_DOC@ + +**Output**: + +@COMMON_OUTPUT_DOC@ +- Total_genes: number of genes in the contigs (predicted by prodigal-gv) +- Viral_genes: number of viral marker genes +- Prokaryotic_genes: number of prokaryotic marker genes +- 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. +- Contamination: +- Provirus: Whether the sequence is a provirus +- Pure_viral: High quality or Medium quality or Low quality + + + ]]></help> + <expand macro="citations"/> +</tool> \ No newline at end of file