Mercurial > repos > iracooke > make_protein_decoys
changeset 2:fa4ed0c996d9 draft
Uploaded
author | iracooke |
---|---|
date | Fri, 13 Jun 2014 18:03:01 -0400 |
parents | 1de17a5e8058 |
children | 84b15e316fcc |
files | README README.md make_decoy.xml repository_dependencies.xml |
diffstat | 4 files changed, 45 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/README Fri Jun 13 18:02:27 2014 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ -Requirements: -This package uses protk which must be installed separately. - -For instructions please see: https://github.com/iracooke/protk/#galaxy-integration \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.md Fri Jun 13 18:03:01 2014 -0400 @@ -0,0 +1,3 @@ +# Make decoys from a protein database + +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/make_decoy.xml Fri Jun 13 18:03:01 2014 -0400 @@ -0,0 +1,38 @@ +<tool id="make_decoy" name="Generate protein decoy sequences" version="1.0.0"> + <requirements> + <requirement type="package" version="1.3">protk</requirement> + </requirements> + + <description> + Generate random protein sequences with the same AA composition as 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 the amino acid composition of a given set of input sequences. To be used for decoy proteomics searches + + + </help> + +</tool>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/repository_dependencies.xml Fri Jun 13 18:03:01 2014 -0400 @@ -0,0 +1,4 @@ +<?xml version="1.0"?> +<repositories description="Proteomics datatypes"> + <repository changeset_revision="a1b29f86bdbf" name="proteomics_datatypes" owner="iracooke" toolshed="https://testtoolshed.g2.bx.psu.edu" /> + </repositories>