comparison ProteinInteractions_v2.xml @ 12:f8ef6b24862b draft

Uploaded
author bornea
date Fri, 29 Jan 2016 12:52:19 -0500
parents
children d94c79ddb31a
comparison
equal deleted inserted replaced
11:ecbbc746d5a7 12:f8ef6b24862b
1 <tool id="SAINT_ProteinInteractions_v2" name="SAINT Output to Protein Interaction File">
2 <description></description>
3 <command interpreter="python">ProteinInteractions_v2.py $input $saint_cutoff $CPDB_cutoff $species $Cytoscape_File \$INSTALL_RUN_PATH/</command>
4 <requirements>
5 <requirement type="set_environment">INSTALL_RUN_PATH</requirement>
6 </requirements>
7 <inputs>
8 <param format="txt" name="input" type="data" label="SAINT Output"/>
9 <param type="float" name="saint_cutoff" label="Saint Score Cutoff" value="0.8"/>
10 <param type="float" name="CPDB_cutoff" label="Consensus Path Database Score Cutoff" value="0.8"/>
11 <param type="select" name="species" label="Species">
12 <option value="Human">Human</option>
13 <option value="Yeast">Yeast</option>
14 <option value="Mouse">Mouse</option>
15 </param>
16 </inputs>
17 <outputs>
18 <data format="sif" name="Cytoscape_File" label="Cytoscape File"/>
19 </outputs>
20 <stdio>
21 <regex match="error"
22 source="stdout"
23 level="fatal"
24 description="Unknown error"/>
25 </stdio>
26
27 <tests>
28 <test>
29 <param name="input" value="fa_gc_content_input.fa"/>
30 <output name="out_file1" file="fa_gc_content_output.txt"/>
31 </test>
32 </tests>
33 <help>
34 **Protein Interactions**
35
36 This program will read in a SAINT 'list.txt' file and the interactions from ConsensusPathDB ( http://consensuspathdb.org/ ) and return all the interactions that we saw in our experiment in a format suitable for cytoscape. This allows us to filter before getting protein-protein interactions (PPI's) so that it doesn't affect our SAINT score or include interactions that don't score well.
37
38 INPUT
39
40 SAINT Output: SAINTexpress output.
41
42 SAINT Score Cutoff: Saint score cutoff for import (between 0 and 1).
43
44 Consensus Path Database Score Cutoff: Confidence of PPI from CPDB to include (between 0 and 1).
45 * low: no filtering
46 * medium: >0.5
47 * high: >0.7
48 * very high: >0.9
49
50 4) Species: Human, Yeast, or Mouse.
51
52 </help>
53 </tool>