Mercurial > repos > iracooke > protk
view make_decoy.xml @ 2:418f42b34049 draft
Reuploading
author | iracooke |
---|---|
date | Mon, 23 Jul 2012 00:20:58 -0400 |
parents | a929e27eb203 |
children |
line wrap: on
line source
<tool id="make_decoy_1" name="Create decoy databases" version="1.0.0"> <requirements> <requirement type="package">protk</requirement> </requirements> <description>Creates a random protein database with similar properties to a real protein database</description> <command>make_decoy.rb $input_file -o $output -L $length -P $prefix $append</command> <inputs> <param name="input_file" type="data" format="fasta" multiple="false" label="Input File" help="Real protein sequences. Take care that these are fasta formatted with no more than 80 amino acids per line. There should be no whitespace in the sequences."/> <param name="prefix" type="text" label="String to prepend to generated protein ID's" size="60" value="decoy_"/> <param name="length" type="text" label="Number of random sequences to generate" help="If 0, a database of equal size to the input database will be generated" size="60" value="0"/> <param name="append" type="boolean" checked="true" label="Append input dataset to the generated sequences" truevalue="-A" falsevalue=""/> </inputs> <outputs> <data format="fasta" name="output" metadata_source="input_file" label="Random sequences from ${input_file.display_name}" from_work_dir="random.fasta"/> </outputs> <help> Create random protein sequences </help> </tool>