Mercurial > repos > iracooke > make_protein_decoys
diff make_decoy.xml @ 0:45dee11aa2bf draft
Uploaded
| author | iracooke |
|---|---|
| date | Tue, 18 Mar 2014 20:50:51 -0400 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/make_decoy.xml Tue Mar 18 20:50:51 2014 -0400 @@ -0,0 +1,46 @@ +<tool id="make_decoy" name="Generate protein decoy sequences" version="1.0.0"> + <requirements> + <requirement type="package" version="1.2.6">protk</requirement> + </requirements> + + <description>Generate random protein sequences with the same AA composition and input sequences</description> + + <command> + make_decoy.rb $fasta_file -o $output + -P $prefix_string + $append + + </command> + + + + + <stdio> + <exit_code range="1:" level="fatal" description="Failure" /> + </stdio> + + <inputs> + <param name="fasta_file" type="data" format="fasta" label="Fasta file contain protein sequences" /> + <param name="prefix_string" help="Prefix String to use for Decoys" type="text" value="decoy_" label="Prefix String" size="20"/> + <param name="append" type="boolean" label="Append input sequences to the generated sequences" help="" truevalue="--append" falsevalue="" /> + </inputs> + + <outputs> + <data format="fasta" name="output" /> + </outputs> + + + <help> + +**What it does** + +Generates random protein sequences based on a given set of input sequences. To be used for decoy proteomics searches + +---- + +**References** + + + </help> + +</tool>
