view tools/mentalist_build.xml @ 1:a0a6d3e7416d draft

planemo upload
author dfornika
date Thu, 14 Sep 2017 17:16:16 -0400
parents 071665c7c344
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="mentalist_build" name="MentaLiST Build DB" version="0.1.2">
  <requirements>
    <requirement type="package" version="0.1.2">mentalist</requirement>
  </requirements>
  <command detect_errors="exit_code">
  <![CDATA[
	   MentaLiST.jl
	   build_db
	   --db '$kmer_database'
	   -k '$kmer_size'
	   #if $profile
	   -p '$profile'
	   #end if
	   -f ${" ".join(map(str, $input_fastas))}
  ]]>
  </command>
  <inputs>
    <param name="kmer_size" type="integer"
	   label="Kmer size" help="Kmer size"
	   value="31" min="1" max="32" />
    <param name="input_fastas" type="data_collection" collection_type="list" format="fasta" multiple="true"
	   label="Input Fasta" help="Fasta input files" />
    <param name="profile" type="data" format="tsv" optional="true"
	   label="Profile" help="Profile for known genotypes" />
  </inputs>
  <outputs>
    <data name="kmer_database" format="h5" />
  </outputs>
  <citations>
    <citation type="doi">10.1101/172858</citation>
  </citations>
</tool>