Mercurial > repos > bitlab > imsame
diff IMSAME/IMSAME.xml @ 0:762009a91895 draft
Uploaded
author | bitlab |
---|---|
date | Sat, 15 Dec 2018 18:04:10 -0500 |
parents | |
children | 7fff03d777dd |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/IMSAME/IMSAME.xml Sat Dec 15 18:04:10 2018 -0500 @@ -0,0 +1,15 @@ +<tool id="IMSAME" name="IMSAME"> + <description>A Pairwise Incremental Multi-Staged Alignment Method for Metagenomes Comparison</description> + <inputs> + <param name="query" type="data" format="fasta" label="Query metagenome" help="Query sequence file in fasta format" /> + <param name="db" type="data" format="fasta" label="Reference metagenome" help="Reference sequence file in fasta format" /> + <param name="evalue" type="text" size="30" value="10e-10" label="Evalue" help="Evalue for filtering HSPs" /> + <param name="coverage" type="float" value="0.5" label="Coverage" help="Minimum coverage to accept an alignment" /> + <param name="identity" type="float" value="0.5" label="Identity" help="Minimum identity to accept an alignment" /> + <param name="kmer" type="integer" value="12" label="Word size" help="Word size for heuristicly exploring the search space" /> + </inputs> + <command>/home/galaxy-bitlab/galaxy/tools/IMSAME/bin/IMSAME -query $query -db $db -evalue $evalue -coverage $coverage -identity $identity -kmer $kmer -out $output --full</command> + <outputs> + <data name="output" type="txt" label="Output alignments"/> + </outputs> +</tool>