view CRAPomeQuery.xml @ 19:f1459638e1bc draft default tip

Uploaded
author bornea
date Fri, 29 Apr 2016 15:49:34 -0400
parents edde2724910f
children
line wrap: on
line source

<tool id="CRAPomeQuery" name="Query CRAPome">
  <description></description>
  <command interpreter="python">CRAPomeQuery.py $input $species $fasta_db $CrapomeFile \$INSTALL_RUN_PATH/</command>
  <requirements>
    <requirement type="set_environment">INSTALL_RUN_PATH</requirement>
  </requirements>
  <inputs>
    <param format="txt" name="input" type="data" label="Prey File or single column list"/>
    <param type="select" name="species" label="Species">
      <option value="HUMAN">Human</option>
      <option value="YEAST">Yeast</option>
    </param>
    <param type="data" name="fasta_db" format="fasta"  label="Provide Uniprot Fasta database" optional="true"/>
  </inputs>
  <outputs>
    <data format="txt" name="CrapomeFile" label="CRAPome File"/>    
  </outputs>
  <stdio>
    <regex match="TypeError"
           source="stderr"
           level="fatal"
           description="Error: Check input file."/>
    <regex match="Error|error"
     source="stdout"
           level="fatal"
           description="Unknown error"/>
    <regex match="Error|error"
     source="stderr"
           level="fatal"
           description="Unknown error"/>
  </stdio> 
  <tests>
    <test>
      <param name="input" value="fa_gc_content_input.fa"/>
      <output name="out_file1" file="fa_gc_content_output.txt"/>
    </test>
  </tests>
  <help>
Query CRAPome
-------------
This program will read in a SAINT formatted *Prey* file or a single column list (no column name) of Uniprot accessions (e.g. "P00533" or "EGFR_HUMAN"), query the  CRAPome database (v1.1) http://crapome.org, and return a file specifying the prevalence of each protein in the CRAPome.

**1) Input File**

SAINT formatted *Prey* file or a single column list (no column name) of Uniprot accessions.

**2) Species**

Please specify species. Supported species are Human and Yeast.

**3) Uniprot Fasta Database**

A uniprot database can be provided that will be used to get gene names.  
  </help>
</tool>