Mercurial > repos > jfb > kinatest_fisher_test
comparison KT-ID fisher test/kinatestid_r_fisher.xml @ 0:6f7fd13c1a05 draft
Uploaded
author | jfb |
---|---|
date | Mon, 14 Jan 2019 11:12:59 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:6f7fd13c1a05 |
---|---|
1 <tool id="kinatestid_fisher_r" name="Kinatest-ID using Fisher's Exact Test" version="0.5.0"> | |
2 <description>determine kinase's preferred sequence motif</description> | |
3 <requirements> | |
4 <requirement type="package">R</requirement> | |
5 </requirements> | |
6 <command><![CDATA[ | |
7 ln -s '$substrates' substrates.csv && | |
8 ln -s '$negatives' negatives.csv && | |
9 ln -s '$SBF' SBF.csv && | |
10 ln -s '$__tool_directory__/screener7-7.csv' screener && | |
11 ln -s '$__tool_directory__/OnlyTheRequiredSubBackFreqData.RData' thedata.RData && | |
12 Rscript '$__tool_directory__/7-7-fisher-galaxy_working.R' | |
13 ]]></command> | |
14 <inputs> | |
15 <param format="csv" name="substrates" type="data" label="Positive/Phosphorylated Substrate List"/> | |
16 <param format="csv" name="negatives" type="data" label="Negative/unPhosphorylated Substrate List"/> | |
17 <param format="csv" name="SBF" type="data" label="Substrate Background Frequency List"/> | |
18 <param name="outGroup" type="text" value="kinase" label="Kinase Name"/> | |
19 </inputs> | |
20 <outputs> | |
21 <data format="csv" name="odds_table" from_work_dir="output1.csv" label="${outGroup}_Fisher Odds Table"/> | |
22 <data format="csv" name="char_table" from_work_dir="output2.csv" label="${outGroup}_Characterization Table"/> | |
23 </outputs> | |
24 <tests> | |
25 <test> | |
26 <param name="substrates" ftype="csv" value="substrates.csv"/> | |
27 <param name="negatives" ftype="csv" value="negatives.csv"/> | |
28 <param name="SBF" ftype="csv" value="SBF.csv"/> | |
29 <output name="SDtable" file="SDtable.csv"/> | |
30 <output name="EPM" file="EPM.csv"/> | |
31 <output name="Characterization" file="Characterization.csv"/> | |
32 </test> | |
33 </tests> | |
34 | |
35 | |
36 <help><![CDATA[ | |
37 | |
38 | |
39 This tool is intended for use in conjunction with a Kinamine tool and a Negative Motif Finder tool. Using the outputs from those two functions (The Positive and Negative substrates as well as the Substrate Background Frequency) this tool calculates the kinases preferred substrate motif. | |
40 | |
41 | |
42 ]]></help> | |
43 <citations> | |
44 <citation type="doi">10.1074/mcp.RA118.001111</citation> | |
45 </citations> | |
46 </tool> | |
47 |