Mercurial > repos > iracooke > protk
diff make_decoy.xml @ 0:a929e27eb203 draft
Uploaded
author | iracooke |
---|---|
date | Thu, 21 Jun 2012 22:30:48 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/make_decoy.xml Thu Jun 21 22:30:48 2012 -0400 @@ -0,0 +1,26 @@ +<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>