Mercurial > repos > xuebing > sharplab_seq_motif
view fastamarkov.xml @ 15:0e221dbd17b2 default tip
Uploaded
author | xuebing |
---|---|
date | Sat, 31 Mar 2012 08:53:06 -0400 |
parents | |
children |
line wrap: on
line source
<tool id="fastamarkov" name="background model"> <description>of DNA sequence</description> <command>cat $input | fasta-get-markov -m $m $norc > $output 2> err.txt </command> <inputs> <param name="input" type="data" format="fasta" label="Sequence file (FASTA)"/> <param name="m" size="10" type="integer" value="0" label="Order of Markov model to use"/> <param name="norc" label="Combine forward and reverse complement frequencies" type="boolean" truevalue="" falsevalue="-norc" checked="True"/> </inputs> <outputs> <data format="txt" name="output" /> </outputs> <help> **What it does** This tool generates a markov model from a fasta sequence file. </help> </tool>