Mercurial > repos > melissacline > ucsc_cancer_browser_stats
comparison ttest/stats.xml @ 11:cd4c13ae11ce
modify
author | jingchunzhu |
---|---|
date | Fri, 31 Jul 2015 13:32:25 -0700 |
parents | a04e3c59e117 |
children | fd8529cd1564 |
comparison
equal
deleted
inserted
replaced
10:c165b0267f0e | 11:cd4c13ae11ce |
---|---|
1 <tool id="ucscCancerBrowserStats" description="Statistical Tests of Difference" name="UCSC Cancer Browser Stats" version="0.0.1"> | 1 <tool id="ucscCancerBrowserStats" description="t-tests of Difference in genomic data" name="Difference between categories (t-test)" version="0.0.1"> |
2 <description>Apply statistical tests of difference to the rows in a genomic matrix, where the columns are categorized by a second (clinical) matrix</description> | |
3 <command interpreter="python"> | 2 <command interpreter="python"> |
4 stats.py $genomicMatrix $clinicalFeatures $outFile -a="${category1}" -b="${category2}" | 3 stats.py $genomicMatrix $clinicalFeatures $outFile -a="${category1}" -b="${category2}" |
5 </command> | 4 </command> |
6 <inputs> | 5 <inputs> |
7 <param format="tabular" name="genomicMatrix" type="data" label="Genomic Matrix"/> | 6 <param format="tabular" name="genomicMatrix" type="data" label="Genomic Matrix"/> |
8 <param format="tabular" name="clinicalFeatures" type="data" label="Clinical Matrix"/> | 7 <param format="tabular" name="clinicalFeatures" type="data" label="Phenotype Matrix"/> |
9 <param type="text" name="category1" label="Category 1" optional="false"/> | 8 <param type="text" name="category1" label="Category 1" optional="false"/> |
10 <param type="text" name="category2" label="Category 2" optional="false"/> | 9 <param type="text" name="category2" label="Category 2" optional="false"/> |
11 </inputs> | 10 </inputs> |
12 <outputs> | 11 <outputs> |
13 <data format="tabular" name="outFile" /> | 12 <data format="tabular" name="outFile" /> |
14 </outputs> | 13 </outputs> |
15 <requirements> | 14 <requirements> |
16 <requirement type="package" version="1.0" >cancerBrowserStats</requirement> | 15 <requirement type="package" version="1.0" >cancerBrowserStats</requirement> |
17 </requirements> | 16 </requirements> |
18 <tests> | 17 <tests> |
19 <param name="genomicMatrix" value="sample.genomic.matrix.txt"/> | 18 <param name="genomicMatrix" value="sample.genomic.matrix.txt" /> |
20 <param name="clinicalMatrix" value="sample.clinical.matrix.txt"/> | 19 <param name="clinicalMatrix" value="sample.clinical.matrix.txt" /> |
21 <param name="category1" value="A"/> | 20 <param name="category1" value="A"/> |
22 <param name="category2" value="B"/> | 21 <param name="category2" value="B"/> |
23 <output name="outFile" value="sample.stats.output.txt"/> | 22 <output name="outFile" value="sample.stats.output.txt"/> |
24 </tests> | 23 </tests> |
25 <help> | 24 <help> |