Mercurial > repos > jowong > kwip
changeset 7:1850de9baad0 draft
planemo upload
author | jowong |
---|---|
date | Thu, 22 Nov 2018 07:02:35 -0500 |
parents | aaeba1765ceb |
children | f99fa69fe0d5 |
files | kwip.xml |
diffstat | 1 files changed, 7 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/kwip.xml Mon Nov 19 09:35:55 2018 -0500 +++ b/kwip.xml Thu Nov 22 07:02:35 2018 -0500 @@ -1,10 +1,10 @@ -<tool id="kwip" name="kwip" version="1.1.5"> - <description>Calculates CNV of genomic data based on template</description> +<tool id="kwip" name="kwip" version="1.1.6"> + <description>Calculates k-mer weighted inner product, a de novo estimator of genetic similarity</description> <requirements> <requirement type="package" version="0.2.0">kwip</requirement> </requirements> <command detect_errors="exit_code"><![CDATA[ - #for $input in $inputs# cp $input "$input.element_identifier".ct.gz && #end for# + #for $input in $inputs# cp $input $(basename "$input.element_identifier" .fastq).ct.gz && #end for# kwip -t $advanced.thread -k kwip.kernel @@ -13,7 +13,8 @@ #if str( $advanced.calc ) == "True" -w $advanced.weight -C #end if - #for $input in $inputs# "$input.element_identifier".ct.gz #end for# + #for $input in $inputs# $(basename "$input.element_identifier" .fastq).ct.gz #end for# + #for $input in $inputs# && rm $(basename "$input.element_identifier" .fastq).ct.gz #end for# ]]></command> <inputs> <param name="inputs" format="data" type="data_collection" label="inputs" help="Specify dataset with hashed reads"/> @@ -26,8 +27,8 @@ </section> </inputs> <outputs> - <data name="kwip_kernel" label="kWip kernel" format="data" from_work_dir="kwip.kernel"/> - <data name="kwip_distance" label="kWip distance" format="data" from_work_dir="kwip.dist"/> + <data name="kwip_kernel" label="kWip kernel" format="txt" type="data" from_work_dir="kwip.kernel"/> + <data name="kwip_distance" label="kWip distance" format="txt" type="data" from_work_dir="kwip.dist"/> </outputs> <tests> </tests>